
/* subTabs */
#subTabs .con {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7f7f7;
    padding: 10px;
    border-radius: 100px;
    text-align: center;
}
#subTabs .con > a {
    display: block;
    flex-grow: 1;
    flex-basis: 33.3333%;
    color: #666;
    font-size: 16px;
    padding: 12px 10px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}
#subTabs .con > a.act {
    color: rgba(255,255,255,1);
    background: linear-gradient(to right, #45bbbd, #2582bf);
    border-radius: 100px;
}
@media (max-width:992px){
    #subTabs .con {
        flex-wrap: wrap;
        background-color: transparent;
        padding: 0;
        gap: 4px;
    }
    #subTabs .con > a {
        font-size: 18px;
        padding: 15px 10px;
        border-radius: 20px;
        width: auto;
        flex-basis: unset;
        flex-grow: unset;
        background-color: #f7f7f7;
    }
}
@media (max-width:500px){
    #subTabs .con > a {
        font-size: calc(100vw * (16 / 500));
        padding: 8px 15px;
    }
}
/* subtop */
#subtop > .brWrp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* border-radius: 0 0 0 100px; */
    z-index: -1;
}
#subtop > .brWrp > .bg {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%;
}
#subtop .fbox {
    height: 500px;
}
#subtop .fbox h1 {
    line-height: 1em;
    letter-spacing: -0.03em;
    color: rgba(255,255,255,1);
}
#subtop .fbox h1 strong {
    color: #fff;
}
@media (max-width:992px) {
    #subtop > .brWrp {
        border-radius: 0;
    }
    #subtop .fbox {
        height: 350px;
    }
    #subtop .fbox h1 {
        font-size: 40px;
    }
}
@media (max-width:768px) {
    #subtop {
        background-size: cover !important;
    }
    #subtop .fbox {
        height: 300px;
    }
    #subtop .fbox h1 {
        font-size: 30px;
    }
}

/* site_config */
#site_config {
    position: relative;
    z-index: 30;
    display: inline-block;
}
#site_config .site {
    display: flex;
    align-items: center;
}
#site_config .site .home {
    display: inline-block;
    line-height: 50px;
    position: relative;
    font-size: 17px;
    color: #fff;
    letter-spacing: -0.02em;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#site_config .site .slashed {
    width: 2px;
    vertical-align: middle;
    background-color: #fff;
    display: inline-block;
    height: 16px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    /* transform: skewX(-15deg); */
    vertical-align: middle;
    margin: 0 5px;
}
#site_config .site .home.home2,
#site_config .site .home.home3 {
    position: relative;
}
#site_config .site .home.home2:after,
#site_config .site .home.home3:after {
    
}
#site_config .site .home.act:before {
    content: "";
    position:absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-bottom: 0px;
}
#site_config .site .home .site_toggle i {
    display: inline-block;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#site_config .site .home.act .site_toggle i {
    transform: rotate(180deg);
}
#site_config .site .home.home1 {
    text-align: center;
}
#site_config .site .home > span {
    display: inline-block;
    padding: 0px 10px;
    position: relative;
    z-index: 3;
    color: #fff;
}
#site_config .site .home > ul {
    position: absolute;
    left: 0;
    top: 100%;
    width: 200px;
    border-top: 0px;
    padding: 12px 8px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-8px);
}
/* #site_config .site .home > ul li:not(:first-child) {
    border-top: 1px solid #eee;
} */
#site_config .site .home > ul li a {
    display: block;
    text-decoration: none;
    font-size: 15px;
    line-height: 1em;
    padding: 10px;
    color: #666;
    position: relative;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#site_config .site .home > ul li a.act {
    color: #333;
}
#site_config .site .home > ul li a:hover{
    color: #111;
    text-decoration: underline;
    font-weight: 700;
}
#site_config .site .home > ul li:hover a:after {
    width: 100%;
    left: 0%;
}
@media (max-width:992px) {
    #site_config .site .home {
        line-height: 50px;
        font-size: 15px;
    }
}
@media (max-width:768px) {
    #site_config .site .home {
        line-height: 40px;
        font-size: 12px;
    }
    #site_config .site .home.home2:after,
    #site_config .site .home.home3:after {
        right: 10px;
        width: 10px;
        background-size: 100%;
    }
    #site_config .site .home > span {
        padding: 0px 5px;
    }
}

/* about */
#about .sec1 {
    background-color: #eff1fa;
    position: relative;
    overflow: hidden;
}
@media (max-width:768px) {
    #about .fbox > div {
        width: 100%;
        text-align: center;
    }
    #about .fbox .img {
        margin-top: 15px;
    }
}



/* sec2 */
#about .sec3 {
    overflow: hidden;
    position: relative;
    text-align: center;
}
#about .sec3 .dotTop {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 30vw;
    height: 30vw;
    background-color: #004eec;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    transform: translate3d(-10%, -90%, 0);
    opacity: .5;
}
#about .sec3 .dotBt {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 20vw;
    height: 20vw;
    background-color: #004eec;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    transform: translate3d(10%, 90%, 0);
    opacity: .5;
}
#about .sec3 .container {
    position: relative;
    z-index: 5;
}
#about .sec3 .odometer_wrp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
#about .sec3 .odometer_wrp {
    color: #121a42;
}
#about .sec3 .odometer_wrp i,
#about .sec3 .odometer_wrp .pls {
    font-weight: 300;
    font-size: .7em;
}
#about .sec3 .odometer_wrp i {
    color: #333;
}
#about .sec3 .odometer_wrp .pls {
    margin-left: 5px;
}
#about .sec3 .odometer_wrp .odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, 
#about .sec3 .odometer_wrp .odometer.odometer-theme-minimal .odometer-digit .odometer-digit-spacer {
    letter-spacing: 0px !important;
}
@media (min-width:768px){
    #about .sec3 ul li {
        position: relative;
    }
    /* #about .sec3 ul li:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 45px;
        height: 80%;
        top: 10%;
        width: 1px;
        background-color: rgba(0, 0, 0, 0.1);
    } */
}
@media (max-width:1400px) and (min-width:1200px){
    #about .sec3 ul li {
        position: relative;
    }
    #about .sec3 ul li:not(:last-child)::after {
        right: 25px;
    }
}
@media (max-width:1200px) and (min-width:768px){
    #about .sec3 ul li {
        position: relative;
    }
    #about .sec3 ul li:not(:last-child)::after {
        display: none;
    }
}
@media (max-width:768px){
    #about .sec3 {
        text-align: center;
        padding: 60px 0 !important;
    }
    #about .sec3 ul li {
        margin: 15px 0;
        padding: 0px;
    }
    #about .sec3 ul li .odometer_wrp {
        justify-content: center;
    }
    #about .sec3 .odometer_wrp .pls {
        margin-left: 2px;
    }
    #about .sec3 ul li h5 {
        line-height: 1.3em;
    }
}


/* subTitle */
.subTitle {
    padding-left: 20px;
    position: relative;
}
.subTitle:after {
    content: "";
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 4px;
    background-color: #45babd;
}


/* listDecos */
.listDecos > li {
    position: relative;
    background-color: rgba(51, 63, 120, 0.05);
    border-radius: 5px;
    padding: 15px 20px;
}
.listDecos > li + li {
    margin-top: 8px;
}
.listDecos > li .dft {
    position: relative;
    padding-left: 18px;
    color: #121a42;
}
.listDecos > li .dft:after {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 4px;
    height: 4px;
    background-color: #121a42;
}
@media (max-width:768px){
    .listDecos > li .dft:after {
        top: 8px;
    }
}

/* com_top */
.com_top {
    border-radius: 30px;
}
@media (max-width:768px){
    .com_top {
        border-radius: 10px;
    }
}


/* contactForm */
.contactForm .fTit {
    margin-bottom: 20px !important;
    padding-left: 10px;
    position: relative;
}
.contactForm .fTit:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    background-color: #000;
    transform: translateY(-50%);
}
.contactForm ul li {
    margin: 20px 0;
}
.contactForm .form-item {
    position: relative;
}
.contactForm .form-item > label {
    /* position: absolute; */
    gap: 5px;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 0;
    font-weight: 600;
    margin: 0;
}
.contactForm .radio-custom-wrp,
.contactForm select.form-common,
.contactForm input.form-common[type="tel"],
.contactForm input.form-common[type="email"],
.contactForm input.form-common[type="text"] {
    height: 48px;
    margin-top: 12px;
}
.contactForm .radio-custom-wrp {
    display: flex;
    align-items: center;
    gap: 20px;
}
.contactForm .radio-custom-wrp .radio-custom,
.contactForm .radio-custom-wrp .radio-custom label {
    margin: 0px;
}
.contactForm .form-common {
    box-shadow: 0 0 0;
    border-radius: 8px;
    border: 1px solid #d0d4dd ;
    font-weight: 500;
    font-size: 1.7rem;
    background-color: transparent;
}
.contactForm input.form-common[type="file"] {
    border-width: 1px;
    padding: 1px;
    height: auto;
    padding: 10px;
}
.contactForm .checkWrp {
    line-height: 29px;
}
.contactForm .form-item .form-common {
    /* padding-left: 95px; */
}
.contactForm label {
    font-size: 1.9rem;
    line-height: 1em;
    color: #333;
    font-weight: 400;
    margin-bottom: 10px;
    display: inline-block;
    font-weight: 500;
    padding-left: 5px;
}
.contactForm .btnItem {
    width: 100%;
}
.contactForm .agrees input,
.contactForm .agrees label,
.contactForm .agrees strong {
    font-size: 1.6rem;
    display: inline-block;
    vertical-align: middle;
    margin: 0px;
}
.contactForm .agrees label {
    margin-left: 5px;
    display: inline;
}
.contactForm .agrees strong {
    font-weight: 600;
    cursor: pointer;
    margin-left: 5px;
}
.contactForm .btnWrp .btnItem {
    justify-content: center;
}

@media (max-width:768px){
    .contactForm {
        padding: 3rem 1rem;
    }
    .contactForm ul li {
        margin: 40px 0;
    }
    .contactForm .fTit {
        margin-bottom: 10px !important;
    }
    .contactForm .checkWrp {
        line-height: 30px;
    }
    .contactForm .checkWrp .radio-custom {
        margin: 0px !important;
        margin-right: 5px !important;
    }
    .contactForm .radio-custom-wrp {
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 15px;
        height: auto;
    }
}


/* contBoxs */
.contBoxs {
    padding: 3rem 5rem;
    background-color: #222;
    border-radius: 20px;
}
.contBoxs .item {
    /* border: 1px solid #aaa; */
    display: flex;
    align-items: center;
    padding: 20px;
}
.contBoxs .item.kakao {
    background-color: rgba(250, 234, 98, 0.2);
}
@media (max-width:768px) {
    .contBoxs {
        padding: 3rem 2rem;
        border-radius: 10px;
    }
    .contBoxs .item {
        padding: 10px;
    }
    .contBoxs .item .icon {
        font-size: 30px;
        width: 30px;
    }
    .contBoxs .item .txt {
        width: calc(100% - 30px);
    }
}

/* radioExtra */
.radioExtra {
    display: flex;
    align-items: center;
    gap: 8px;
}
.radioExtra .form-control {
    width: 70px;
    margin: 0px !important;
}


/* formContents */
.formContents {
    /* border-top: 1px solid #aaa; */
}
.formContents > li {
    display: flex;
    align-items: flex-start;
}
.formContents > li > div {
    padding: 15px 0;
}
.formContents > li.canvas {
    background-color: #fbfffb;
}
.formContents > li > .tit {
    width: 230px;
}
.formContents > li > .con {
    width: calc(100% - 230px);
}
.formContents > li > .con .checkbox-custom,
.formContents > li > .con .radio-custom {
    margin: 0 12px 0 0;
}
.formContents > li > .tit label {
    font-size: 17px;
    color: #333;
}
.formContents > li > .con .checkbox-custom label ,
.formContents > li > .con .radio-custom label  {
    font-size: 16px;
    color: #333;
}
.formContents > li > .tit label {
    font-weight: 600;
    margin: 0px;
}
@media (min-width:768px) {
    .formContents > li > .tit label,
    .formContents > li > .con .checkbox-custom,
    .formContents > li > .con .radio-custom {
        line-height: 40px;
    }
    .formContents > li > .con .checkbox-custom.line,
    .formContents > li > .con .radio-custom.line {
        line-height: 25px;
        margin-top: 5px;
    }
}
@media (max-width:767px) {
    .formContents > li {
        flex-wrap: wrap;
    }
    .formContents > li > .tit,
    .formContents > li > .con {
        width: 100%;
    }
    .formContents > li > .tit {
        padding: 10px 0 0;
    }
    .formContents > li > .con {
        padding: 5px 0 10px;
    }
    .formContents > li > .tit label {
        font-size: 15px;
    }
    .formContents > li > .con .checkbox-custom label ,
    .formContents > li > .con .radio-custom label  {
        font-size: 14px;
    }
}

/* formBtn */
.formBtn {
    line-height: 40px;
    background-color: #444;
    border: 0px;
    text-align: center;
    width: 100px;
    color: #fff;
}
.formBtn.gr {
    background-color: #126919;
}
/* form-flex */
.form-flex {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.form-flex.noflow {
    white-space: nowrap;
    gap: 8px;
}
.form-flex.spaceBetween {
    justify-content: space-between;
}
.form-flex + .form-flex:not(.noBorder) {
    margin-top: 10px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}
.form-flex.fx > div {
    flex-grow: 1;
}
.form-flex,
.form-flex label {
    font-size: 17px;
}
.form-flex .form-control,
.form-flex .t,
.form-flex .modalBtn,
.form-flex .checkbox-custom label ,
.form-flex .radio-custom label  {
    font-size: 16px;
}
.form-flex .modalBtn {
    display: inline-block;
    cursor: pointer;
    color: #aaa;
}
.form-flex .form-control {
    border-radius: 0px;
    box-shadow: 0 0 0;
    border-color: #ddd;
}
.form-flex .form-control:not(textarea) {
    height: 40px;
}
.form-flex.infoItem {
    min-height: 40px;
}
@media (min-width:768px) {
    .form-flex.mx80 {
        width: 80%;
    }
    .form-flex .form-control.wr250 {
        max-width: 250px;
    }
    .form-flex .form-control {
        min-width: 100px;
    }
}
@media (max-width:767px) {
    .form-flex:not(.mobileFlex) {
        flex-wrap: wrap;
    }
    .form-flex.noflow {
        gap: 4px;
    }
    .form-flex,
    .form-flex label,
    .form-flex .modalBtn,
    .form-flex .form-control {
        font-size: 15px;
    }
    .form-flex .form-control {
        padding: 6px 8px;
    }
    .form-flex .form-control,
    .form-flex .checkbox-custom label ,
    .form-flex .radio-custom label  {
        font-size: 14px;
    }
    .form-flex.infoItem {
        min-height: auto;
    }
}

/* formAgrees */
.formAgrees {
    border-top: 1px solid #333;
}
.formAgrees > li {
    padding: 8px 0;
    font-size: 17px;
    border-bottom: 1px solid #ddd;
}
.formAgrees > li.all {
    border-bottom-color: #333;
}
.formAgrees > li .radio-custom {
    padding: 5px 0;
}
.formAgrees > li .checkbox-custom,
.formAgrees > li .radio-custom {
    padding: 0px;
    width: 100%;
}
.formAgrees > li .hasModal .checkbox-custom,
.formAgrees > li .hasModal .radio-custom {
    width: calc(100% - 70px);
}
.formAgrees > li .checkbox-custom label,
.formAgrees > li .radio-custom label {
    display: block;
    width: 100%;
    color: #848484;
    border-radius: 4px;
    height: 55px;
    padding-left: 40px;
    padding-right: 20px;
    display: flex;
    align-items: center;
}
.formAgrees > li .checkbox-custom.big label,
.formAgrees > li .radio-custom.big label {
    height: 90px;
}
.formAgrees > li .checkbox-custom.md label,
.formAgrees > li .radio-custom.md label {
    height: 70px;
}
.formAgrees > li .checkbox-custom.md label span strong,
.formAgrees > li .checkbox-custom.big label span strong,
.formAgrees > li .radio-custom.md label span strong,
.formAgrees > li .radio-custom.big label span strong {
    display: block;
    font-size: 20px;
    line-height: 1em;
}
.formAgrees > li .checkbox-custom input[type="checkbox"]:checked + label,
.formAgrees > li .radio-custom input[type="radio"]:checked + label {
    border-color: #111;
    color: #111;
    /* background-color: #f5f8ff;
    box-shadow: 5px 5px 20px rgba(141, 160, 214, 0.15); */
}
.formAgrees > li .checkbox-custom label::before,
.formAgrees > li .radio-custom label::before {
    left: 0px;
    right: auto;
    width: 27px;
    height: 27px;
    margin-top: 0px;
    transform: translateY(-50%);
    background-color: #c7c7c7;
    border-color: #c7c7c7;
    border-radius: 50%;
}
.formAgrees > li .checkbox-custom input[type="checkbox"] + label:after,
.formAgrees > li .radio-custom input[type="radio"] + label:after {
    content: "\eb7b";
    font-family: remixicon!important;
    font-style: normal;
    right: auto;
    left: 5px;
    background-color: transparent;
    font-size: 17px;
    position: absolute;
    width: 13px;
    height: 17px;
    margin-top: 0px;
    transform: translateY(-50%);
    top: 50%;
    line-height: 1;
    color: #fff;
}
.formAgrees > li .checkbox-custom input[type="checkbox"]:checked + label::before,
.formAgrees > li .radio-custom input[type="radio"]:checked + label::before {
    background-color: #099814;
    border-color: #099814;
}
.formAgrees > li .checkbox-custom input[type="checkbox"]:checked + label:after,
.formAgrees > li .radio-custom input[type="radio"]:checked + label:after {
    box-shadow: 0 0 0;
}
@media (max-width:767px) {
    .formAgrees > li {
        font-size: 15px;
    }
    .formAgrees > li .checkbox-custom label, 
    .formAgrees > li .radio-custom label {
        height: 40px;
        padding-left: 35px;
    }
    .formAgrees > li .checkbox-custom label::before, 
    .formAgrees > li .radio-custom label::before {
        width: 24px;
        height: 24px;
    }
    .formAgrees > li .checkbox-custom input[type="checkbox"] + label:after, 
    .formAgrees > li .radio-custom input[type="radio"] + label:after {
        font-size: 14px;
    }
}

/* mapbox */
.mapbox .cont {
    display: none !important;
}
.mapbox .root_daum_roughmap {
	border: 0px !important;
	padding: 0px !important;
}
.mapbox .root_daum_roughmap .map_border {
    opacity: 0;
}
.mapbox .root_daum_roughmap .wrap_map,
.mapbox iframe {
    height: 600px !important;
    border-radius: var(--sub-border-radius30);
    overflow: hidden;
}
@media (max-width:768px) {
	.mapbox .root_daum_roughmap .wrap_map,
	.mapbox iframe {
		height: 250px !important;
	}
}

/* infoIcons */
.infoIcons .infoIconItem {
    display: flex;
    align-items: center;
}
.infoIcons .infoIconItem + .infoIconItem {
    margin-top: 25px;
}
.infoIcons .infoIconItem .icon {
    width: 100px;
}
.infoIcons .infoIconItem .icon img {
    background: rgba(29, 188, 191, 0.85);
    border: 2px solid #30d0d3;
    border-radius: 20px;
    box-shadow: 10px 10px 20px rgba(48, 208, 211, 0.3);
}
.infoIcons .infoIconItem .txt {
    width: calc(100% - 100px);
    padding-left: 25px;
}
@media (max-width:768px) {
    .infoIcons {
        margin-top: 30px;
    }
    .infoIcons .infoIconItem + .infoIconItem {
        margin-top: 15px;
    }
    .infoIcons .infoIconItem .icon {
        width: 70px;
    }
    .infoIcons .infoIconItem .icon img {
        border-radius: 10px;
        box-shadow: 5px 5px 10px rgba(48, 208, 211, 0.3);
    }
    .infoIcons .infoIconItem .txt {
        width: calc(100% - 70px);
        padding-left: 15px;
    }
}


/* dvdHr */
.dvdHr {
    width: 100%;
    height: 1px;
    background-color: rgba(150, 150, 150, 0.4);
    margin: 6rem 0;
}
.dvdHr.darken {
    background-color: rgba(150, 150, 150, 7);
}
.dvdHr.big {
    margin: 13rem 0;
}
@media (max-width:768px) {
    .dvdHr {
        margin: 4rem 0;
    }
    .dvdHr.big {
        margin: 6rem 0;
    }
}