@charset "utf-8";
/* CSS Document */

.left {
    float: left;
    margin: 0 10px 0 0;
    display: block;
    max-width: 100%;
    height: auto;
}


.company-section {
    padding: 40px 0;
	    background-color: #ebebeb;
}


.breadcrumb-section {
    margin-bottom: 30px;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: #333;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #1f3671;
	font-weight: bold;
}

.back-button {
    background-color: #fdbf50;
    color: #333;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-button:hover {
    background-color: #fff;
    color: #333;
    transform: translateX(-5px);
}


.company-logo {
   /* max-width: 250px;*/
    /*margin: 0 auto 40px;*/
	    border: 1px solid #000000;
    padding: 30px 50px;
	background-color: #ffffff;
}

.flag-icon {
	max-width: 50px;
}


.subcategories-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.subcategory-item {
 background-color: #fff;
    border-radius: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    padding: 12px 22px;
    min-width: 150px;
    text-align: center;
    transition: all 0.3s ease;
}

.subcategory-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.subcategory-item a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: block;
}


.company-description {
    /*text-align: center;*/
    margin-top: 10px;
    line-height: 1.8;
    color: #444;
}

.company-description p {
    margin-bottom: 20px;
}

.company-description  img {
   max-width: 100%;
}


@media (max-width: 768px) {
    .subcategories-wrapper {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        gap: 10px;
    }
    
    .subcategory-item {
        width: calc(50% - 5px);
        margin: 5px 0;
    }
}


.gallery-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.section-title {
    font-weight: 600;
    color: #1f3671;
    margin-bottom: 40px;
    font-size: 26px;
}

.gallery-item {
    
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}


@media (max-width: 768px) {
    .gallery-section {
        padding: 40px 0;
    }
    
    .gallery-item {
        margin-bottom: 15px;
    }
    
    .gallery-item img {
        height: 200px;
    }
}


.download-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.download-files-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.download-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    padding: 15px 25px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.download-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    color: #1f3671;
}

.pdf-icon {
    color: #e74c3c;
    font-size: 24px;
    margin-right: 15px;
}


@media (max-width: 768px) {
    .download-section {
        padding: 40px 0;
    }
    
    .download-item {
        padding: 12px 15px;
    }
}



@media (max-width: 575px) {
    .company-description img {
        float: none;
    }
}

