.contact{
    width: 100%;
    margin-top: 20px;
    margin-bottom: 50px;
}
.contact-wrap{
    width: 100%;
    display: grid;
    grid-template-columns: 48% 48%;
    column-gap: 4%;
}
.contact-contain{
    width: 100%;
}
.contact-contain h2{
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #121212;
    margin-bottom: 35px;
}
.cc-item{
    width: 100%;
    display: grid;
    grid-template-columns: 32px auto;
    column-gap: 13px;
    padding-bottom: 32px;
    border-bottom: 1px solid #D8D8D8;
    margin-bottom: 35px;
}
.cc-item:last-child{
    border-bottom: unset;
}
.cc-item:last-child h3{
    line-height: 26px !important;
}
.cc-icon img{
    max-width: 32px;
}
.cc-content h3{
    font-weight: bold;
    font-size: 20px;
    line-height: 35px;
    margin-bottom: 16px;
    color: #FF9900;
}
.cc-contain{
    font-weight: 500;
    font-size: 17px;
    line-height: 29px;
    color: #303030;
    display: grid;
}
.cc-contain p{
    margin-bottom: 5px;
}
.cc-contain a{
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 17px;
    line-height: 29px;
    color: #303030;
}
.cc-contain a:hover{
    color: #FF9900;
}

@media only screen 
    and (max-width:1000px){
    .contact{
        margin-top: 5px;
        margin-bottom: 50px;
    }
    .contact-wrap{
        display: grid;
        grid-template-columns: 100%;
    }
    .contact-contain{
        margin-top: 28px;
    }
    .cc-item:last-child{
        margin-bottom: 0px;
    }
    .contact-contain h2{
        font-weight: 700;
    }
    .cc-item{
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .cc-content h3{
        margin-bottom: 10px;
    }
}