.catalog-sections {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
    position: relative;
    max-width: 1200px;
}

.catalog-sections > * {
    background: #f7f7f7;
    flex: 0 0 30%;
    position: relative;
    margin: 6px;
}

.catalog-section--wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    z-index: 6;
}

.catalog-section > a {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
}

.catalog-section--image-wrapper{
    height: 200px;
    margin: 25px 0;
}

.catalog-section--image-wrapper img {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.load-transition {
    transition: opacity .3s linear;
    opacity: 0;
}

.catalog-section--wrapper {
    padding: 0 20px 20px 20px;
}

.catalog-section--bold-title {
    text-align: center;
}

.catalog-section--bold-title b{
    text-transform: uppercase;
    display: block;
}

.catalog-section--background {
    position: absolute;
    height: 180px;
    width: 120%;
    background: #ff6100;
    bottom: -90px;
    left: -10%;
    z-index: -1;
}

.catalog-sections > .catalog-section--background {
    background: #ffffff;
}

.catalog-sections .catalog-section-text {
    flex: 100%;
    margin: 40px 45px 0 45px;
    padding: 0 20px 20px 20px;
}

@media (max-width: 900px) {
    .catalog-sections {
        max-width: 600px;
    }

    .catalog-sections > * {
        min-width: calc(50% - 12px);
    }

    .catalog-section--wrapper {
        padding: 0 5px 5px 5px ;
    }
    
    .catalog-sections .catalog-section-text {
        margin: 25px 6px 6px 6px;
        padding: 0 10px 10px 10px;
}

@media (max-width: 616px) {
    .catalog-section--background {
        display: none;
    }
    .catalog-section--image-wrapper{
        height: 100px;
        padding: 0 10px;
    }
}
