/* start base */
:root {
	/* colors */
	--none-color: transparent;
	--white-color: #fff;
	--text-color: #666;
	--bg-color: #f6f6f6;
	--primary-color: var(--blue);
}

.text-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.seo-block {
    height: 0;
    font-size: 0;
}

/* end base */
/* start cookies */
.cookies {
    position: fixed;
    z-index: 10000;
    right: 0;
    bottom: 15px;
    display: flex;
    justify-content: flex-end;
    padding: 0px 25px;
    max-width: max-content;
}

.cookies__content-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    border-radius: 34px;
    padding: 20px;
    max-width: 512px;
    width: 100%;
    color: var(--text-color);
    font-size: 16px;
    background-color: var(--bg-color)
}

.cookies__text {
    margin: 0;
    padding: 0;
    color: var(--text-color);
}

.cookies__text-link {
    display: inline;
    text-decoration: underline;
    color: var(--text-color);
}

.cookies__btn-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
}

.cookies__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 21px;
    max-width: 48%;
    min-width: auto;
    width: 100%;
    min-height: 40px;
    font-weight: 600;
    font-size: 16px;
    color: rgb(246, 246, 246);
    letter-spacing: 0;
    background-color: var(--blue);
    transition: 0.3s ease-in-out;
}
/* end cookies */
/* start nav-list */
.nav-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    padding: 12px 0;
    list-style: none;
}

.nav-list__list-item {
    text-align: center;
}

.nav-list__list-item.active .nav-list__list-item-link {
    font-weight: 700;
}

.nav-list__list-item-link {
    font-size: 14px;
    color: rgb(102, 102, 102);
    transition: color .2s linear;
}
/* end nav-list */

/* start hover */
@media(hover: hover) {
    .nav-list__list-item-link:hover {
        text-decoration: underline;
    }
    
    .cookies__text-link:hover {
        text-decoration: none;
    }
    
    .cookies__btn:hover {
        color: var(--blue);
        background-color: rgb(246, 246, 246);
    }
}
/* end hover */

@media only screen and (max-width: 991px) {
    .to_clients .arrow {
        display: none;
    }
}

/* start phone */
@media(max-width: 767px) {
    /* start cookies */
    .cookies {
        padding: 0px 10px;
    }
    
    .cookies__content-wrap {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      padding: 10px;
      font-size: 14px;
    }
    
    .cookies__btn {
        max-width: 100%;
        width: 100%;
    }
    /* end cookies */
    
    /* start nav-list */
    .nav-list {
        justify-content: center;
        flex-direction: column;
    }
    /* end nav-list */
}
/* end phone */