.hero {
    position: relative;
}

.hero__name {
    position: absolute;
    top: 5%;
    left: 40%;
    font-family: Gilroy, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #fff;
}

.hero__description span:nth-child(4) {
    transition-delay: .7s;
    margin-left: 9.5vw;
}

@media (max-width: 1300px) {
    .hero__name {
    left: 32%;
    font-size: 16px;
}
}

@media (max-width: 768px) {
    .hero__name {
        left: 60vw;
    }
    
    .hero__description span:nth-child(4) {
        margin-left: 0;
        margin-right: 100px;
}
}

@media (max-width: 670px) {
    .hero__name {
        left: auto;
        right: 30px;
    }
}

.about__text {
    font-family: Gilroy, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    color: #1e1e1e;
}

/* Текстовая страница */

body {
    font-family: Gilroy, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    color: #1e1e1e;
}

.text-page {
    margin-top: var(--header-height);
    padding: 100px 0;
}

/* Чекбокс */

.checkbox {
  display: inline-flex;
  user-select: none;
}
.checkbox__control:not(:checked) ~ .checkbox__body .checkbox__check-icon {
  display: none;
}

.checkbox__body {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.checkbox__emulator {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid #cfcfcf;
  border-radius: 5px;
  cursor: pointer;
}

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


.cart_inner .checkbox {
    margin-bottom: 20px;
}

.callback__button:disabled {
    opacity: 0.4;
    pointer-events: none;
    cursor: not-allowed;
}

/* Шапка, второй номер */

.header__contacts-wrapper {
    display: flex;
    flex-direction: column;
}

.header__contacts a {
    font-size: 24px;
}

.is-scrolling .header__inner {
    height: 110px;
}

@media (max-width: 768px) {
   .header__contacts a {
    font-size: 18px;
} 
.header__contacts span {
    font-size: 12px;
}
}

.header__contacts a {
    font-size: 20px;
}

.header__contacts span {
    font-size: 16px;
}


/* cookies */
.cookie {
    position: fixed;
    bottom: 0;
    z-index: 20;
    width: 100%;
    box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.1);
    background: #fff;
    opacity: 0;
    transform: translateY(200px);
    transition: all 0.3s ease;
}

.show-cookie {
    opacity: 1;
    transform: translateY(0);
}

.cookie__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 10px 0;
}

.cookie__text-wrapper{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie__text {
    font-size: 16px;
}

.cookie__text a {
    color: #1188e2;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.cookie__button {
    width: fit-content;
    font-size: 16px;
    padding: 10px 30px;
    background: linear-gradient(90deg,#57b7ff 0,#67d1ff 100%);
    border: none;
    color: #fff;
    font-family: Gilroy, sans-serif;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .cookie__text {
        font-size: 14px;
    }

    .cookie__button {
        font-size: 14px;
        padding: 10px 40px;
    }
}

@media (max-width: 520px) {
    .cookie__wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .cookie__button {
        padding: 10px 10px;
        width: 100%;
        font-size: 16px;
    }
}