
.mono-projects-container__ {
    margin: 0 auto;
    max-width: 1200px;
    padding: 20px;
}


.project-list {
    margin-bottom: 30px;
}

.project-search-form {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.project-search-form .form-group {
    margin-bottom: 15px;
}

.project-search-form .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.project-item {
    border: 1px solid #e9ecef;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-content {
    padding: 15px;
}

.project-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.project-location {
    color: #6c757d;
    margin-bottom: 10px;
}

.project-description {
    margin-bottom: 15px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.pagination a, .pagination span {
    padding: 8px 12px;
    margin: 0 5px;
    border: 1px solid #dee2e6;
    color: #007bff;
    text-decoration: none;
    border-radius: 4px;
}

.pagination a:hover {
    background-color: #e9ecef;
}

.pagination span.current {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

/* Project Detail */
.project-detail {
    margin-bottom: 30px;
}

.project-header {
    margin-bottom: 30px;
}

.large-header {
    position: relative;
    margin-bottom: 30px;
}

.project-banner-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.project-abstract {
    font-size: 1.2em;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 20px;
    border-left: 4px solid #007bff;
    padding-left: 20px;
}

.project-text {
    margin-bottom: 30px;
    line-height: 1.6;
}

.project-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.project-image-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.project-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.project-details h3 {
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 10px;
}

/* Contact Persons */
.project-contacts {
    margin-bottom: 30px;
}

.contact-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.contact-item {
    border: 1px solid #e9ecef;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-item-inner {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-image {
    margin-bottom: 15px;
}

.contact-image img {
    border-radius: 50%;
    object-fit: cover;
    width: 150px;
    height: 150px;
    border: 4px solid #f8f9fa;
}

.contact-content {
    width: 100%;
}

.contact-name {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #343a40;
}

.contact-body {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #6c757d;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.contact-phone, .contact-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-phone a, .contact-email a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-phone a:hover, .contact-email a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.project-footer {
    margin-top: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #e9ecef;
}

.project-footer a {
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    color: #0056b3;
}

.section__services {
    background-image: url(/fileadmin/images/bg4.jpg);
    background-repeat: repeat;
}

.heading__services {
    color: #fff;
}
