/* Product & Service Section */
.product_service {
    background-color: #fff;
}
.product_page .text_link button {
    color: #000 !important;
}
.product_page .vc_column_container > .vc_column-inner {
    padding: 0;
}
.section_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.section_title h2 {
    margin-bottom: 0;
}
.site_card {
    display: block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}
.card_image {
    position: relative;
}
.card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card_content {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: -64px;
    left: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    transition: all .5s ease-in-out;
}
.card_content h5 {
    margin-bottom: 10px;
}
.card_content::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,0) 100%);
    opacity: 0;
}
.card_content ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}
.site_card:hover .card_content {
    bottom: 0;
    transition: all .5s ease-in-out;
}
.site_card:hover .card_content p {
    visibility: visible;
}
.site_card:hover .card_content h5, 
.site_card:hover .card_content p, 
.site_card:hover .card_content ul li p {
    z-index: 2;
    position: relative;
}
.site_card:hover .card_content::before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
}
.card_col {
    margin-bottom: 24px;
}
.card_content:hover:before {
    transition: 0.7s;
}
/* Contact Form Section */
.contact_form_section {
    background: #F0F9FF;
}
.contact_form_section .section_title {
    flex-direction: column;
    margin-bottom: 50px;
    justify-content: center;
}
.contact_form_section .section_title h2 {
    margin-bottom: 16px;
}
.contact_form_row {
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact_form_col {
    position: relative;
}
.contact_form_col .form-group label {
    position: absolute;
    top: -25px;
    left: 15px;
    font-size: 14px;
    line-height: 22px;
    color: #000000;
}
.contact_form_col .form-group label.error {
    position: relative;
    top: -30px;
    left: inherit;
    color: #e8252d;
}
.contact_form_row .common_btn img {
    display: none;
}
.checkbox_cover .form-check-label,
.checkbox_cover .form-check-label a {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #000000;
    cursor: pointer;
}
.checkbox_cover .form-check-label {
    padding-left: 6px;
}
.checkbox_cover .form-check-label a {
    text-decoration: underline;
}


/* Media Query */

@media(max-width:1400px) {
    .card_content {
        bottom: -88px;
    }
}
@media(max-width:1199px) {

    /* Product & Service */
    .product_title_row {
        padding: 0 24px;
    }
    /* News Section */
    .news_section .card_content {
        bottom: 0;
    }
}
@media(max-width:991px) {

}
@media(max-width:767px) {

    .card_content {
        bottom: 0;
        padding: 10px;
    }
    .card_content h5 {
        margin-bottom: 6px;
    }
    /* Spacing */
    .vc_empty_space {
        height: 20px !important;
    }
}
@media(max-width:575px) {
    /* About Section */
    .card_col {
        margin-bottom: 24px;
        padding: 0;
    }
    .product_service .vc_row {
        padding: 0;
    }
    .vc_section.about_section {
        text-align: center;
    }
    .product_page h2,
    .product_page .text_link {
        text-align: center !important;
    }
     /* Spacing */
     .vc_empty_space {
        height: 15px !important;
    }
    .product_page .row > div {
        padding: 0;
    }
}

