object.icon {
    max-height: 38px;
}
div.banner {
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 400px;
}
div.categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}
div.category-title {
    display: flex;
    background-color: var(--blue-main);
    padding: 10px 20px;
}
div.category-title span {
    color: var(--white);
    font-size: 30px;
    font-weight: 200;
    flex: 1;
}
div.category-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
}
div.category-icon img {
    max-width: 100%;
    max-height: 100%;
}
a.product {
    display: flex;
    padding: 15px;
    gap: 15px;
    border-bottom: 1px solid var(--gray-white);
    background-color: var(--white);
    text-decoration: none;
    color: var(--black);
    position: relative;
    flex-direction: column-reverse;
}
a.product div.marker {
    display: none;
}
a.product:hover div.marker {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50px;
    background-color: var(--orange-main);
    font-weight: 700;
    color: var(--white);
    display: flex;
    font-size: 40px;
    justify-content: center;
    align-items: center;
    box-shadow: -1px 0 3px var(--gray-dark);
}
div.product:first-child {
    border-top: none;
}
div.product-image {
    display: flex;
    flex: 0 0 auto;
    width: 100%;
    max-height: 100px;
    justify-content: center;
    align-items: center;
    position: relative;
}
div.product-image span {
    position: absolute;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    background-color: var(--blue-dark-translucent);
    padding: 2px 5px 2px 5px;
    color: var(--white);
    font-weight: 200;
    font-size: 9px;
}
div.product-image img {
    max-width: 100%;
    max-height: 100%;
}
div.product-title {
    font-weight: 700;
    font-size: 22px;
}
div.product-description {
    margin-top: 7px;
    font-weight: 200;
    font-size: 16px;
}
div.product-information {
    display: flex;
    flex-direction: column;
}
div.product-description {
    flex: 1;
}
div.product-tags {
    margin-top: 10px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
div.product-tags span {
    background-color: var(--gray-white);
    color: var(--black);
    padding: 5px 10px 5px 10px;
    font-size: 12px;
}
div.configurator {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 50px 0 50px 0;
    background-color: var(--blue-black);
    color: var(--white);
    gap: 20px;
}
div.configurator div.text {
    flex: 1;
}
div.configurator div.title {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 7px;
}
div.configurator div.description {
    font-weight: 200;
}
div.configurator button {
    padding: 10px 20px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    background-color: var(--orange-main);
    color: var(--white);
    transition: background-color 0.25s linear;
}
div.configurator button:hover {
    background-color: var(--orange-dark);
}
div.industries {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 50px;
    gap: 30px;
}
div.industries a.industry {
    box-shadow: inset 0 0 30px var(--gray-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--black);
    font-weight: 200;
    font-size: 30px;
    background-color: var(--white);
    position: relative;
}
div.industries a.industry:hover {
    box-shadow: 0 0 15px var(--gray-black);
}
div.industries div.industry-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;

    background-position: center;
    background-size: cover;
}
div.industries div.industry-name {
    flex: 1;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-weight: 400;
    background-color: var(--blue-dark);
    color: var(--white);
    font-size: 22px;
    padding: 15px;
}
a.industry:hover div.industry-name {
    background-color: var(--blue-main);
}

@media only screen and (min-width: 350px) {
    a.product {
        flex-direction: row;
    }
    div.product-image {
        max-width: 100px;
        width: 100px;
    }
}

@media only screen and (min-width: 640px) {
    div.industries {
        grid-template-columns: 1fr 1fr;
    }
    div.categories {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (min-width: 768px) {
    div.industries {
        grid-template-columns: 1fr 1fr 1fr;
    }
    div.configurator {
        flex-direction: row;
        align-items: center;
    }
}