.badges_4_svg {
    padding: 60px 0 0 0;
    max-width: 1300px;
}

.badges_4_svg .garden_left,
.badges_4_svg .urban_right,
.badges_4_svg .industrial_middle,
.badges_4_svg .panorama_middle {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    /*min-width: 33%;*/
    /*max-width: 33%;*/
    flex-direction: column;
    text-align: center;
    cursor: pointer;
}


.badges_4_svg .gardencontainer,
.badges_4_svg .urbancontainer,
.badges_4_svg .industrialcontainer,
.badges_4_svg .panoramacontainer {
    min-width: 110px;
    max-width: 110px;
}

.badges_4_svg .garden_style,
.badges_4_svg .urban_style,
.badges_4_svg .industrial_style,
.badges_4_svg .panorama_style {
    width: 110px;
    height: 110px;
    position: relative;
}

.badges_4_svg .garden_style {
    opacity: 0.5
}

.badges_4_svg .urban_style {
    opacity: 0.5
}

.badges_4_svg .industrial_style {
    opacity: 0.5
}

.badges_4_svg .panorama_style {
    opacity: 0.5
}

.badges_4_svg .active .garden_style,
.badges_4_svg .active .urban_style,
.badges_4_svg .active .industrial_style,
.badges_4_svg .active .panorama_style {
    opacity: 1;
}

.garden_style {
    background-image: url(../images/garden.svg);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    width: 140px;
    height: 140px;
    margin: 0 auto 15px auto;
}

.urban_style {
    background-image: url(../images/urban.svg);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    width: 140px;
    height: 140px;
    margin: 0 auto 15px auto;
}

.industrial_style {
    background-image: url(../images/industrial.svg);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    width: 140px;
    height: 140px;
    margin: 0 auto 15px auto;
}

.panorama_style {
    background-image: url(assets/images/panorama.svg);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    width: 140px;
    height: 140px;
    margin: 0 auto 15px auto;
}


.badges_4_svg .active .garden_style:after {
    content: '';
    animation: pulse_garden 1s infinite;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    transform: scale(1);
}

.badges_4_svg .active .urban_style:after {
    content: '';
    animation: pulse_urban 1s infinite;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    transform: scale(1);
}

.badges_4_svg .active .industrial_style:after {
    content: '';
    animation: pulse_industrial 1s infinite;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    transform: scale(1);
}

.badges_4_svg .active .panorama_style:after {
    content: '';
    animation: pulse_panorama 1s infinite;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    transform: scale(1);
}

.badges_4_svg h2 p,
.badges_4_svg h2 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    color: #000000;
}

@keyframes pulse_garden {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(164, 192, 142, 0.8);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0px 15px rgba(164, 192, 142, 0.8);
    }

    100% {
        transform: scale(1.3);
        box-shadow: 0 0 0px 15px rgba(164, 192, 142, 0.0);
    }
}

@keyframes pulse_urban {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(75, 125, 140, 0.8);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0px 15px rgba(75, 125, 140, 0.8);
    }

    100% {
        transform: scale(1.3);
        box-shadow: 0 0 0px 15px rgba(75, 125, 140, 0);
    }
}


@keyframes pulse_industrial {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(91, 104, 112, 0.8);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0px 15px rgba(91, 104, 112, 0.8);
    }

    100% {
        transform: scale(1.3);
        box-shadow: 0 0 0px 15px rgba(91, 104, 112, 0.0);
    }
}


@media only screen and (min-width: 768px) {
    .badges_4_svg .gardencontainer,
    .badges_4_svg .urbancontainer,
    .badges_4_svg .industrialcontainer,
    .badges_4_svg .panoramacontainer {
        min-width: 140px;
        max-width: 140px;
    }

    .badges_4_svg .garden_style,
    .badges_4_svg .urban_style,
    .badges_4_svg .industrial_style,
    .badges_4_svg .panorama_style {
        width: 140px;
        height: 140px;
    }
}

@media only screen and (min-width: 1200px) {
    .badges_4_svg .gardencontainer,
    .badges_4_svg .urbancontainer,
    .badges_4_svg .industrialcontainer,
    .badges_4_svg .panoramacontainer {
        min-width: 180px;
        max-width: 180px;
    }

    .badges_4_svg .garden_style,
    .badges_4_svg .urban_style,
    .badges_4_svg .industrial_style,
    .badges_4_svg .panorama_style {
        width: 180px;
        height: 180px;
        position: relative;
    }
}