/* cvList */
.cvList .txt {
    padding: 30px 25px;
    background-color: rgba(255,255,255,0.1);
}
@media (min-width: 991px) {
    .cvList .txt {
        min-height: 250px;
    }
}
/* sptList */
.sptList .item {
    background-color: rgba(255,255,255,0.05);
    border-radius: var(--sub-border-radius20);
    padding: 40px 30px;
}
@media (max-width:768px){
    .sptList .item {
        padding: 30px 20px;
        display: flex;
        align-items: flex-end;
    }
    .sptList .item .txt {
        order: 1;
        width: calc(100% - 60px);
    }
    .sptList .item .img {
        order: 2;
        width: 60px;
        padding-left: 20px;;
    }
    .sptList .item .img img {
        width: 40px;
    }
}


/* contactForm */
.contactForm .fTit {
    margin-bottom: 20px !important;
    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: 55px;
    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: 4px;
    border: 1px solid #d0d4dd ;
    font-weight: 500;
    font-size: 1.7rem;
    color: #fff;
    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: #fff;
    font-weight: 400;
    margin-bottom: 10px;
    display: inline-block;
    font-weight: 500;
    padding-left: 5px;
}
.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;
}

/* borderRadius */
.borderRadius {
    border-radius: 15px;
}
