

/* Start:/local/components/skadium/include.block/templates/phead/style.css?17899935601651*/
.phead {
  border-bottom: 1px solid #E9E9E9;
  padding-top: 50px;
  padding-bottom: 25px;
  margin-bottom: 30px;
}
.phead-wrap{
  position: relative;
  padding-left: 200px;
}
.phead h1{
  font-family: var(--font-family-h);
  font-size: 50px;
  font-weight: 400;
  line-height: 1.4;
}
.phead-back{
  position: absolute;
  top: 15px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: #F9F9F9;
  cursor: pointer;
  transition: opacity .2s;
}
.phead-back:hover{
  opacity: .7;
}
.phead-back span{
  display: none;
}
.phead._center .phead-wrap{
  padding-left: 0;
}
.phead._center .phead-content{
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1540px) {
  .phead-wrap {
    padding-left: 160px;
  }
}
@media (max-width: 1260px) {
  .phead-wrap {
    padding-left: 140px;
  }
  .phead-back {
    top: 8px;
  }
  .phead h1{
    font-size: 40px;
  }
}
@media (max-width: 1060px) {
  .phead {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 24px;
  }
  .phead-wrap {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .phead-back {
    position: static;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    width: auto;
    height: auto;
    display: inline-flex;
    background: transparent;
  }
  .phead-back svg{
    display: none;
  }
  .phead-back span{
    display: inline;
  }
  .phead h1 {
    font-size: 30px;
    line-height: 1.1;
  }
}
/* End */


/* Start:/local/templates/s1/components/bitrix/system.pagenavigation/.default/style.css?17899935602052*/
.pagination {
	margin-top: 60px;
	display: flex;
	gap: 30px;
}
.pagination-more {
	order: 1;
}
.pagination-btn-more {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	height: 44px;
	background: #1E1E1E;
	padding: 0 24px;
	color: #fff;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	transition: color .2s, background .2s;
}
.pagination-btn-more:hover{
	background: #000;
}
.pagination-list {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.pagination-list-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding-left: 5px;
	padding-right: 5px;
	text-decoration: none;
	font-size: 14px;
	font-family: var(--font-family-h);
	cursor: pointer;
	transition: color .2s, background .2s, border .2s, box-shadow .2s, opacity .2s;
}
span.pagination-list-link span{
	opacity: .5;
}
.pagination-pn{
	min-width: 106px;
}
.pagination-pn-link {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding-left: 24px;
	padding-right: 24px;
	text-decoration: none;
	border-radius: 10px;
	border: 1px solid #eee;
	gap: 8px;
	transition: color .2s, background .2s, border .2s, box-shadow .2s, opacity .2s;
}
.pagination-pn-link:hover{
	opacity: .7;
}
.pagination-pn-link svg {
	display: none;
	position: relative;
	top: 1px;
	width: 16px;
	height: auto;
	stroke: currentColor;
}

@media (max-width: 1060px) {
	.pagination {
		margin-top: 40px;
		flex-direction: column;
		gap: 0;
	}
	.pagination-pn {
		display: none;
	}
	.pagination-num {
		width: calc(100% + 40px);
		margin: 0 -20px;
		padding: 0 20px;
		overflow: auto;
	}
	.pagination-num::-webkit-scrollbar {
		width: 0;
		height: 0;
		background: transparent;
	}
	.pagination-list {
		display: flex;
	}
	.pagination-more {
		width: 100%;
	}
	.pagination-btn-more {
		width: 100%;
	}
}

/* End */


/* Start:/local/components/skadium/include.block/templates/collaboration-item/style.css?1789993560652*/
.collaboration-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  cursor: pointer;
  transition: opacity .2s;
}
.collaboration-item:hover{
  opacity: .7;
}
.collaboration-item-media {
  position: relative;
  aspect-ratio: 1/1;
  background: #f9f9f9;
  overflow: hidden;
}
.collaboration-item picture {
  display: contents;
}
.collaboration-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: darken;
}
.collaboration-item picture.cover img{
  object-fit: cover;
}
.collaboration-item-name {
  font-family: var(--font-family-h);
  line-height: 1.4;
}


/* End */


/* Start:/local/components/skadium/page/templates/collaborations/assets/css/index.css?1789993560378*/
.page-content > .list{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 1060px) {
  .page-content > .list{
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
  }
}
@media (max-width: 600px) {
  .page-content > .list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* End */
/* /local/components/skadium/include.block/templates/phead/style.css?17899935601651 */
/* /local/templates/s1/components/bitrix/system.pagenavigation/.default/style.css?17899935602052 */
/* /local/components/skadium/include.block/templates/collaboration-item/style.css?1789993560652 */
/* /local/components/skadium/page/templates/collaborations/assets/css/index.css?1789993560378 */
