.nav-links {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.contact-form__checkbox:checked + label::before {
  background-color: transparent;
  background-image: url(../img/svg/checkbox.svg);
}

.articles__title {
  font-size: 23px;
}


.cookies.show {
    pointer-events: auto;
    opacity: 1;
}

.cookies {
    position: fixed;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.8);
    padding: 29px 29px 31px 29px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-filter: drop-shadow(0px 22px 45px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(0px 22px 45px rgba(0, 0, 0, 0.2));
    opacity: 0;
    right: 0%;
    width: 100%;
    bottom: 0px;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    pointer-events: none;
}


.cookies__btn {
    margin-top: 18px;
    padding: 10px 10px;
    border-radius: 2px;
    background-color: #45A5DC;
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
    color: #FFF;
    text-align: center;
    font-family: "Inter";
    cursor: pointer;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    border: none;
 
    height: 32px;
}


.cookies__title {
    margin: 0;
    color: #fff;
    text-align: center;
    font-family: "Inter";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.cookies__link {
    font-weight: 700;
    text-decoration: underline;
    color: #fff;
}