.category_wall {
    position: relative;
    padding: 50px 0 100px;
}

.category_wall:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 350px;
    background: #f2f5f7;
    bottom: 100px;
}

.category_wall .section_title {
    margin: 50px 0 10px;
}

.section_title-desc {
    max-width: 700px;
    margin-bottom: 50px;
}

.category_wall-first_item-image {
    position: relative;
    margin: 5rem 0 2rem;
    overflow: hidden;
}

.category_wall-first_item-image img {
    transform: scale(1);
    transition: all .7s ease-in;
    -webkit-transition: all .7s ease-in;
    -moz-transition: all .7s ease-in;
    -ms-transition: all .7s ease-in;
    -o-transition: all .7s ease-in;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.category_wall-first_item-image:hover img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.category_wall-button {
    position: relative;
    width: fit-content;
    margin: 30px auto;
}

.category_wall-first_item {
    position: relative;
}

.category_wall-second_item {
    height: 100%;
}

.category_wall-second_item-image {
    height: 100%;
    max-height: 650px;
    object-fit: cover;
    overflow: hidden;
}

.category_wall-second_item-image img {
    transition: all .7s ease-in;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transition: all .7s ease-in;
    -moz-transition: all .7s ease-in;
    -ms-transition: all .7s ease-in;
    -o-transition: all .7s ease-in;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.category_wall-second_item-image:hover img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.category_wall-button a {
    position: relative;
    display: block;
    width: fit-content;
    font-size: 21px;
    color: #000000;
    padding: 10px 0;
    min-width: 350px;
    text-align: left;
    transition: all .4s ease-out;
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
}

.category_wall-button a:before {
    position: absolute;
    content: '';
    width: 50px;
    height: 50px;
    background-color: #242728;
    border-radius: 50%;
    background-image: url(../../icons/right-up.png);
    background-size: 21px;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    right: 0;
    transition: all .4s ease-out;
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
}

.category_wall-button a:after {
    position: absolute;
    content: '';
    width: 100px;
    height: 1px;
    background-color: #242728;
    top: 50%;
    right: 60px;
}

.category_wall-button a:hover:before, .category_wall-button a:hover:after {
    background-color: var(--primary-color);
}

.category_wall-third_items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 30px;
    row-gap: 30px;
    padding-top: 30px;
}

.category_wall-third_items-content {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.category_wall-third_items-content img {
    width: 100%;
    height: 410px;
    object-fit: cover;
}

.category_wall-third_items-content img {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transition: all .7s ease-in;
    -webkit-transition: all .7s ease-in;
    -moz-transition: all .7s ease-in;
    -ms-transition: all .7s ease-in;
    -o-transition: all .7s ease-in;
}

.category_wall-third_items-content:hover img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.category_wall-third_items-content-title, .category_wall-title {
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: 'Nivea';
    font-size: 1.5rem;
    letter-spacing: 2px;
}

@media(max-width:490px) {
    .category_wall-first_item-image, .category_wall-second_item-image {
        margin: 10px 0;
        max-height: 350px;
    }

    .category_wall-third_items-content {
        max-height: 350px;
    }
}