/* =========================
   Desk Pages Common CSS
========================= */

.desk-message {
    margin-top: 15px;
    line-height: 1.9;
    font-size: 16px;
    text-align: justify;
}

.desk-image {
    float: right;
    width: 162px;
    margin-left: 25px;
    margin-bottom: 15px;
    text-align: center;
}

.desk-image img {
    width: 162px;
    height: 200px;
    object-fit: cover;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    background: #fff;
}

.desk-image h4 {
    font-size: 13px;
    line-height: 1.6;
    margin-top: 15px;
    color: #333;
}

/* Sidebar */

.sidebar ul {
    padding-left: 0;
    list-style: none;
}

.sidebar ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.sidebar ul li a {
    text-decoration: none;
    color: #333;
    display: block;
    transition: 0.3s;
}

.sidebar ul li a:hover {
    color: #0d6efd;
    padding-left: 5px;
}

.sidebar ul li.active a {
    color: #0d6efd;
    font-weight: bold;
}

/* Contact Section */

.touch-line {
    background: #f8f9fa;
    padding: 15px 0;
    margin-top: 15px;
}

/* Banner */

.innerbanner {
    background: #f1f1f1;
    padding: 5px 0;
    margin-bottom: 15px;
}

/* Mobile Responsive */

@media (max-width: 768px) {

    .desk-image {
        float: none;
        margin: 0 auto 20px;
    }

    .desk-message {
        text-align: left;
    }
}