.columns {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 43px;
}

.column {
    width: calc(100%/4.5);
}

.columns-1 {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.column-1 {
    width: calc(100%/4);
}

.news {
    width: 100%;
    padding: 20px;
}

.news>a>img {
    margin: 20px;
    margin-left: 0px;
    width: 320px;
    justify-self: center;
}

.news>a>.text {
    text-align: left;
}

footer {
    margin-top: 6px;
    margin-bottom: -200px;
}

.catalog {
    width: 100%;
}

.catalog>a>img {
    width: 100%;
    height: 180px;
}

.catalog-card {
    margin-top: -10px;
}

.catalog-card>.small-title {
    padding: 20px;
    word-wrap: break-word;
    text-wrap: pretty;
    color: whitesmoke;
}

.catalog-colour-1 {
    background-color: #9DAE1C;
}

.catalog-colour-2 {
    background-color: #148D71;
}

.catalog-colour-3 {
    background-color: #14638D;
}

.catalog-colour-4 {
    background-color: #0EB24A;
}

.catalog-0 {
    height: 257px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.change {
    display: flex;
    flex-direction: row;
    gap: 20px;

    font-family: "Exo 2", sans-serif;
    font-size: 24px;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    color: black;
    text-wrap: balance;
    text-align: center;
    cursor: pointer;
}

@media (any-hover: hover) {
    .news, .catalog {
        opacity: 1;
    }

    .news:hover, .catalog:hover {
        opacity: 0.8;
    }
}