#companyslogan .phone {
    font-family: 'Ubuntu';
}

.header .phone img,
.Header-EcommerceSearch div.phone img {
    float: none !important;
}

.primary-webcomMenu a {
    border-top: 4px solid transparent;
}

.primary-webcomMenu a:hover {
    text-decoration: none;
    opacity: 1;
    color: #0f3f67;
    border-top: 4px solid #e2e2e2;
}

.rsp_content,
.rsp_kv.section {
    padding: 60px 0 70px !important;
}

.product-card {
    margin-bottom: 50px;
}

.product-card tr {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
    display: block;
    padding: 10px;
}

.product-card td {
    display: flex;
    align-items: center;
}

.product-card td p {
    text-align: left;
    font-size: 17px;
    line-height: 26px;
    padding-right: 50px;
}

.product-card td a {
    float: left;
}

.product-card td h2 {
    text-align: left;
}

.product-card.right-card {
    margin-bottom: 0;
}

.product-card.right-card figure {
    margin-left: 50px;
    margin-right: 1%;
}

.product-card figure {
    margin-right: 50px;
}

.product-card.right-card .inside {
    padding-left: 30px;
}

#mainKv {
    padding: 137px 0 177px !important;
}

#companyname a img {
    max-width: 100%;
    width: 240px;
}

.primary-webcomMenu li.selected>a {
    color: #0f3f67;
    font-weight: normal;
    border-top: 4px solid #3d709a;
    font-family: 'Ubuntu';
    font-size: 14px;
    letter-spacing: 2px;
}

.primaryColorbg,
.primaryColorbg a,
.primaryColorbg .hamburger div,
.secondary-webcomMenu {
    color: #666;
    font-family: 'Ubuntu';
    font-size: 14px;
    letter-spacing: 2px;
}

.contact-form {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    padding: 40px 40px 0;
    border-radius: 10px;
}

.contact-form table {
    width: 100%;
}

.contact-form table tr td {
    width: 50%;
    padding: 0 15px;
}

.contact-form table tr td input, .contact-form table tr td textarea {
    height: 40px;
    border: 0;
    border-bottom: 1px solid #ccc;
    width: 100%;
    margin-bottom: 35px;
    font-family: 'Ubuntu';
}

.contact-form table tr td textarea {
    height: 120px;
}

.contact-form table tr td input:focus-visible {
    outline: none;
}

/* ~~~~~~~~~~~~~~~~~ Blog CSS ~~~~~~~~~~~~~~~~~ */

.blog-section {
    padding: 60px 0;
    background: #f7f7f8;
    color: #111;
}

.blog-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Heading --- */
.blog-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.blog-header h2 {
    margin: 0;
    font-size: clamp(1.3rem, 2.4vw, 1.8rem);
}

.blog-header p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* --- Grid of cards --- */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* --- Single card --- */
.card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 18px rgba(12, 18, 30, 0.06);
    transition: transform .22s ease, box-shadow .22s ease;
    min-height: 100%;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(12, 18, 30, 0.12);
}

/* --- Image area --- */
.card .media {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 aspect ratio */
    overflow: hidden;
    background: #e9e9ea;
}

.card .media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Content area --- */
.card .content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1 1 auto;
}

.meta {
    font-size: 0.85rem;
    color: #8a8f98;
}

.title {
    margin: 0 0 20px 0;
    font-size: 19px;
    line-height: 1.25;
    color: #111;
}

.excerpt {
    margin: 0;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1 1 auto;
    /* push read-more to bottom if space */
}

.card .content a.button {
    width: 150px;
    padding: 10px 10px;
}

.inner-hero {
    width: 100%;
    height: 380px;
    background: #ddd;
    overflow: hidden;
    position: relative;
    border: 2px solid #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.inner-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Page Content */
.inner-content {
    max-width: 900px;
    margin: 40px auto 0;
    padding: 0 20px;
    line-height: 1.7;
    color: #222;
}

.inner-content h1 {
    margin-bottom: 16px;
}

.inner-content h2 {
    margin-top: 32px;
    font-size: 1.4rem;
    color: #333;
}

.inner-content p {
    margin: 14px 0;
    color: #444;
    font-size: 1rem;
}

/* --- Responsive breakpoints --- */
@media screen and (max-width: 900px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .blog-section {
        padding: 28px 14px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px
    }

    .card .media {
        padding-top: 62%
    }
    .inner-hero{
            height:260px;
        }
        .inner-content{
            margin:24px auto;
        }
        .inner-content h1{
            font-size:1.6rem;
        }
}

/* Small utility */
.muted {
    color: #8a8f98;
    font-size: 0.9rem
}