:root{
    --zielony: #4C9247;
    --szary: #d4d3d3;

}

 .ikonki{
    width: 100%;
    height: auto;
    padding-bottom: 10px;
    margin-bottom: 20px;

 }

 .ikony{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 80%;
    margin: auto;
    margin-top: 30px;
 }
 .ikonka{
    width: 33%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding-bottom: 20px;
 }

 .svg{
    width: 100px;
    height: 100px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 100%;
border: solid 5px var(--zielony);
margin-bottom: 20px;
 }

 .svg img {
    width: 50%;
    height: 50%;
    object-fit: contain;
 }

.svg:hover img{
    width: 40%;
    height: 40%;
    
}
.svg:hover{
    border: solid 5px var(--szary);
}

.strzalka{
    margin: auto;
    background-color: var(--zielony);
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    animation: pulse 2s infinite;
    transform: scale(1);
}

@keyframes pulse {
	0% {
		/* transform: scale(0.95); */
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
	}

	70% {
		/* transform: scale(1); */
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}

	100% {
		/* transform: scale(0.95); */
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}

.strzalka i {
    color: white;
    cursor: pointer;
}

.strzalka:hover i {
    transform: scale(1.4);

}
	.svg i {
    font-size: 25px;
}

.oferta{
	margin-top: 0px !important;
	margin-bottom: 50px !important;
}


@media screen and (max-width: 911px){
	.ikonka {
    width: 100%;
}
}