@media (max-width: 885px) {
	.header__actions .header-social {
		display: none;
	}
}

.single-content__container .content-block__text a {
	color: #57ccc3;
}
.single-content__container .content-block__text a:hover {
	text-decoration: underline;
}

.gallery-content__items {
    display: grid;
	grid-template-columns: repeat(3,1fr);
    column-gap: 1.5rem;
    row-gap: 1.5rem;
}
@media (max-width: 768px) {
	.gallery-content__items {
    display: grid;
	grid-template-columns: repeat(2,1fr);
    column-gap: 1rem;
    row-gap: 1rem;
}
}
.gallery-content__items .item-gallery__image {
    aspect-ratio: 3 / 4;
}
.gallery-content__items .item-gallery__image img {
    border-radius: 10px;
}
.content-block h2 {
	line-height: 1.3;
}
@media (max-width: 768px) {
	.content-block h2 {
    font-size: 30px;
}
}


.multbtm {
   position: fixed;
   right: 20px;
   bottom: 50px;
   display: flex;
   flex-direction: column;
   align-items: flex-end;
   z-index: 110;

}


.multbtm__btm {
	width: 70px;
	height: 70px;
	background: #25bd20;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 200ms ease-out;
	animation: animation__btm 3s linear infinite ;
}

.multbtm__btm svg {
	width: 30px;
	height: 30px;
}

@keyframes animation__btm {
	0% {
		box-shadow: 0 0 0 0 #25bd20, 0 0 0 0 rgba(41, 211, 41, 0.74);
	}
	40% {
        box-shadow: 0 0 0 13.62667px rgba(41, 211, 41, 0), 0 0 0 6.81333px rgba(41, 211, 41, 0.705);
	}
	80% {
		box-shadow: 0 0 0 27.25333px rgba(41, 211, 41, 0), 0 0 0 13.62667 rgba(41, 211, 41, 0.137) ;
	}
	100% {
		box-shadow: 0 0 0 34.06667px rgba(41, 211, 41, 0), 0 0 0 27.25333px rgba(41, 211, 41, 0);
	}
}

