@import url(../css/root.css);

/* subtop */
#subtop {
    height: 750px;
    position: relative;
    overflow: hidden;
    transition: all 2s;
    -o-transition: all 2s;
    -moz-transition: all 2s;
    -webkit-transition: all 2s;
}
#subtop.smHeight {
    height: 550px;
}
#subtop .subtopBg {
    position: absolute;
    left: 0%;
    top: 0%;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover !important;

    -webkit-animation: zoomOutInBg 1.8s ease-out 1;
    -moz-animation: zoomOutInBg 1.8s ease-in 1;
    -ms-animation: zoomOutInBg 1.8s ease-in 1;
    -o-animation: zoomOutInBg 1.8s ease-in 1;
    animation: zoomOutInBg 1.8s ease-in 1;
}
@keyframes zoomOutInBg {
    0% {
        -webkit-transform: scale(1.15);
        -moz-transform: scale(1.15);
        -ms-transform: scale(1.15);
        -o-transform: scale(1.15);
        transform: scale(1.15);
    }
    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }  
}
#subtop .subtopTxt {
    position: relative;
    z-index: 8;
    padding-bottom: 7.5%;
}
#subtop .subTxt {
    opacity: .85;
}
@media (max-width:768px){
    #subtop.smHeight,
    #subtop {
        height: 40vh;
        min-height: 400px;
    }
}

/* subTabs */
#subTabs {
    padding: 30px 0;
}
#subTabs .tabWrps {
    position: relative;
}
#subTabs .tabWrps #lnbMn {
    display: flex;
    align-items: center;
    justify-content: center;
}
#subTabs .tabWrps #lnbMn li a {
    display: block;
    text-decoration: none;
    color: #999;
    font-size: 17px;
    line-height: 1.3em;
    font-weight: 500;
    padding-bottom: 5px;
}
@media (min-width:992px) {
    #subTabs .tabWrps #lnbMn {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(0,0,0,0.05);
        padding: 10px;
        border-radius: 100px;
        text-align: center;
    }
    #subTabs .tabWrps #lnbMn li {
        display: block;
        flex-grow: 1;
        flex-basis: 50%;
        color: rgba(10,10,10,.5);
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        position: relative;
    }
    #subTabs .tabWrps #lnbMn li a {
        padding: 18px 20px;
    }
    #subTabs .tabWrps #lnbMn li.act a {
        color: rgba(255, 255, 255, 1);
        background-color: var(--main-color);
        border-radius: 100px;
    }
}
@media (max-width:992px) {
    #subTabs .tabWrps #lnbMn {
        position: absolute;
        left: 0;
        top: calc(100% - 1px);
        width: 100%;
        margin-top: 0;
        border-radius: 0;
        border-top: 0px;
        display: none;
        max-height: 200px;
        overflow-y: auto;        
        border: 1px solid #ddd;
        background-color: #fff;
        z-index: 20;
        text-align: center;
    }
    #subTabs .tabWrps #lnbMn.act {
        display: block;
    }
    #subTabs .tabWrps #lnbMn li a {
        padding: 15px;
        font-size: 15px;
        border: 0px;
        width: 100%;
    }
    #subTabs .tabWrps #lnbMn li.act a {
        color: var(--main-color);
        background-color: #fff2f8;
    }
    #subTabs .tabWrps #cateName {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        border: 1px solid #ddd;
        cursor: pointer;
    }
}


/* site_config */
#site_config {
    position: relative;
    z-index: 30;
    display: inline-block;
    /* background-color: rgba(0,0,0,0.3); */
    border-radius: 100px;
    padding: 0 15px;
}
#site_config .site .home {
    float: left;
    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 .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: block;
    padding: 0px 10px;
    cursor: pointer;
    position: relative;
    z-index: 3;
    color: #fff;
}
#site_config .site .home > ul {
    position: absolute;
    left: 50%;
    top: 100%;
    width: 160px;
    border-top: 0px;
    padding: 10px 8px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
    transform: translate3d(-50%, 0px, 0);
}
/* #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: 8px 10px;
    font-weight: 500;
    color: #333;
    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 (min-width:992px) {
    #site_config .site .home.home2,
    #site_config .site .home.home3 {
        position: relative;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 0 30px;
        border-radius: 100px;
        background-color: rgba(255, 255, 255, .05);
        margin: 0 5px;
    }
    #site_config .site .home > .site_toggle {
        min-width: 180px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}
@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 15px;
    }
}


/* company1 */
#company1 .sec1 {
    position: relative;
}
#company1 .sec1:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
}
#company1 .sec1 .container {
    position: relative;
    z-index: 5;
}
#company1 .sec1 .img img {
    border-radius: 50px 0 50px 0;
}


/* circleWrp */
.circleWrp .circleItem {
    width: 100%; 
}
.circleWrp .circleItem > li {
    width: 29%; 
    padding-top: calc(29% + 1px)
}
.circleItem {
    position: relative;
    margin:0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    top: 0;
}
.circleItem > li + li {
    margin-left: -20px;
}
.circleItem > li .txt {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    z-index: 12;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.circleItem > li .txt:after {
    content: "";
    position: absolute;
    width: 90%;
    height: 90%;
    left: 5%;
    top: 5%;
    background-color: rgba(184, 143, 48, 0.05);
    border-radius: 50%;
}
.circleItem > li.reverse .txt:after {
    background-color: rgba(184, 143, 48, 1);
}
.circleItem > li .txt .dft {
    position: relative;
    z-index: 2;
}
.circleItem .box {
    width:100%;
    height:100%;
    top: 0;
    left: 0;
    margin: auto;
    z-index:10;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items:center;
    border-radius: 50%; 
    flex-direction: column;
    z-index: 11;
    transform: rotate(90deg);
}
.circleItem .circleWrapper {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    overflow: hidden;
    display:block;
}
.circleItem .circleWrapper-right {
    right: 0px;
}
.circleItem .circleWrapper-left {
    left: 0px;
}
.circleItem .reverse .box {
    transform: scale(1, 1) rotate(90deg);
}
.circleItem .reverse .txt .logoItem {
    width: 250px;
    display: inline-block;
    position: relative;
    max-width: 20vw;
    line-height: 1em;
}
.circleItem .reverse .txt .logoItem .dot {
    position: absolute;
    top: 50%;
    right: calc(100% + 20px);
    height: 1px;
    width: 45px;
    background-color: rgba(0, 0, 0, .2);
    transform: translateY(-50%);
}
.circleItem .reverse .txt .logoItem .dot:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--main-color);
    border-radius: 50%;
}
.circleItem .reverse .txt .logoItem .dot.dot_rt {
    left: calc(100% + 20px);
}
.circleItem .reverse .txt .logoItem .dot.dot_rt:after {
    left: 100%;
}
.circleItem .circle {    
    width: 200%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 50%;
    position: absolute;
    top: 0;
    transform: rotate(-135deg);
    display: block;
}
.circleItem .circle-right {
    border-top: 1px solid var(--main-color);
    border-right: 1px solid var(--main-color);
    right: 1px;
    visibility: hidden; 
    opacity: .5;
}
.circleItem .circle-left {
    border-bottom: 1px solid var(--main-color);
    border-left: 1px solid var(--main-color);
    left: 1px;
    visibility: hidden; 
    opacity: .5;
}
.circleItem .aos-animate .circle-right {
    visibility: visible; 
    animation: circleRight 1.5s linear forwards;
    animation-delay: 1s;
}
.circleItem .aos-animate .circle-left {
    visibility: visible; 
    animation: circleLeft 1.5s linear forwards;
    animation-delay: 0.5s;
}
.circleItem .aos-animate:nth-child(1) .circle-right,
.circleItem .aos-animate:nth-child(1) .circle-left {
    animation-delay: 0.55s;
}
.circleItem .aos-animate:nth-child(2) .circle-right,
.circleItem .aos-animate:nth-child(2) .circle-left {
    animation-delay: 0.525s;
}

@keyframes circleRight {
    0% {
        transform: rotate(-135deg);
    }
    50%, 100% {
        transform: rotate(45deg);
    }
}

@keyframes circleLeft {
    0%, 50% {
        transform: rotate(-135deg);
    }
    100% {
        transform: rotate(45deg);
    }
}
@media (max-width:768px){
    .circleItem .circleWrapper {
        width: 100%;
    }
    .circleItem .circle-right {
        border-top: 0px;
        border-right: 0px;
    }
    .circleItem .circle-left {
        border-bottom: 0px;
        border-left: 0px;
    }
    .circleWrp .circleItem > li {
        padding-top: 0;
        width: 100%;
        height: 40vw;
    }
    .circleWrp .circleItem > li.reverse  {
        height: 25vw;
    }
    .circleItem > li + li {
        margin-left: -10px;
    }
    .circleItem > li img {
        width: 35px;
    }
    .circleItem > li .txt:after {
        border-radius: 0px;
    }
    .circleItem > li .txt .dft br {
        display: none;
    }
    .circleItem > li .txt h2 {
        font-size: 4vw;
    }
    .circleItem > li .txt h5 {
        font-size: 3vw;
    }
    .circleItem .reverse .txt .logoItem {
        width: 100%;
        max-width: none;
        align-items: center;
        display: flex;
        justify-content: center;
        gap: 10px;
    }
    .circleItem .reverse .txt .logoItem img {
        width: 40px;
        margin: 0px !important;
    }
    .circleItem .reverse .txt .logoItem .dot {
        width: 25px;
        display: none;
    }
}


/* business2 */
.mapbox .root_daum_roughmap .cont {
    display: none !important;
}
.mapbox .root_daum_roughmap .wrap_map,
.mapbox iframe {
    height: 500px !important;
    border-radius: 0;
    overflow: hidden;
}
@media (max-width:768px){
    .mapbox .root_daum_roughmap .wrap_map,
    .mapbox iframe {
        height: 250px !important;
    }
}


/* underLined */
.underLined {
    display: inline-block;
    position: relative;
}
.underLined:after {
    content: "";
    position: absolute;
    left: -10px;
    bottom: 0;
    height: 50%;
    width: calc(100% + 20px);
    background-color: #fff2c3;
}
.underLined .txt {
    position: relative;
    z-index: 2;
}

/* hisList */
.hisTop {
    position: relative;
    z-index: 5;
}
.hisTop span {
    display: inline-block;
    padding: 4px 40px;
    border-radius: 100px;
    background-color: #111;
    color: #fff;
}
.hisList {
    position: relative;
}
.hisList:after {
    content: "";
    position: absolute;
    left: calc(50% - 1px);
    background-attachment: fixed;
    background-color: #999999;
    top: 0;
    height: 100%;
    width: 1px;
}
.hisList > li {
    margin: 70px 0;
    position: relative;
    z-index: 3;
}
.hisList > li .yStandards {
    position: absolute;
    left: -40px;
    transform: translate3d(-100%, -25%, 0);
    color: #666;
}
.hisList > li ul {
    margin-top: 20px;
}
.hisList > li ul li {
    margin: 25px 0;
}
.hisList > li ul li .hcon {
    display: flex;
    gap: 8px;
    font-weight: 400;
}
.hisList > li ul li .hcon + .hcon {
    margin-top: 12px;
}
.hisList > li ul li h5 {
    position: relative;
    padding-left: 160px;
    word-break: keep-all;
    color: #444;
    font-weight: 300;
    position: relative;
}
.hisList > li ul li h5:after {
    content: "";
    position: absolute;
    top: 12px;
    left: 0px;
    height: 7px;
    width: 7px;
    /* border: 8px solid #fff; */
    background-color: #999999;
    border-radius: 50%;
    transform: translateX(-50%);
}
.hisList > li ul li h5 > .yyyy {
    position: absolute;
    left: 30px;
    color: #111;
    font-weight: 700;
	font-family: "Roboto";
    font-size: 1.2em;
}
@media (min-width:768px){
    .hisList > li {
        width: 50%;
    }
    .hisList:not(.even) > li:nth-child(odd) {
        margin-left: 50%;
    }
    .hisList.even > li {
        padding-left: 0;
        text-align: right;
    }
    .hisList.even > li ul li h5 {
        padding-right: 160px;
        padding-left: 0;
    }
    .hisList.even > li ul li h5 > .yyyy {
        left: auto;
        right: 30px;
    }
    .hisList.even > li ul li h5 > strong {
        left: auto;
        right: 0;
    }
    .hisList.even > li ul li h5:after {
        left: auto;
        right: 0;
        transform: translateX(50%);
    }
    .hisList.even > li .yStandards {
        position: absolute;
        left: auto;
        right: -40px;
        transform: translate3d(100%, -25%, 0);
    }
    .hisList.even > li .hcon {
        justify-content: flex-end;
    }
    .hisList.even > li .hcon .hh {
        order: 2;
    }
    .hisList.even > li .hcon .cc {
        order: 1;
    }
}
@media (max-width:768px){
    .hisTop {
        text-align: left;
    }
    .hisTop span {
        border-radius: 0 40px 40px 0;
    }
    .hisList:after {
        background: #eee;
        left: -2px;
    }
    .hisList > li {
        margin: 30px 0;
    }
    .hisList > li ul li {
        margin: 15px 0;
    }
    .hisList > li ul li h5 > .yyyy {
        left: 10px;
    }
    .hisList > li {
        padding-left: 20px;
    }
    .hisList > li ul li h5 {
        padding-left: 70px;
    }
    .hisList > li ul li h5:after {
        left: -21px;
        width: 5px;
        height: 5px;
        top: 6px;
    }
}

/* backSlickInfinite */
.backSlickInfiniteWrp {
    position: relative;
}
/* .backSlickInfiniteWrp:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 15vw;
    height: 100%;
    background: linear-gradient(to right, #fff, transparent);
    z-index: 10;
}
.backSlickInfiniteWrp::before {
    content: "";
    position: absolute;
    top: 0;
    width: 15vw;
    height: 100%;
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
    z-index: 10;
} */
.backSlickInfinite .slick-slide {
    padding: 2px;
    filter: grayscale(1);
}
/* certfi */
.certfi .img {
    padding: 15px;
    border-radius: 20px;
	border: 1px solid #ddd;
}
@media (min-width:768px){
    .certfi .row {
        margin: 0 -30px;
    }
    .certfi .row > li {
        padding: 0 30px;
    }
}

/* contactForm */
.contactForm .row {
    margin: 0 -5px;
}
.contactForm .row > li,
.contactForm .row > div {
    padding: 0 5px;
}
.contactForm ul li {
    margin: 10px 0;
}
.contactForm .form-item {
    position: relative;
}
.contactForm .form-item > label {
    position: relative;
    left: 0;
    top: 0;
    height: 100%;
    width: auto;
    display: flex;
    align-items: center;
    padding-left: 0;
    margin-bottom: 13px;
}
.contactForm .form-item > label .c_pt {
    display: inline-block;
    margin-left: 3px;
}
.contactForm select.form-common,
.contactForm input.form-common[type="tel"],
.contactForm input.form-common[type="email"],
.contactForm input.form-common[type="text"] {
    height: 50px;
}
.contactForm .form-common {
    box-shadow: 0 0 0;
    border-radius: 0px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom-width: 1px;
    font-weight: 500;
    font-size: 1.7rem;
    background-color: transparent;
    color: #fff;
}
.contactForm input.form-common[type="file"] {
    border-width: 1px;
    padding: 1px;
}
.contactForm .checkWrp {
    line-height: 50px;
}
.contactForm .form-item .form-common {
    /* padding-left: 95px; */
}
.contactForm label {
    font-size: 1.6rem;
    line-height: 1em;
    color: #fff;
    margin-bottom: 10px;
    display: inline-block;
    font-weight: 400;
}
.contactForm .btnItem {
    width: 100%;
}
.contactForm .agrees input,
.contactForm .agrees label,
.contactForm .agrees strong {
    font-size: 1.4rem;
    display: inline-block;
    vertical-align: middle;
    margin: 0px;
}
.contactForm .agrees input {
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
}
.contactForm .agrees label {
    padding-left: 38px;
    position: relative;
}
.contactForm .agrees label:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #ddd;
    transform: translateY(-50%);
    margin-right: 3px;
}
.contactForm .agrees input[type="checkbox"]:checked + label:before {
    background-color: #111;
    border-color: #111;
}
.contactForm .agrees label:after {
    font-family: remixicon !important;
    content: "\eb7b";
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 0;
    width: 25px;
    height: 25px;
    transform: translateY(-50%);
    opacity: 0;
}
.contactForm .agrees input[type="checkbox"]:checked + label:after {
    color: #fff;
    opacity: 1;
}
.contactForm .agrees strong {
    font-weight: 600;
    cursor: pointer;
    margin-left: 5px;
    border-bottom: 1px solid #aaa;
}

.dkForm .contactForm {
    padding: 0px !important;
}
.dkForm .contactForm .form-item > label {
    color: #999;
}
.dkForm .contactForm .form-common {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(0, 0, 0, 0);
    color: #666;
}
.dkForm .contactForm label,
.dkForm .contactForm .agrees label {
    color: #666 !important;
}
.formBtnCst .btnWrp .btnItem {
    color: #fff;
    border-color: #000;
    background-color: #000;
}
#online_write  .btnWrp .btnItem {
    margin: 0 auto;
}
@media (min-width:1370px){
    .contactForm {
        padding: 4rem 6rem;
    }
}
@media (max-width:1370px) and (min-width:992px){
    .contactForm {
        padding: 0;
    }
    .contactForm ul {
        max-width: 700px;
    }
}
@media (max-width:768px){
    .contactForm .checkWrp {
        line-height: 30px;
    }
    .contactForm .checkWrp .checkbox-custom {
        margin: 0px !important;
        margin-right: 5px !important;
    }
    .dkForm .contactForm .btnWrp {
        width: 100%;
        margin-top: 15px;
    }
}

/* specTit */
.specTit {
    position: relative;
    padding-left: 15px;
}
.specTit:after {
    content: "";
    position: absolute;
    left: 0;
    top: 25%;
    height: 50%;
    width: 2px;
    background-color: #174876;
}


/* company2 */
#company2 .addr {
    display: inline-flex;
    padding: 8px 20px;
    background-color: rgba(0, 0, 0, .03);
    border-radius: 100px;
    gap: 10px;
    align-items: center;
}
#company2 .addr img {
    width: 21px;
    height: 30px;
}
#company2 .btInfo {
    margin-top: -5vw;
}
#company2 .btInfo .infoBox {
    background-color: var(--main-color);
}
@media (max-width:768px){
    #company2 .addr {
        padding: 4px 10px;
        gap: 5px;
        text-align: left;
        border-radius: 4px;
    }
    #company2 .addr img {
        width: 12px;
        height: 16px;
    }
}

/* infoBox */
.infoBox .item {
    display: flex;
    align-items: center;
}
.infoBox .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    background-color: rgba(255, 255, 255, .1);
    border-radius: 50%;
    height: 50px;
    width: 50px;
}
.infoBox .tcon {
    width: calc(100% - 50px);
    padding-left: 15px;
}
@media (max-width:768px){
    .infoBox .icon {
        font-size: 20px;
        height: 30px;
        width: 30px;
    }
    .infoBox .tcon {
        width: calc(100% - 30px);
        padding-left: 10px;
    }
}


/* 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: 20px;
    padding: 15px 10px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    text-transform: uppercase;
}
#subTabs .con > a.act {
    color: rgba(255,255,255,1);
    background-color: var(--main-color);
    border-radius: 100px;
}
@media (max-width:992px){
    #subTabs .con > a {
        font-size: 18px;
        padding: 15px 10px;
    }
}
@media (max-width:500px){
    #subTabs .con > a {
        font-size: calc(100vw * (16 / 500));
        padding: 8px 5px;
    }
}




/* tabs */
.tabs {
    
}
.tabs .nav-tabs {
	display: flex;
	align-items: center;
    border-color: transparent;
    border-right: 0px solid #ddd;
}
.tabs .nav-tabs::before,
.tabs .nav-tabs::after {
    display: none;
}
.tabs .nav-tabs li {
    flex-basis: 33.33333%;
    flex-grow: 1;
    text-align: center;
}
.tabs .nav-tabs.col2 {
    flex-wrap: wrap;
}
.tabs .nav-tabs.col2 li {
    flex-grow: unset;
}
.tabs .nav-tabs li a {
    font-size: 15px;
    margin: 0;
    border: 1px solid #ddd !important;
    background-color: #fff;
    border-radius: 0%;
    padding: 15px 10px;
    color: #999 !important;
    font-weight: 600;
    margin-right: -1px;
    text-transform: uppercase;
}
/* .tabs .nav-tabs li:not(:last-child) a {
    border-right: 0px !important;
} */
.tabs .nav-tabs li.active {
    position: relative;
    z-index: 2;
}
.tabs .nav-tabs li.active a {
    color: #333 !important;
    border: 1px solid #333 !important;
    /* border-bottom-color: transparent !important; */
}
.tabs .tab-content {
	border: 0;
	padding: 0;
	box-shadow: 0 0 0;
}
.tabs .tab-content .subTitle {
    text-transform: uppercase;
}
@media (max-width:768px) {
    .tabs .nav-tabs {
        flex-wrap: nowrap !important;
    }
    .tabs .nav-tabs li {
        display: block;
    }
    .tabs .nav-tabs li a {
        font-size: 13px;
        padding: 10px;
    }
    .tabs .nav-tabs li {
        flex-basis: 50%;
    }
}
@media (max-width:500px) {
    .tabs .nav-tabs {
        gap: 5px;
        justify-content: center;
    }
    .tabs .nav-tabs li {
        flex-basis: auto;
    }
    .tabs .nav-tabs li a {
        font-size: 12px;
        padding: 5px 10px;
        border-radius: 4px;
    }
}

/* equipList */
.equipList .equipItem {
    text-decoration: none;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background-color: #f4f4f4;
}
.equipList .equipItem .img {
    overflow: hidden;
    background-color: #fcfcfc;
    border: 1px solid #d6d6d6;
    border-radius: 20px;
}
.equipList .equipItem .img .row {
    margin: 0;
    padding: 5px;
}
.equipList .equipItem .img .row > div {
    padding: 5px;
}
.equipList .equipItem .img img {
    border-radius: 20px;
}
/* .equipList .equipItem .img img {
    -webkit-transition: all 1.2s ease-out;
    -moz-transition: all 1.2s ease-out;
    -ms-transition: all 1.2s ease-out;
    -o-transition: all 1.2s ease-out;
    transition: all 1.2s ease-out;
}
.equipList .equipItem:hover .img img {
    transform: scale(1.1);
} */
.equipList .equipItem .txt {
    padding: 30px 25px;
}
.equipList .equipItem .txt .cate {
    padding-left: 15px;
    position: relative;
}
.equipList .equipItem .txt .cate:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate3d(0, -50%, 0) rotate(45deg);
    width: 6px;
    height: 6px;
    background-color: #edae19;
}
.equipList .equipItem .txt .sbj,
.equipList .equipItem .txt .con {
    /* overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; */
}
@media (max-width:400px){
    .equipList .equipItem .img .row > div {
        width: 100%;
    }
}