html {
    cursor: none;
}

body {
    margin: 0;
    font-family: "Montserrat-regular";
    color: #fff;
    background-color: #060606;
}

.container {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 1600px;
}

.circle {
    height: 24px;
    width: 24px;
    border-radius: 24px;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999999;
    transition: scale 0.3s;
}

.underline {
    font-style: normal;
}

.rainbow-text {
    background: linear-gradient(to right,
            #FF0040 20%,
            #e000a8 30%,
            #0190cd 70%,
            #139DFF 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    background-size: 150% auto;
    animation: TextShine 3s ease-in-out infinite alternate;
}

@keyframes TextShine {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 80% 40%;
    }

    100% {
        background-position: 0% 50%;
    }
}


/* header */
.header {
    position: static;
    background-color: #0B0B0B;
    border-bottom: solid 1px #C9C9C9;
}

.header__logo a {
    color: #fff;
}

.header__logo a:hover {
    color: #949494;
}

.header__item {
    font-size: 25px;
    color: #fff;
}

.header__item::after {
    content: none;
}

.header__item:hover {
    background: linear-gradient(#888888, #888888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

.header__button {
    padding: 18px 40px 18px 40px;
    font-size: 20px;
    color: #fff;
    background-color: #2E2E30;
    border-radius: 15px;
    transition: .3s;
}

.header__button:hover {
    background-color: #494747;
}

.header__burger-btn span {
    height: 4px;
    background-color: #e0e0e0;
}


/* servicespage */
.servicespage {
    margin-top: 60px;
    padding: 0 30px;
    text-align: center;
}

.servicespage__title{
    margin: 0 auto;
    max-width: 1200px;
    font-family: "Montserrat-SemiBold";
    font-size: 96px;
    letter-spacing: 5px;
}

.arrow {
    font-size: 76px;
    color: #86868B;
}


.servicespage__menu-item{
    margin-top: 80px;
    font-size: 25px
}

.servicespage__service-title{
    margin-bottom: 20px;
    padding: 20px 2%;
    text-align: start;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    font-family: "Montserrat-SemiBold";
    background: linear-gradient(90deg, #ff218c 0%, #0627ff 100%);
}

.servicespage__service-item{
    text-align: start;
    position: relative;
    padding: 50px 2%;
    font-family: "Montserrat-SemiBold";
}

.servicespage__service-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.servicespage__service-item::before{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background-color: #D9D9D9;
}

.item-price{white-space: nowrap}

.item-description{
    color: #afafaf;
    text-align: start;
    font-family: "Montserrat-regular";
}

.item-examples{
    font-family: "Montserrat-regular";
    color: #616161;
}



/* footer */
.footer{margin-top: 130px;}


/* modal */
.modal__inner {
    background-color: #060606;
    color: #fff;
    box-shadow: none;
    border: solid 1px #969696;
}

.modal__inner a {
    color: #fff;
}

.modal__item:hover {
    background-color: rgb(37, 37, 37);
}

.modal__item::after {
    content: none;
}

.modal__item img {
    border-radius: 5px;
    padding: 4px;
    background-color: rgb(255, 255, 255);
    mix-blend-mode: difference;
}


/* media requires */
@media (hover: none) {
    .circle {
        display: none !important;
    }

    html {
        cursor: auto !important;
    }
}

@media screen and (max-width: 1350px) {
    /* header */
    .header__nav {
        background-color: #0B0B0B;
        border-bottom: solid #a8a8a8 3px;
    }

    .header__nav {
        left: -600px;
    }

    .header.open .header__nav {
        left: 0;
    }

    .header__container {
        flex-direction: row-reverse
    }
}

@media screen and (max-width: 750px) {
    /* projectspage */
    .servicespage__title {font-size: 76px;}
}

@media screen and (max-width: 650px){
    .servicespage__menu-item{font-size: 20px;}
    
}

@media screen and (max-width: 550px){
    .servicespage__title {font-size: 60px;}
    .servicespage__menu-item{margin-top: 40px;}
    .item-description{font-size: 18px;}
    .footer{margin-top: 40px;}
}

@media screen and (max-width: 450px){
    .servicespage__title {font-size: 45px;}
    .servicespage__menu-item{font-size: 18px;}
    .servicespage__service-title{padding: 20px 5%;}
    .servicespage__service-item{padding: 50px 5%;}
    .item-description{font-size: 16px;}

    .poligraphic{font-size: 15px;}
}

@media screen and (max-width: 370px){
    .poligraphic{font-size: 14px;}
}