html {
  scroll-behavior: smooth;
}
.new-container {
    font-family: var(--inter);
}
.new-title {
    padding: 357px 0;
    background-image: url("../img/bg-new-page.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    word-break: break-word;
    width: 100%;
    text-align: center;
    font-family: var(--inter);
    font-size: 48px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 2%;
    color: var(--white);
    position: relative;
    margin-bottom: 71px;
   
}
.new-title::after{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--black);
    opacity: 0.6;
    z-index: 2;
}
.new-title .new-title__main-title {
    /*margin-bottom: 30px;*/
    position: relative;
    z-index: 99;
    max-width: 1400px;
    text-align: center;
    margin: 0 auto 30px;
    padding: 12px;
     word-break: break-word;
  

}
.new-wrapp {
    padding: 0 24px 0 120px;
}
.new-page-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    position: relative;
    z-index: 98;
}
.new-page-arrow a img {
    padding: 12px;
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: 3px solid var(--white);
    border-radius: 100px;
    transform: rotate(90deg);
    animation: scroll-down 2s infinite;
}
@keyframes scroll-down {
    0% {
        transform: translateY(0) rotate(90deg);
    }
    50% {
        transform: translateY(20px) rotate(90deg);
    }
    100% {
        transform: translateY(0) rotate(90deg);
    }
}
.new-page-arrow a img:hover {
    animation-play-state: paused;
}

.new-page-arrow a img:active:before {
    transform: translateY(700px);
    border-left-color: transparent;
    border-bottom-color: transparent;
}
.new-wrapp{
    margin-bottom: 110px;
}

.new-wrapp__title {
    max-width: 1100px;
    font-size: 48px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0;
    color: var(--black);
     word-break: break-word;
  
    margin-bottom: 20px;
}
.new-container .date {
    margin-bottom: 30px;

}
.new-wrapp__text {
    max-width: 1000px;
    width: 100%;
    line-height: 160%;
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 300;
    line-height: 160%;
    letter-spacing: 0;
    list-style: auto;
    word-break: break-word;
  
}
.new-wrapp__text img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.new-wrapp__text ul,
.new-wrapp__text ol {
    font-size: 20px;
    padding-left: 20px; /* Отступ слева */
    margin-bottom: 20px;
}

/* Стили для элементов списка */
.new-wrapp__text ul li,
.new-wrapp__text ol li {
    margin-bottom: 10px;
}

/* Стили для маркированного списка */
.new-wrapp__text ul {
    list-style-type: disc; /* Кружочки */
}

/* Стили для нумерованного списка */
.new-wrapp__text ol {
    list-style-type: decimal; /* Цифры */
}
}