/* ----------------------------------------------------------------------------------- */
:root {
    --block-width: 304px;
    --block-additional-width: 304px;
}
/* ----------------------------------------------------------------------------------- */
.block > * {
    border-left: none;
    border-right: none;
    background-color: transparent;
    box-shadow: none;
}
.osnPart{
	box-shadow: none;
}
.bodyOsnBlock > div{
	background-color: transparent !important;
}

.page2 .block2 > div{
	background-color: transparent;
}

.nav>div{
    border-radius: 0px;
    border-bottom: none;
}
.osnPart .nav div{
	margin-bottom: 0px;
}
.project-info > *{
	border-top: none;
	background-color: white;
}
.page3 .about > div{
	padding: 0px;
}
.page3 .about > div .buttons {
    display: flex;
    justify-content: center;
}
.page3 .about .button {
    width: 100%;
    height: 50px;
    border: 1px solid var(--main-bg-color);
    color: var(--main-bg-color);
    text-align: center;
    background-color: #fbfbfb;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .3s ease all;
    max-width: none;
    margin-top: 0px;
}
.page3 .about .button:hover {
    background-color: var(--main-bg-color);
    color: #fbfbfb;
}

.page3 .about-mine>div:first-child {
    padding: 30px;
	padding-left: 20px; /*Добавленно*/
} 
.page3 .about-mine>div:last-child {
    display: flex;
    flex-direction: column;
    padding: 30px 30px 30px 0;
}
.osnPart .nav div{
	width: 100%;
	padding: 10px 20px;
    max-width: 100vw;
    overflow: auto;
}

.project-container{
	padding: 0px;
	box-shadow: 0 0 20px rgb(142 78 199 / 20%);
    overflow: hidden;
}
.season-info {
	/*padding-left: 20px;*/
	padding-right: 20px;
}

.page3 .block2 .items {
    display: grid;
    grid-template-columns: repeat(auto-fill, var(--block-width));
    grid-template-columns: repeat(auto-fill, calc(var(--block-width) - 10px));
    grid-gap: 1rem;
    justify-content: space-between;
}
.page3 .block2 .items>* .img {
    width: calc(var(--block-width) - 10px) !important;
    height: calc(calc(var(--block-width) - 10px) / 1.78) !important;
    border-radius: 0px;
    background-size: 100% 100%;
    transition: .25s ease background-size;
}
.project-container .block2 > div{
	padding-left: 15px;
	padding-right: 15px;
}
.project-container .page3 .block2 .items > *{
	max-width: none;
}
.project-container .block2 .items>* .name {
    font-size: 15px;
    font-family: 'Roboto Light', sans-serif;
    /*white-space: nowrap;*/
    overflow: hidden;
    text-overflow: ellipsis;
    color: #843dc2;
    padding-top: 5px;
}
.block2 .items > *:hover {
    text-decoration: none;
}
.block2 .items > *:hover .img{
     background-size: 101% 101%;
}
.page3 .block2 > div:last-child{
	border-bottom: none;
}
/* ----------------------------------------------------------------------------------- */
@media screen and (min-width: 900px){
    .dark.page3 .about .button{
        width: 50%;
    }
}
@media screen and (max-width: 900px){
    .page3 .about-mine .poster{
        width: 100%;
        padding: 0px !important;
    }
    .page3 .about .image img{
        margin-left: 0px;
    }
    .page3 .about-mine>div:last-child{
        padding: 0px;
        padding-top: 10px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .page3 .about .zag{
        margin-top: 0px;
        font-size: 20px;
    }
    .block2 .items {
        justify-content: space-around !important;
        align-items: flex-start;
        grid-gap: 0rem !important;
        grid-template-columns: repeat(auto-fill, var(--block-width) - 10px);
    }
    .page3 .block2 .items > *{
        margin-bottom: 0px;
        margin-top: 15px;
    }
    .page3 .block2 .items>* .img {
        width: calc(var(--block-width) - 4px) !important;
        height: calc(calc(var(--block-width) - 4px) / 1.78) !important;
    }
}
@media screen and (max-width: 700px){
    .block2 .items {
        justify-content: center !important;
    }
}
/* ----------------------------------------------------------------------------------- */
.dark.page3 .about .button{
    color: white;
}
.dark.page3 .about .button:first-child{
    background-color: #3d2454;
}
.dark.page3 .about .button:last-child{

}
.dark .project-container .block2 .items>* .name{
    color: #d0a2f9;
}
/* ----------------------------------------------------------------------------------- */
.page3 .about .button.additional{
    border-right: none;
}
/* ----------------------------------------------------------------------------------- */
.block2 .items > * .img .hover i{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    transition: .2 ease height;
    height: calc(100% - 0px);
}
.block2 .items > * .img.active .hover i{
    height: calc(100% - 40px);
}
.block2 .items > * .img .hover i:before{
    content: "" !important; 
    width: 40px;
    height: 40px;
    display: block;
    border: 2px solid #bd79f7;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    transform: translateX(-50%) translateY(-50%); 
    transition: all .1s ease 0s;
    opacity: 0;
    pointer-events: none;
}
.page3 .block2 .items > *:hover .img .hover i:before{
    opacity: 1;
}
.page3 .block2 .items .img .hover i:after{
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background: url("/imgs/play.svg") no-repeat 50% transparent;
    background-size: auto 14px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -7px;
    margin-top: -7px;
    opacity: 0;
    transition: all .1s ease 0s;
}
.page3 .block2 .items > *:hover .img .hover i:after{
    opacity: 1;
}
/* ----------------------------------------------------------------------------------- */
.blockAdditional.block2{

}
/* ----------------------------------------------------------------------------------- */