/* =====================================
PRO LAYOUT
===================================== */

.pro-wrap{
    width:100%;
}

.pro-main{
    width:min(calc(100% - 20px), 1100px);
    margin:auto;
}

.pro-tabs{
    margin:40px 0;
}

.pro-tab-header{
    display:flex;
    gap:4px;
    margin-bottom:-1px;
}

.pro-tab{
    appearance:none;
    border:none;
    padding:5px 28px;
    background:#f5f5f5;
    border:1px solid #d9d9d9;
    border-bottom:1px solid #d9d9d9;
    border-radius:10px 10px 0 0;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
}

.pro-tab.active{
    background:#fff;
    border-bottom-color:#fff;
    position:relative;
    z-index:2;
}

.pro-tab-body{
    border:1px solid #d9d9d9;
    border-radius:0 10px 10px 10px;
    padding:40px;
    background:#fff;
}

.pro-lang-content{
    display:none;
}

.pro-lang-content.active{
    display:block;
}

/* ===========================
CONTENT LAYOUT
=========================== */

.pro-title{
    margin:25px 40px 50px 40px;
    text-align:center;
    color:var(--green) !important;
}

.pro-intro{
    width:100%;
}

.pro-bottom{
    display:flex;
    align-items:flex-start;
    gap:60px;
}

.pro-left{
    flex:1;
}

.pro-img{
    flex:0 0 500px;
}

.pro-img img{
    display:block;
    width:80%;
    height:auto;
    margin-left:auto;
}

/* ===========================
TYPOGRAPHY
=========================== */

.pro-lang-content h3{
    margin-bottom:15px;
}

.pro-lang-content p{
    font-size:18px;
    margin-bottom:35px;
}

/* ===========================
FORM
=========================== */

.frm-row{
    margin-bottom:30px;
}

.frm-row-2{
    display:flex;
    gap:20px;
}

.frm-col{
    flex:1;
}

#proFrm label{
    display:block;
    margin-bottom:8px;
    font-weight:600 !important;
}

.frm-col input{
    width:100%;
}

.pro-service-area{
    display:grid;
    padding-top:10px;
    grid-template-columns:1fr 1fr;
    column-gap:30px;
    row-gap:12px;
}

.pro-city{
    display:flex;
    align-items:flex-start;
    gap:8px;
    width:100%;
}

.pro-city input[type="checkbox"]{
    width:18px;
    height:18px;
    margin:0;
    cursor:pointer;
    flex-shrink:0;
    accent-color:var(--green);
}

.pro-city label{
    display:block;
    margin:0;
    font-weight:400 !important;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #777;
    cursor:pointer;
}

.pro-btn-wrap{
    display:flex;
    justify-content:flex-end;
    margin-top:30px;
}

.pro-join-btn{
    appearance:none;
    border:none;
    border-radius:24px;
    padding:10px 24px;
    background:var(--green);
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:background .2s ease;
}

.pro-join-btn:hover{
    background:#158944;
}

/* ===========================
MOBILE
=========================== */

@media (max-width:768px){

    .pro-tab-body{
        padding:15px;
    }

    .frm-row-2{
        flex-direction:column;
        gap:20px;
    }

    .frm-row-name{
        flex-direction:row;
        gap:20px;
    }

    .pro-intro{
        margin-bottom:0px;
    }

    .pro-bottom{
        flex-direction:column;
        gap:35px;
    }

    .pro-left{
        order:2;
        width:100%;
    }

    .pro-img{
        order:1;
        flex:none;
        width:100%;
    }

    .pro-img img{
        width:80%;
        margin:auto;
    }

}