@charset "UTF-8";

.contact {
    padding: 60px 120px;
}

.contact h2 {
    color: #1a1a1a;
    font-size: 20px;
    line-height: 32px;
    font-weight: 500;
    margin-bottom: 12px;
}

.contact h2 i {
    font-size: 32px;
    margin-right: 12px;
    vertical-align: middle;
}

.contact p {
    font-weight: 400;
    font-size: 18px;
    color: #777;
    line-height: 1.88;
}

.contact p span {
    font-family: helvetica, arial, sans-serif;
    font-weight: 300;
}

.qa {
    padding: 0 120px 60px 120px;
}

.tabs {
    width: 230px;
    float: left;
    overflow: visible;
    z-index: 2;
}

.tab {
    border-radius: 5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border: 1px solid #00b3c0;
    background-color: #00C1CF;
    color: #fff;
    margin-bottom: 1px;
    padding: 14px 0 14px 20px;
    font-size: 14px;
    cursor: pointer;
}

.tab:hover {
    background-color: #00a9d1;
}

.tab.active {
    border: 1px solid #f0f0f0;
    border-right: 1px solid #f8f8f8;
    background-color: #f8f8f8;
    color: #666;
    width: 231px;
    position: relative;
    cursor: default;
}

.tab i {
    font-size: 16px;
    margin-right: 14px;
}

.tab.mobile {
    display: none;
}

.tabcontents {
    width: calc(100% - 230px);
    float: left;
    z-index: 1;
    min-height: 250px;
    border-radius: 5px;
    border-top-left-radius: 0;
    border: 1px solid #f0f0f0;
    background-color: #f8f8f8;
    color: #666;
    padding: 32px 20px;
}

.tabcontent {
    display: none;
    overflow: hidden;
}

.tabcontent.active {
    display: block;
}

.tabcontent h4 {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 22px;
    color: #1a1a1a;
    cursor: pointer;
}

.tabcontent h4 i {
    color: #acacac;
    font-size: 16px;
    margin-right: 8px;
    vertical-align: middle;
}

.tabcontent p {
    font-size: 14px;
    line-height: 1.88;
    color: #777;
    margin-bottom: 32px;
    display: none;
}


@media (max-width: 1050px) {
    .contact {
        padding: 30px 5%;
    }
    
    .qa {
        padding: 0 5% 60px 5%;
    }
    
    .tabs {
        display: none;
    }
    
    .tabcontents {
        width: 100%;
        border: none;
        background-color: #fff;
        padding: 0;
    }
    
    .tabcontents .tab.mobile {
        display: block;
        width: 100%;
        border-radius: 5px;
    }
    
    .tabcontent {
        border-radius: 5px;
        border: 1px solid #f0f0f0;
        background-color: #f8f8f8;
        padding: 32px 20px;
    }
}