.album-caption {
	width: 100%;
    margin: 15px;
    padding: 0;
}
.album-caption>h2 {
	margin: 0;
    padding: 0;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    font-family: 'Philosopher', sans-serif;
}

.pre-picture>.card {
	margin-bottom: 1rem;
}
.pre-picture>.card:hover {
	box-shadow: 0 0 8px 0 rgb(0 0 0 / 50%);
}
.pre-picture>.card>h2 {
	padding: 0 10px;
	font-size: 17px;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	font-family: 'Philosopher', sans-serif;
}
.pre-picture>.card>.picture {
	margin: 5px;
	align-self: center;
}
.pre-picture>.card>.picture>a>img {
	transition: .3s;
    border-radius: .25rem;
	max-width: 100%;
    height: 189px;
    border: 1px solid #eeeeee;
    padding: 5px;
    cursor: pointer;
}
.pre-picture>.card:hover>.picture>a>img {
	border: none;
	padding: 0;
}
.pre-picture>.card>.picture>iframe {
	max-width: 100%;
	height: 202px;
	border-radius: .25rem;
}

/* Кнопка "Наверх" */
#GoTop {
    display: block;
    background-color: transparent;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: #17a2b8;
    text-align: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
    z-index: 9999;
    cursor: pointer;
}
#GoTop:before {
    font-family: sans-serif;
    font-size: 30px;
    position: absolute;
    width: 40px;
    height: 40px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
#GoTop.show { opacity: 0.5; }
#GoTop svg { margin-top: 8px; }

@media (max-width: 1199px) {
	.pre-picture>.card>.picture>a>img {
		height: 245px;
	}
	.pre-picture>.card>.picture>iframe {
		height: 238px;
	}
}

@media (max-width: 991px) {
	.pre-picture>.card>.picture>a>img {
		height: 181px;
	}
	.pre-picture>.card>.picture>iframe {
		height: 194px;
	}
}

@media (max-width: 767px) {
	.pre-picture>.card>.picture>a>img {
		height: auto;
	}
	.pre-picture>.card>.picture>iframe {
		height: 290px;
	}
}

