body {
    color: var(--white-color);
    background-color: var(--black-color);
    background-image: url("../gmas-images/adjenta-img.png");
    background-repeat: no-repeat;
    background-position: left 200px;
    background-attachment: fixed;
    line-height: 145%;
    font-family: 'Gilroy', sans-serif;
    font-weight: 500;
    font-style: normal;
    position: relative;
}

.header {
    padding: 37px 0;
    position: relative;
    z-index: 23;
}

.header:after {
    background: rgba(29,29,29,0.8) url("../gmas-images/bg.png");
    filter: blur(5px);
    width: 100%;
    height: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    -webkit-transition: all .5s linear;
    transition: all .5s linear;
    z-index: -1;
}
.header:before {
    content: "";
    background: linear-gradient(to right, var(--grey-color), var(--green-color));
    height: 1px;
    width: 0;
    -webkit-transition: all 1.5s linear;
    transition: all 1.5s linear;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
}

.header.is--fixed:after{
    height: 100%;
}
.header.is--fixed:before{
    width: 100%;
}
.header.is--fixed {
    position: fixed;
    top: 0;
    padding: 10px 0;
    /*background: var(--dark-color);*/
    width: 100%;
}

.header ul {
    margin-left: auto;
    margin-right: auto;
}

.header ul li {
    position: relative;
    margin-left: 47px;
    /*width: 100px;*/
    /*width: calc(100% + 20px);*/
}

.header ul li:first-of-type {
    margin-left: unset;
}

.header ul li i {
    transition: all 0.5s linear;
    height: 10px;
    width: 0;
    display: block;
    background: var(--green-color);
    position: relative;
    top: 1px;
    right: 2px;
}

@-webkit-keyframes headerHover {
    50% {
        width: 15px;
    }
    70% {
        width: 22px;
    }
    to {
        width: 17px;
    }
}

@keyframes headerHover {
    50% {
        width: 15px;
    }
    70% {
        width: 22px;
    }
    to {
        width: 17px;
    }
}

.header ul li a {
    z-index: 3;
    position: relative;
    display: flex;
    align-items: center;
    text-transform: lowercase;
}

.header ul li a > span {
    color: var(--pink-color)
}

.header.is--fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 20px 0;
}

.header.is--fixed .logo {
    max-width: 80px;
}

.header .logo svg {
    background: var(--green-color);
    border-radius: 30px 30px 0 10px;
}

.footer .logo svg {
    /*background: var(--white-color);*/
    /*border-radius: 30px 30px 0 10px;*/
}

.header.is--fixed .header-right {
    width: 100%;
}

.header.is--fixed .header-right h1 {
    display: none;
}

.header.is--fixed:after {
    -webkit-transform: unset;
    transform: unset;
}

.btn-top,
.header .logo,
.header ul li b,
.header ul li:after,
.social a,
.social a > svg {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.social a {
    background: var(--grey-color);
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    position: relative;
}

.social a:before {
    content: "";
    width: 20px;
    height: 20px;
    transform: scale(0%);
    border-radius: 100%;
    background: var(--grey-color);
    box-shadow: 0 4px 15px 0 var(--green-color);
    position: absolute;
    left: 5px;
    top: 2px;
}

.social a > svg {
    fill: var(--green-color)
}

@-webkit-keyframes scaleSocial {
    30%, 70% {
        -webkit-transform: scale(1.7);
        transform: scale(1.7);
    }
    50% {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
    }
    to {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
}

@keyframes scaleSocial {
    30%, 70% {
        -webkit-transform: scale(1.7);
        transform: scale(1.7);
    }
    50% {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
    }
    to {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
}

.social a:first-child {
    margin-left: 0;
}

.mobile-menu {
    display: none;
}

.top h1 {
    font-size: 230px;
    line-height: 184px;
}

.top h1 > span {
    display: block;
}

.top-text {
    max-width: 770px;
    font-size: 20px;
}

.top-date {
    margin: 8px 0 15px;
}

.top-text span {
    font-size: 24px;
}

.top-text span > b,
.top h1 {
    color: var(--green-color);
}

.top-img {
    flex-shrink: 0;
    position: relative;
    right: -120px;
    top: -180px;
    -webkit-animation: moveImg 5s linear infinite;
    animation: moveImg 5s linear infinite;
}

@-webkit-keyframes moveImg {
    50% {
        -webkit-transform: translateY(-10px) skewY(3deg) skewX(-2deg);
        transform: translateY(-10px) skewY(3deg) skewX(-2deg);
    }
}

@keyframes moveImg {
    50% {
        -webkit-transform: translateY(-10px) skewY(3deg) skewX(-2deg);
        transform: translateY(-10px) skewY(3deg) skewX(-2deg);
    }
}

.btn-top {
	z-index: 1;
    width: 515px;
    height: 158px;
    background: linear-gradient(to right, #4B4B4B, #FFFFFF);
    border-radius: 25px 0 0 25px;
    font-size: 74px;
    border-right: 2px dashed #FFFFFF;
    display: flex;
    align-items: center;
    position: relative;
    text-transform: uppercase;
    margin-top: 40px;
    margin-bottom: 40px;
    color: var(--dark-color);
    padding-left: 28px;
}

.btn-top img {
    position: absolute;
    right: -67px;
}

.btn-top:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: url("../gmas-images/bg.png");
    height: 100%;
    width: 100%;
}

.btn-top:before {
    content: "";
    width: 42px;
    height: 42px;
    display: block;
    border-radius: 100%;
    position: absolute;
    background: var(--black-color);
    box-shadow: 0 152px 0 var(--black-color);
    right: -21px;
    top: -21px;
}

.top .btn-top span {
    font-size: 74px;
    line-height: 100%;
}

.btn-top span:after {
    content: "";
    position: absolute;
    right: -91px;
    width: 89px;
    background: #ffffff url("../gmas-images/bg.png");
    top: 0;
    z-index: -1;
    border-radius: 0 25px 25px 0;
    height: 100%;
    pointer-events: none;
}

.marquee--2 {
    -webkit-filter: blur(5px);
    filter: blur(5px);
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
}

.marquee--1 {

    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
}

.marquee {
    font-size: 48px;
    font-weight: 900;
    height: 75px;
    display: flex;
    background: var(--green-color) url("../gmas-images/bg.png") repeat;
    color: var(--dark-color);
    align-items: center;
    top: 0;
    z-index: 3;
}

.marquee > div {
    -webkit-animation: animMarquee 30s linear infinite;
    animation: animMarquee 30s linear infinite;
}

.marquee .items {
    flex-shrink: 0;
    display: flex;
    counter-reset: item;
    justify-content: space-around;
    min-width: 100%;
}

.marquee .items span {
    display: block;
    position: relative;
    line-height: 100%;
}

.marquee .items span:before {
    content: "";
    position: absolute;
    left: 60%;
    width: 54px;
    height: 95px;
    background: url("../gmas-images/snowman.png") no-repeat center;
    background-size: contain;
    top: -20px;
}

.marquee .items span:nth-child(2):before {
    left: 40%;
    width: 39px;
    height: 69px;
}

@-webkit-keyframes animMarquee {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes animMarquee {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.marquee b {
    position: relative;
}

.marquee b:before {
    width: 253px;
    height: 45px;
    content: "";
    display: inline-block;
    margin-right: 10px;
    background: var(--green-color);
    margin-left: 20px;
}

.top {
    background: var(--black-color);
    position: relative;
/*     z-index: 3; */
}

.bottom-block {
    background: var(--dark-color);
    padding-bottom: 25px;
}

.adjenta-pass {
    color: var(--green-color);
    font-size: 48px;
    position: relative;
    bottom: -65px;
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
    animation: moveLR 2s linear infinite;
}

@keyframes moveLR {
    50% {
        transform: translateX(10px) rotate(-2deg);
    }
    /*50%{*/
    /*    transform: rotate(-2deg);*/
    /*}*/
    /*66%{*/
    /*    transform: translateX(-10px) rotate(-2deg);*/
    /*}*/
}

.adjenta:after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: url("../gmas-images/bg.png");
}

/*.adjenta-img{*/
/*    top: 180px;*/
/*    position: fixed;*/
/*}*/
/*.adjenta-img img{*/
/*    !*position: fixed;*!*/
/*    !*top: 0;*!*/
/*}*/
.adjenta-title {
    font-size: 65px;
    left: 0;
    right: 0;
    margin-left: auto;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
	width: 827px;
	margin-bottom: 50px;
}

.adjenta-list {
    width: 827px;
    z-index: 22;
    background: rgba(29, 29, 29, 1);
    /*padding: 52px 65px 55px 75px;*/
    position: relative;
    margin-left: auto;
}

.adjenta .adjenta-list {

    border-radius: 45px 45px 0 0;
    box-shadow: 15px -5px 4px 0 rgba(0, 0, 0, 0.8);
    padding: 52px 65px 0 75px;
}

.bottom-block .adjenta-list {
    padding-bottom: 55px;
    margin-top: -25px;
    z-index: 0;
    border-radius: 0 0 45px 45px;
    box-shadow: 15px 15px 4px 0 rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
}

.adjenta .adjenta-list:before {
    content: "";
    top: 70px;
    height: 1171px;
    width: 1px;
    background: var(--white-color);
    display: block;
    position: absolute;
    left: calc(50% + 5px);
}

.adjenta ul li {
    font-size: 18px;
    line-height: 24px;
    width: calc(50% - 40px);
    position: relative;
    text-align: right;
    margin-bottom: 10px;
}

.btn-grey {
    height: 85px;
    line-height: 85px;
    font-size: 40px;
    margin-top: 30px;
    width: 717px;
    background: url("../gmas-images/bg.png"), linear-gradient(rgba(186, 186, 186, 1), rgba(210, 210, 210, 1));
    border-radius: 21px;
    font-weight: 900;
    align-items: center;
    color: var(--dark-color);
    display: flex;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    flex-direction: column;
}

.btn-grey span {
    letter-spacing: 0.43em;
    transition: all 0.5s linear;
}

.adjenta ul li:before {
    width: 13px;
    height: 13px;
    border-radius: 100%;
    background: var(--green-color);
    content: "";
    position: absolute;
    top: 5px;
    right: -47px;
}

@-webkit-keyframes btnGrey2 {
    40% {
        margin-bottom: 50px;
    }
    60% {
        margin-bottom: 70px;
    }
    to {
        margin-bottom: 0;
    }
}

@keyframes btnGrey2 {
    40% {
        margin-bottom: 50px;
    }
    60% {
        margin-bottom: 70px;
    }
    to {
        margin-bottom: 0;
    }
}

.btn-grey i {
    font-style: normal;
    position: relative;
    margin-bottom: -84px;
    transition: all 0.5s linear;
    display: flex;
    align-items: center;
}

.btn-grey i > svg {
    margin-top: -10px;
}

.btn-grey i > svg:first-of-type {
    margin-right: 16px;
}

.btn-grey i > svg:last-of-type {
    margin-left: 16px;
}

.adjenta ul li:nth-child(odd):before {
    left: -46px;
    right: unset;
}

.adjenta ul li:nth-child(odd) {
    margin-left: auto;
    text-align: left;
}

.adjenta ul li span {
    font-size: 24px;
    color: var(--green-color);
    display: block;
}

.adjenta ul li p {

}

.adjenta ul li b {
    font-size: 48px;
    line-height: 100%;
    display: block;
}

.footer {
    padding: 80px 0 35px;
    background: var(--dark-color);
}

.footer > .container {
    z-index: 3;
}

.footer:after {
    z-index: 0;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    height: 315px;
    background: url("../gmas-images/footer.png") no-repeat right bottom;
    background-size: contain;
    width: 948px;
}

.footer-contact b {
    width: 107px;
    height: 107px;
    margin-right: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    flex-shrink: 0;
    overflow: hidden;
}

.footer-contact span {
    font-size: 32px;
}

.footer-contact i {
    font-family: 'Gilroy', sans-serif;
    font-size: 20px;
    font-style: normal;
    color: var(--green-color);
    display: flex;
    align-items: center;
}

.footer-contact i > svg {
    fill: var(--green-color);
    margin-right: 5px;
}

.footer ul {
    margin-left: 60px;
    text-transform: lowercase;
}

.footer ul li {
    line-height: 130%;
}

.footer-link {
    margin-top: 40px;
    color: var(--green-color);
}

.footer .social {
    margin-top: auto;
}


.artist-list .slick-track{
	display: flex;
}
.artist-list {
    margin-left: auto;
	max-width: 1074px;
	width: calc(100% - 244px);
	overflow: hidden;
}

.artist-list h3 {
    bottom: 25px;
    padding-left: 30px;
    color: rgba(239, 239, 239, 0.2)
}

.artist-list li:hover h3 {

    color: var(--green-color);
}

.artist-list h3:before {
    width: 8px;
    height: 100%;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    display: inline-block;
    content: "";
    left: -38px;
    position: absolute;
    background: #080808;
}

.artist-list li:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    transform: scale(1.1)
}

.artist-list li img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.artist-list li {
    flex-shrink: 0;
    height: 476px;
    position: relative;
    width: 338px;
    overflow: hidden;
margin-right: 30px;
}

.artist-list li h3 > span {
    position: relative;
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
    z-index: 2;
}

.artist-list li:hover h3 > span {
    bottom: 10px;
}

.artist-list li:hover h3:before {
    width: calc(100% + 38px);
}

.artist-text {
    max-width: 244px;
    line-height: 27px;

}

.artist-text b {
    display: block;
    margin-top: 25px;
}

.artists {
    background: var(--black-color);
	padding-bottom:125px;
	padding-top: 150px;
}

.artists h3 {
    font-size: 32px;
}

.artists h2 {
	font-family: 'Gilroy', sans-serif;
    font-size: 65px;
	margin-bottom: 25px;
}

.artists h2 > span {
    color: var(--green-color)
}

.artist-arrows{
	margin-top: auto;
}
.artist-arrows i.slick-disabled,
.artist-arrows i.slick-disabled:before{
	border-color: var(--grey-color);
}
.artist-arrows i {
    width: 59px;
    height: 59px;
    border: 2px solid var(--green-color);
    border-radius: 100%;
    display: block;
    position: relative;
    cursor: pointer;
}

.artist-arrows i:first-child {
    margin-right: 10px;
}

.artist-arrows i:before {
    content: "";
    position: absolute;
    border-top: 2px solid var(--green-color);
    border-left: 2px solid var(--green-color);
    display: block;
    width: 10px;
    height: 10px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: calc(50% - 5px);
    left: calc(50% - 5px)
}

.artist-arrows i:last-of-type:before {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
/*hovers*/
@media screen and (min-width: 767px) {

    .header ul li:hover a {
        color: var(--green-color);
    }

    .header ul li:hover i {
        width: 17px;
        -webkit-animation: headerHover .5s linear forwards;
        animation: headerHover .5s linear forwards;
    }

    .footer ul li:hover a {
        color: var(--green-color)
    }

    .social a:hover {
        background: transparent;
    }

    .social a:hover:before {
        -webkit-transform: unset;
        transform: unset;
    }

    .social a:hover > svg {
        -webkit-animation: scaleSocial 1s linear forwards;
        animation: scaleSocial 1s linear forwards;
    }


    .btn-top:hover {
        background: linear-gradient(to right, var(--green-color), var(--white-color));
        border-right-color: var(--black-color);
    }

    .btn-top:hover:before {
        box-shadow: 0 152px 0 var(--black-color), 65px 20px 0 var(--black-color);
    }

    .btn-top:hover:after {
        display: none;
    }

    .btn-top:hover img {
        -webkit-transform: rotate(30deg) translate(30px, 15px);
        transform: rotate(30deg) translate(30px, 15px);
    }

    .btn-top:hover span:after {
        -webkit-transform: rotate(30deg) translate(30px, 15px);
        transform: rotate(30deg) translate(30px, 15px);
        background-image: unset;
    }


    .btn-grey:hover {
        background: var(--green-color);
    }

    .btn-grey:hover span {
        margin-top: -74px;
    }

    .btn-grey:hover i {
        -webkit-animation: btnGrey2 0.5s linear forwards;
        animation: btnGrey2 0.5s linear forwards;
    }

}

@media screen and (max-width: 1700px) {
    .footer:after{
        width: 798px;
    }
}
@media screen and (max-width: 1600px) {
    body {
        background-size: 801px 684px;
    }

    .container {
        max-width: 1198px;
    }

    .top h1 {
        font-size: 205px;
    }

    .top-text {
        max-width: 690px;
        font-size: 18px;
    }

    .top-img {
        width: 360px;
        right: -50px;
    }

    .btn-top {
        width: 402px;
        height: 123px;
    }

    .top .btn-top span {
        font-size: 50px;
    }

    .btn-top span:after {
        width: 69px;
        right: -71px;
    }

    .btn-top:before {
        box-shadow: 0 125px 0 var(--black-color);
    }

    .btn-top img {
        height: 84px;
        right: -50px;
    }

    .marquee {
        font-size: 38px;
        height: 58px;
    }

    .adjenta-list,.adjenta-title {
        width: 645px;
    }

    .adjenta .adjenta-list {
        padding: 42px 55px 0 65px;
    }

    .footer ul {
        margin-left: 42px;
    }

    .footer-left {
        max-width: 280px;
    }

    .footer:after {
        width: 739px;
        height: 246px;
    }

    .footer-link {
        max-width: 60%;
    }

    .adjenta ul li span {
        font-size: 22px;
    }

    .top {
        padding-bottom: 135px;
    }

    .adjenta ul li b {
        font-size: 39px;
    }

    .btn-grey {
        width: calc(100% - 40px);
        font-size: 30px;
    }
	.artist-list{
		max-width: 838px;
	}
    .adjenta-title {
        font-size: 52px;
    }
	.artist-list li{
		height: 380px;
		width: 270px;
	}
}

@media screen and (max-width: 1440px) {
	.btn-top:hover:before {
box-shadow: 0 130px 0 var(--black-color), 65px 20px 0 var(--black-color);
}
}

@media screen and (max-width: 1279px) {
	.artists{
		padding-bottom: 65px;
		padding-top: 100px;
	}
	.artists h2{
		font-size: 52px;
	}
	.artist-text{
		font-size: 18px;
		line-height: 22px;
	}
	.artist-arrows i{
		width: 45px;
		height: 45px;
	}
	.artist-list{
		max-width: 595px;
	}
	.artist-list li{
		height: 260px;
		width: 188px;
		margin-right: 15px;
	}
	.artists h3{
		font-size: 24px;
	}
	.artist-list h3{
		bottom: 15px;
		padding-left: 20px;
	}
    .container {
        max-width: 100%;
        padding-left: 40px;
        padding-right: 40px;
    }

    body {
        background-size: 712px auto;
    }

    .top h1 {
        line-height: 100%;
        font-size: 142px;
    }

    .top-text span {
        font-size: 20px;
    }

    .header ul li a {
        font-size: 18px;
    }

    .header ul li i {
        height: 9px;
        top: 0;
    }

    .adjenta-pass {
        font-size: 36px;
    }

    .adjenta-title {
        font-size: 46px;
    }

    .footer:after {
        width: 50%;
    }

    .footer-contact b {
        width: 79px;
        height: 79px;
    }

    .top-text {
        max-width: 620px;
    }

    .marquee {
        font-size: 26px;
        height: 40px;
    }

    .adjenta .adjenta-list:before {
        top: 60px;
        height: 1214px;
    }
}

@media screen and (max-width: 1190px) {
	
	.artist-list h3{
		font-size:18px;
	}
}

@media screen and (max-width: 991px) {
	.artist-list{
		max-width: 392px;
	}
    body {
        background-image: unset
    }

    .adjenta {
        padding-top: 280px;
    }

    .adjenta:before {
        background: url("../gmas-images/adjenta-img.png") no-repeat center top;
        background-size: contain;
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
        height: 100%;
        content: "";
        position: absolute;
        top: 80px;
        left: -120px;
        right: 0;
    }

    .adjenta-title {
        top: -240px;
		position: relative;
    }

    .footer-contact span {
        font-size: 22px;
    }

    .footer-contact i {
        font-size: 16px;
    }

    .footer-right {
        flex-direction: row;
        align-self: flex-start;
    }

    .footer .social {
        margin-top: 10px;
        margin-left: 20px;
    }

    .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .top h1 {
        font-size: 102px;
    }

    .top-text span {
        font-size: 18px;
    }

    .top-text {
        font-size: 16px;
    }

    .top-img {
        width: 260px;
    }

    .btn-top {
        height: 108px;
        padding-left: 18px;
        width: 295px;
        border-radius: 15px 0 0 15px;
    }

    .btn-top:before {
        width: 32px;
        height: 32px;
        box-shadow: 0 120px 0 var(--black-color);
        right: -16px;
    }

    .btn-top span:after {
        border-radius: 0 15px 15px 0;
    }

    .top .btn-top span {
        font-size: 40px;
    }

    .header ul {
        display: none;
    }

    .mobile-menu {
        display: block;
        width: 51px;
        height: 30px;
        /*overflow: hidden;*/
        position: absolute;
        right: 25px;
        top: 0;
        cursor: pointer;
    }

    .header > .container {
        justify-content: space-between;
        align-items: flex-start;
    }

    .header .social {
        margin-left: 20px;
        margin-right: auto;
    }

    .mobile-menu span:after, .mobile-menu span, .logo img {
        -webkit-transition: all 0.3s linear;
        transition: all 0.3s linear;
    }

    .mobile-menu span:after {
        content: "";
        position: absolute;
        width: 31px;
        height: 5px;
        top: 10px;
        right: 0;
        background: var(--green-color);
        display: block;
        /*transform: rotate(90deg);*/
    }

    body.is--active .mobile-menu span:before {
        width: 17px;
        height: 28px;
        right: 10px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    body.is--active .mobile-menu span:after {
        height: 5px;
        top: 0;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    .mobile-menu span {
        position: relative;
        top: 0;
        width: 51px;
        height: 5px;
        background: var(--green-color);
        color: var(--green-color);
        display: block;
        /*box-shadow: 12px 10px, -12px 20px;*/
        box-shadow: -12px 20px;
    }

    .mobile-menu span:before {
        content: "";
        background: url("../gmas-images/snowman.png") no-repeat center;
        width: 34px;
        height: 61px;
        background-size: contain;
        position: absolute;
        top: -15px;
        right: 0;
        display: none;
    }

    body.is--active {
        overflow: hidden;
        height: 100vh;
    }

    body.is--active .container {
        height: 100%;
        flex-direction: column;
    }

    body.is--active .header .logo {
        margin-top: unset;
        left: 15px;
        position: absolute;
    }

    body.is--active .header .social {
        bottom: 50px;
        position: absolute;
        flex-direction: column;
        top: 120px;
        height: 170px;
        left: 0;
    }

    body.is--active .header .social a {
        margin-left: unset;
        margin-bottom: 10px;
    }

    body.is--active .header-right h1 {
        display: none;
    }

    body.is--active .header {
        background: var(--dark-color) url("../gmas-images/footer.png") no-repeat left bottom;
        background-size: auto 300px;
        height: 100vh;
        position: absolute;
        z-index: 999;
        right: 0;
        left: 0;
    }

    body.is--active .header ul {
        display: block;
        position: absolute;
        font-size: 32px;
        right: 15px;
        top: 120px;
    }

    body.is--active .header ul li {
        margin-bottom: 20px;
        margin-right: 0;
        margin-left: 0;
    }

    body.is--active .mobile-menu {
        width: 31px;
        right: 25px;
    }

    body.is--active .logo img {
        width: 80px;
    }

    body.is--active .mobile-menu span {
        box-shadow: unset;
        transform: rotate(45deg);
        top: 12px;
        width: 31px;
    }

}

@media screen (max-width: 1600px) and (min-width: 767px) {
    .btn-top:hover:before {
        box-shadow: 0 125px 0 var(--black-color), 65px 20px 0 var(--black-color);
    }}

@media screen and (max-width: 767px) {
	.artists{
		padding-bottom: 25px;
	}
	.artist-text{
		font-size: 16px;
		line-height:18px;
		max-width: unset;
	}
	.artist-left{
		max-width: 50%;
	}
	.artist-list{
		max-width: 46%;
		width: 100%;
	}
    .container {
        padding: 0 15px;
    }

    .header .social {
        left: 15px;
    }

    .mobile-menu {
        right: 15px;
    }

    .top h1 {
        font-size: 86px;
    }

    .top-img {
        width: 130px;
        position: absolute;
		top: -200px;
        right: 50px;
    }

    .top {
        margin-top: 25px;
        padding-bottom: 35px;
    }

    .top-block {
        margin-top: 50px;
    }

    .top-date, .footer > .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer {
        padding-bottom: 200px;
        padding-top: 65px;
    }

    .footer:after {
        width: 537px;
        height: 264px;
        right: unset;
        left: 0;
    }

    .footer-left {
        max-width: 100%;
        order: 2;
        width: 100%;
        position: relative;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-right {
        flex-direction: column;
        width: 100%;
    }

    .footer-right > a {
        order: 2;
        margin-bottom: 30px;
    }

    .footer .social {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 22px;
    }

    .footer .social a {
        width: 41px;
        margin-left: 22px;
        height: 41px;
    }

    .footer .social a svg {
        width: 22px;
        height: auto;
    }

    .footer ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /*display: flex;*/
        /*flex-wrap: wrap;*/
        /*width: calc(100% - 165px);*/
    }

    .footer ul li {
        margin-left: 20px;
    }

    .footer ul li i {
        display: none;
    }

    .footer-link {
        max-width: unset;
        position: absolute;
        bottom: 0;
        right: 0;
        font-size: 16px;
        width: unset;
    }

    .top-text span {
        font-size: 20px;
    }

    .adjenta .adjenta-list {
        padding: 20px 20px 0 20px;
    }

    .adjenta-list,.adjenta-title {
        width: calc(100% + 30px);
        margin-left: -15px;
        margin-right: -15px;
    }

    .adjenta ul li:before {
        right: -26px;
    }

    .adjenta ul li:nth-child(odd):before {
        left: -26px;
    }

    .adjenta ul li {
        font-size: 14px;
        width: calc(50% - 20px);
        line-height: 115%;
    }

    .adjenta ul li span {
        font-size: 13px;
    }

    .adjenta ul li b {
        font-size: 28px;
    }

    .adjenta .adjenta-list:before {
        top: 35px;
        left: 50%;
        height: auto;
		bottom: 90px;
    }
	.bottom-block{
		padding-bottom: 25px;
	}
	.adjenta-pass{
		bottom: -25px;
	}
    .adjenta-pass {
        font-size: 24px;
    }

    .btn-grey {
        font-size: 22px;
        height: 55px;
        border-radius: 15px;
    }
}

@media screen and (max-width: 440px) {
	.artists>.container{
		flex-direction: column;
	}
	.artist-left,.artist-list{
		max-width: 100%;
	}
	.artist-arrows{
		margin-top: 20px;
		justify-content: flex-end;
		margin-bottom: 20px
	}
    .header .logo svg {
        width: 60px;
        height: auto;
        border-radius: 24px 22px 0 8px;
    }
}