/*Галерея*/

.carousel-inner
{
/*	padding: 20px;*/
}
.gallery-container {
	background: white;
/*	overflow: hidden;*/
	margin-bottom: 25px;
/*	min-height: 550px;*/
/*	padding: 10px;*/
}
.gallery-slider {
/*            height: 560px;*/
	overflow: hidden;
	position: relative;
/*            background: white;*/
	border-radius: 20px;
/*	width: 100%;*/
	box-shadow: 10px 4px 4px rgba(0, 0, 0, 0.07);
        }

        .gallery-item {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-item img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
        }


        .tags-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }
        .collection-tag {
            padding: 10px 20px;
            background: #338C79;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            color: #FFFFFF;
			font-family: 'Open Sans';
			font-style: normal;
			font-size: 14px;
			line-height: 22px;
			border-bottom:2px solid  #338C79;
			border-right:2px solid  #338C79;
        }

        .collection-tag:hover {
            background: #205D50;
            transform: translateY(-2px);
        }
        .collection-tag.active {
            background: #205D50;
            border-bottom:2px solid #338C79;
            border-right:2px solid  #338C79;
        }
        
       
        .carousel-control-prev, .carousel-control-next {
            width: 45px;
            height: 45px;
            background: #338C79;
            border-radius: 50%;
            top: unset;
            transform: translateY(-50%);
            opacity: 1;
            transition: all 0.3s ease;
        }

        .carousel-control-prev.control-reverse-galery
        {
        	left: 20px;
            right: unset;
        }
        .carousel-control-next.control-reverse-galery
        {
        	 left: 70px !important;
        }
        .carousel-control-prev {
            right: 70px;
            left: unset;
        }
        .carousel-control-next {
            right: 20px !important;
        }
        .carousel-control-prev:hover, .carousel-control-next:hover {
            opacity: 0.8;
            background: #205D50;
        }
  

        @media (max-width: 992px) {
            .gallery-slider {
                height: 284px;
            }
             .carousel-control-prev, .carousel-control-next {
             	top:85%;
             }
        }


        @media (max-width: 768px) {
            .gallery-slider {
                height: 430px;
            }
            .collection-info {
                height: auto;
            }

            .carousel-control-prev, .carousel-control-next {
             	top:80%;
             }
        }
        @media (max-width: 520px) {
              .gallery-slider {
                height: 284px;
            }
        }

.promo-galery-text
{
margin-top: 60px;	
font-family: 'Open Sans';
font-style: italic;
font-weight: 400;
font-size: 16px;
line-height: 22px;
color: #333333;
}        