#categories{
    padding-bottom: 50px;
}

#categories .container {
    width: 1252px !important;
}

#categories h2{
    font-size: 32px;
    margin-top: 67px;
    margin-bottom: 41px;
}

#categories h2 span {
    font-size: 52px;
}

#categories .inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.categories-item {
    height: 313px;
    text-decoration: none !important;
    overflow: hidden;
    padding: 9px 11px 0 11px;
    border: 1px solid transparent;
    transition: all 200ms ease-out;
}
.categories-item:hover {
    border-color: var(--yellow);
}
.categories-item img {
    transition: all 200ms ease-out;
    width: 100%;
}
.categories-item:hover img {
    box-shadow: 0px 5px 7px -6px #000000;
}
.categories-item:hover p {
    color: var(--yellow);
}
.categories-item:hover p::after {
	background-image: url(../../images/icons/icon-arrow-right-yellow.png);
}

.categories-item .categories-image img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.categories-item p {
    font-size: 20px;
    color: var(--dark-blue);
    margin-top: 16px;
}

.categories-item p::after {
    top: 7px;
}


@media screen and (max-width: 567px ) {
    #categories {
        padding-bottom: 0;
    }
    #categories h2 {
        font-size: 20px;
        line-height: 35px;
        max-width: 300px;
        margin: 25px auto 18px auto;
    }
    #categories h2 span {
        font-size: 40px;
    }
    .categories-item {
        height: 210px;
        padding: 0;
    }
    .categories-item:hover {
        border-color: transparent;
    }
    .categories-item p {
        margin-top: 5px;
    }
    .categories-item p::after {
        top: 50%;
    }
}