.catalog-sections {
    margin-bottom: 60px;
}
.catalog-sections .item {
    width: 100%;
    margin-bottom: 20px;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    transition: all ease 0.5s;
    -moz-transform: scale(1.0, 1.0);
    -ms-transform: scale(1.0, 1.0);
    -webkit-transform: scale(1.0, 1.0);
    -o-transform: scale(1.0, 1.0);
    transform: scale(1.0, 1.0);
    font-family: var(--font-title);
}
.catalog-sections .item:hover {
    -moz-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
    -o-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
}

.catalog-sections .item .item-inner {
    position: relative;
}
.catalog-sections .item img {
    width: 100%;
    height: auto;
}
.catalog-sections .item img.main-image {
    position: relative;
    z-index: 1;
}
.catalog-sections .item img.hover-image {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    opacity: 0;
        -webkit-transition: all ease 0.25s;
        -moz-transition: all ease 0.25s;
        -o-transition: all ease 0.25s;
        -ms-transition: all ease 0.25s;
        transition: all ease 0.25s;
}
.catalog-sections .item:hover img.hover-image {
    opacity: 1;
}
.catalog-sections .item .item-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 15px;
    line-height: 1.25;
    color: var(--color-dark-green);
    z-index: 2;
}
.catalog-sections .item .item-content.second-content {
    opacity: 0;
    z-index: 3;
}
.catalog-sections .item:hover .item-content.first-content {
    opacity: 0;
}
.catalog-sections .item:hover .item-content.second-content {
    opacity: 1;
}
.catalog-sections .item .item-content .name {
    font-weight: bold;
    font-family: var(--font-title);
    text-transform: uppercase;
    font-size: 22px;
    margin-bottom: 25px;
}
.catalog-sections .item .item-content.second-content .name {
    color: #ffffff;
    font-size: 19px;
}
.catalog-sections .item .item-content.second-content .name .arrow {
    display: inline-block;
    vertical-align: top;
    width: 16px;
    height: 16px;
    background: url(right-arrow-white.svg) no-repeat center center;
    -o-background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -khtml-background-size: cover;
    background-size: cover;
    margin-top: 3px;
    margin-left: 12px;
}
.catalog-sections .item .item-content .short-text {
    font-size: 14px;
}
.catalog-sections .item .item-content.first-content {
    width:60%;
}
.catalog-sections .item .item-content .detail-link {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: inline-block;
    color: var(--color-green);
    vertical-align: bottom;
    padding-right: 13px;
    line-height: 1;
    background: url(right-arrow.svg) no-repeat right bottom 1px;
    -o-background-size: auto 10px;
    -webkit-background-size: auto 10px;
    -moz-background-size: auto 10px;
    -khtml-background-size: auto 10px;
    background-size: auto 10px;
    font-size: 15px;
}

@media screen and (max-width: 400px) {
    .catalog-sections .item .item-content .name {
        font-size: 19px;
        margin-bottom: 18px;
    }
}
@media screen and (min-width: 576px) {
    .catalog-sections {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -10px 60px -10px;
    }
    .catalog-sections .item {
        width: 50%;
        padding: 0 10px;
    }
}
@media screen and (min-width: 992px) {
    .catalog-sections .item {
        width: 33.333%;
    }
}
@media screen and (min-width: 576px) and (max-width: 992px) {
    .catalog-sections .item .item-content .name {
        font-size: 19px;
        margin-bottom: 18px;
    }
}

@media screen and (min-width: 1200px) {
    .catalog-sections .item {
        width: 25%;
    }
    .catalog-sections .item .item-content {
        padding: 25px;
    }
    .catalog-sections .item .item-content .detail-link {
        bottom: 25px;
        left: 25px;
    }

}