* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --site-bg: #121111;
    --header-bg: #262626;
    --header-text: #ffffff;
    --header-links: #ced2e0;
    --header-accent: #ffb626;
    --header-accent-button-text: #000000;
    --header-secondary-button: #42475e;
    --header-secondary-button-text: #acd911;
    --header-dropdown-bg: #3a3a3a;
    --header-dropdown-links: #a4cc15;
    --header-langs-bg: #34384d;
    --header-langs-links: #ffffff;
    --hero-bg: #201632;
    --hero-title: #ffffff;
    --hero-text: #ced2e0;
    --hero-buttons: #f7cd36;
    --hero-buttons-text: #000000;
    --hero-bonus-bg: #262626;
    --hero-bonus-text: #ffffff;
    --hero-bonus-text-accent: rgb(225, 248, 17);
    --hero-bonus-link: #acd911;
    --hero-bonus-button-text: #ffffff;
    --toc-bg: #262626;
    --toc-title: #ffffff;
    --toc-text: #ffffff;
    --toc-accent: #ffffff;
    --toc-accent-hover: #a4cc15;
    --toc-icons: #a4cc15;
    --faq-bg: #282828;
    --faq-title: #ffffff;
    --faq-text: #9f9f9f;
    --faq-accent: #FFBE3E;
    --faq-item-bg: rgba(52, 56, 77, 0.3);
    --faq-item-title: #dddddd;
    --faq-item-text: #c1c1c1;
    --faq-item-accent: #FFBE3E;
    --content-bg: #ffffff;
    --content-text: #dbdbdb;
    --content-links: #acd911;
    --content-accent: #c4f024;
    --content-buttons: #e3f936;
    --content-buttons-text: #000000;
    --content-h1: #ffffff;
    --content-h2: #ffffff;
    --content-h3: #ffffff;
    --content-h4: #ffffff;
    --content-h5: #2A334A;
    --content-h6: #2A334A;
    --content-table-bg: #1a1919;
    --content-table-row-bg: #2b2b2b;
    --content-table-text: #ffffff;
    --footer-copyright: #dadded;
    --footer-bg: #2b2b2b;
}

body {
    background: var(--site-bg);
    overflow-x: hidden;
    letter-spacing: 0.5px;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(12px, 2vw, 18px);
    line-height: 1.4;
    font-weight: 400;
    min-height: 100vh;
    scroll-behavior: smooth;
    
}

img {
    max-width: 100%;
    display: block;
}

.block-img{
    width: 90%;
    margin: auto;
    margin-bottom: 2rem;
}
@media (max-width: 1024px) {
        .block-img{
            width:90%;
        }
    }
.site-header--row{
    padding: 25px;
    
}
.header--row{
    background: var(--header-bg);
    box-shadow: 0 4px 33px 0 rgba(0, 0, 0, .2);
    border-radius: 10px;
     grid-template-columns: max-content 1fr;
    display: grid;
    gap: 20px; 
    align-items: center;
    padding: 16px;
}
.header-wrapper {
    width: 100%;
}
.site-header .site-header--row {
    max-width: 1680px;
    width: 100%;
    margin: 0 auto;
}

.site-header__logo img {
    width: 125px;
    height: auto;
}

.site-header .site-header--menu-area {
    display: grid;
    grid-template-columns: 1fr max-content max-content max-content;
    gap: 16px;
    align-items: center;
}

.site-header .site-header__menu {
    padding-right: 24px;
    text-align: right;
}

.site-header .site-header__menu .menu {
    display: flex;
    justify-content: flex-end;
    gap: 54px;
    list-style: none;
    align-items:center;
}

.site-header .site-header__menu .menu li {
    position: relative;
}

.site-header .site-header__menu .menu li a {
    color: var(--header-links);
    font-size: 16px;
    font-weight: 600;
    transition: color .3s;
    text-decoration: none;
}

.site-header .site-header__menu .menu li a:hover {
    color: var(--faq-text);
}
#menu-header-english-menu li:first-child {
    width: 127px;
}
.site-header__menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--header-dropdown-bg);
    border-radius: 8px;
    padding: 10px 0;
    list-style: none;
    min-width: 160px;
    z-index: 9999;
    box-shadow: 0 4px 33px rgba(0, 0, 0, .2);
}
.sub-menu__link{
    color: var(--header-dropdown-links) !important;
}
.site-header__menu .menu li:hover .sub-menu {
    display: block;
}

.site-header__menu .sub-menu li a {
    display: block;
    padding: 8px 20px;
    color: var(--header-dropdown-links) !important;
    font-size: clamp(10px, 2vw, 14px);
    white-space: nowrap;
}

.site-header__menu .sub-menu li a:hover {
    color: #fff;
}

.site-header .site-header__btn-login {
    height: 42px;
    line-height: 42px;
    border-radius: 32px;
    border: 1px solid var(--header-secondary-button); 
    background: linear-gradient(-45deg, #e3f0b6 7%, #c7ec3f 51%, #a9d70c 100%);    font-size: clamp(10px, 2vw, 15px);
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 15px;
}
.site-header .site-header__btn-login a{
    text-decoration: none;
}
.site-header .site-header__btn-login:hover{
    opacity: 0.8;
}

.site-header .site-header__btn-login button {
    color: var(--header-secondary-button-text);
    padding: 0 32px;
    display: block;
    background: transparent;
    border: none;
    cursor: pointer;
}

.site-header .site-header__btn-login.-reg a span {
    color: var(--header-accent-button-text);
}
.site-header .site-header__btn-login a {
    color: var(--content-buttons);
}

.site-header .site-header__langs {
    position: relative;
}

.site-header .site-header__langs--current {
    padding: 5px 10px;
    background: transparent;
    border: 1px solid var(--header-langs-bg);
    border-radius: 26px;
    font-size: clamp(12px, 2vw, 16px);
    font-weight: 500;
    height: 42px;
    text-transform: uppercase;
    display: flex;
    gap: 8px;
    align-items: center;
    cursor: pointer;
    color:var(--content-text);
}

.site-header .site-header__langs img {
    width: 24px;
    height: 20px;
    object-fit: cover;
    object-position: center;
}

.site-header .site-header__langs ul {
    display: none;
    width: 180px;
    background: var(--header-langs-bg);
    box-shadow: 0 4px 33px 0 rgba(0, 0, 0, .2);
    border-radius: 26px;
    padding: 20px;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 9999;
    list-style: none;
}

.site-header .site-header__langs:hover ul,
.site-header .site-header__langs ul.open {
    display: block;
}

.site-header .site-header__langs ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--header-langs-links);
    text-decoration: none;
    padding: 6px 0;
    font-size: clamp(10px, 2vw, 14px);
}

.site-header .site-header__langs ul li a:hover {
    color: var(--header-accent);
}

.site-header .site-header--menu-btn {
    display: none;
    width:16px;
    height: 16px;
    background: url(../../images/menu.png) no-repeat center;
    background-size: 25px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    justify-self: flex-end;
    transition: background-image 0.3s ease;
}

.site-header .site-header--menu-btn.open {
    background-image: url(../../images/close.png);
}

.home::after{
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    background: url(../../images/down.png) no-repeat center;
    background-size: contain;
    transition: transform 0.3s ease;
    vertical-align: middle;
    margin-left: 8px;
}

.home:hover::after,
.home.open::after {
    transform: rotate(180deg);
}
.header-content__wrapper a:not(.btn){
    text-decoration: none;
    color:var(--content-links);
}

@media (max-width: 1024px) {
    .header--row {
    background: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    }
    .site-header .site-header--row .header--row {
        grid-template-columns: 1fr max-content;
        gap: 0;
    }
    .site-header .site-header__logo {
        background-color: var(--header-bg);
        align-items: center;
        display: flex;
        text-align: center;
        justify-content: space-between;
        padding: 16px;
        border-radius: 15px;
    }
    .site-header .site-header--menu-btn {
        display: block;
    }

    .site-header .site-header--menu-area {
        display: none;
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .site-header .site-header--menu-area.open {
        display: grid;
         background-color: var(--header-bg);
         padding: 25px;
    }

    .site-header .site-header__menu .menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .site-header .site-header__menu .menu li {
    position: relative;
    border-bottom: 1px solid #000;
    text-align: left;
    width: 100%;
    padding: 16px 0;
    
}
.site-header__menu .sub-menu{
    display:block;
    position: static;
    background: none;
    box-shadow: none;
}
.site-header__menu .sub-menu li{
    border:none !important;
    color: var(--header-dropdown-links) !important;
}
.site-header__langs{
    display: none;
}

}
.site-header .site-header__btn-login.-reg {
     background: linear-gradient(-45deg, #e3f0b6 7%, #c7ec3f 51%, #a9d70c 100%);   
     font-size: clamp(10px, 2vw, 15px);
    color: var(--header-accent-button-text);
}
.site-header .site-header__btn-login {
    height: 42px;
    line-height: 42px;
    border-radius: 32px;
    border-color: var(--header-secondary-button);
    border-width: 1px;
    border-style: solid;
    background: var(--header-secondary-button);
    font-size: clamp(10px, 2vw, 15px);
    font-weight: 500;
    transition: background-color .3s, color .3s;
    display: flex;
    align-items: center;
}

.site-header .site-header__btn-login button {
    color: var(--header-secondary-button-text);
    padding: 0 32px;
    display: block;
    background: transparent;
    border: none;
    cursor: pointer;
}
.site-header .site-header__btn-login.-reg span {
    color: var(--header-accent-button-text);
}
.site-header__langs {
    position: relative; 
}


.site-header__langs ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--header-langs-links);
    text-decoration: none;
    padding: 6px 0;
    font-size: clamp(10px, 2vw, 14px);
}

.site-header .site-header__langs ul li a:hover {
    color: var(--header-accent);
}


.site-header .site-header__langs .site-header__langs--current {
    padding: 5px 10px 5px 10px;
    background: transparent;
    border: 1px solid var(--header-langs-bg);
    border-radius: 26px;
    font-size: clamp(12px, 2vw, 16px);
    font-weight: 500;
    height: 42px;
    text-transform: uppercase;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    place-items: center;
}
.site-header .site-header__langs img {
    width: 24px;
    height: 20px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
img {
    max-width: 100%;
    display: block;
}
.site-header__langs ul {
    display: none;
    width: 180px;
    background: var(--header-langs-bg);
    box-shadow: 0 4px 33px 0 rgba(0, 0, 0, .2);
    border-radius: 26px;
    padding: 20px;
    position: absolute;
    top: 100%;
    right: -20px;
    z-index: 9999;
    list-style: none;
}
.site-header .site-header__langs:hover ul {
    display: block;
}

.site-header .site-header__langs ul.open {
    display: block;
}
.container{
    max-width: 1220px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}
.header-content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 102px;
    align-items: center;
    margin-bottom: 24px;
}
 @media (max-width: 768px) {
            .header-content{
                grid-template-columns: 1fr;
                text-align: center;
            }
        }
.header-content__wrapper{
    padding-bottom: 1.5rem;
}
.header-content__wrapper h1{
   
    font-size: clamp(22px, 2.5vw, 32px);
    padding-bottom: 1rem;
    line-height: 1.1;
    font-weight: 700;
    color: var(--hero-title);
}
.promo{
    border-radius: 10px;
    padding: 14px 0 0;
    height: 100%;
}
.promo__content{
    text-align: center;
}

.promo__content a{
    text-decoration: none;

}
.promo__content__wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;

}
.promo__content h2{
    color: var(--hero-bonus-text-accent);
    font-size: clamp(20px, 3.5vw, 32px);    
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom:15px;
    }
.promo__content h3{
    color: var(--hero-bonus-text);
    font-size: clamp(30px, 4vw, 42px);;
    font-weight: 700;
}
.btn{
    display: inline-flex;
    gap: 8px;
    align-items: center;
    text-align: center;
    justify-content: center;
    height: 46px;
    padding: 0 12px;
    border: none;
    cursor: pointer;
    width:100%;
    transition: all 0.3s ease;
}
.btn:hover{
    opacity: 0.8;
}
.bonus-btn{
    color: var(--hero-buttons-text);
    font-weight: 600;
    font-size: clamp(12px, 1.55vw, 14px);   
    border-radius: 10px;
    background: linear-gradient(-45deg, #e3f0b6 7%, #c7ec3f 51%, #a9d70c 100%);
}
.header-content__wrapper p{
    color: var(--hero-text);
    margin-top: 20px;
    margin-bottom: 24px;
}
.promo__buttons{
    display: flex;
    gap: 20px;
    width: 100%;
    
}

@media (max-width: 1024px) {
        .promo__buttons{
            flex-direction: column;
            align-items: center;
        }
     }
.login-button{
    background: #262626 !important;
    border: 1px solid #B4E20D !important;
    color: #B4E20D !important ;
}
.reg-btn{
    background: #B4E20D !important;
    color: #262626 !important;
}
.login-btn{
    padding: 15px 32px;
    background: linear-gradient(-45deg, #e3f0b6 7%, #c7ec3f 51%, #a9d70c 100%);
    border-radius: 26px;
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
    align-items: center;
    color: var(--hero-buttons-text);
    font-weight: 600;
    text-decoration: none;
}

.toc-block--title {
    cursor: pointer;
    user-select: none;
}

.toc-block--title::after {
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    background: url('../../images/down-arrow.png') no-repeat center;
    background-size: contain;
    transition: transform 0.3s ease;
    vertical-align: middle;
    margin-left: 8px;
}

.toc-block.open .toc-block--title::after {
    transform: rotate(180deg);
}

.toc-block{
    margin-bottom: 32px;
    background: var(--toc-bg);
    border: 1px solid #fff;
    border-radius: 10px;
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 10px;
    padding-bottom: 10px;

}
.toc-block--title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--toc-title);
    font-size: clamp(16px, 2vw, 20px);
     font-weight: bold;
}
.top-ol {
    justify-content: space-between;
    padding-left: 2rem;
    padding-right: 4rem;
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.top-ol li {
    position: relative;
    margin-bottom: 12px;
    font-size: clamp(12px, 2vw, 18px);
    padding-left: 24px;
    list-style: none; 
}

.top-ol li::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    -webkit-mask: url(../../images/arrow-blue.svg) no-repeat center;
    -webkit-mask-size: contain;
    mask: url(../../images/arrow-blue.svg) no-repeat center;
    mask-size: contain;
    background-color: var(--toc-icons);
    position: absolute;
    left: 0;
    top: 3px;
}
.top-ol li a{
    color: var(--toc-text);
    text-decoration: none;
    font-size: clamp(12px, 2vw, 18px);
    transition: color .3s;
}
.block-paragraph{
    color: var(--content-text);
    margin-bottom: 32px;
    font-size: clamp(12px, 2vw, 18px);
}
.block-heading{
    color: var(--content-h2);
    font-size: clamp(20px, 3.5vw, 32px);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 20px;
}
.block-table {
    border-radius: 8px;
    margin-bottom: 42px;
    overflow-x: auto;
}

.block-table .has-fixed-layout {
    table-layout: fixed;
    width: 100%;
    min-width: 600px;
    font-size: clamp(12px, 2vw, 18px);
    background: var(--content-table-bg);
    border-radius: 8px;
    overflow: hidden;
    color: var(--content-table-text);
    margin-bottom: 24px;
    border-collapse: collapse; 
}

.block-table .has-fixed-layout td {
    padding: 16px 12px;
    font-weight: 400;
    word-break: break-word;
    border: 1px solid #fff;
}

.block-table .has-fixed-layout tr:first-child td {
    font-weight: 700;
    color: var(--content-table-text);
    background: var(--content-table-bg);
}

.block-table .has-fixed-layout td {
    padding: 16px 12px;
    font-weight: 400;
    word-break: break-word; 
    border-bottom: 1px solid #fff;
}

.block-table .has-fixed-layout tr:nth-child(even) {
    background: var(--content-table-row-bg);
}

.block-list{
    display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 20px;
}

.block-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.block-list li {
    position: relative; 
    padding-left: 24px;
    margin-bottom: 8px;
    color: var(--content-text)
}

.block-list li::before {
    content: "";
    width: 5px;
    height: 5px;
    background: var(--content-accent);
    border-radius: 50%;
    position: absolute;
    left: 8px;
    top: 9px; 
}
.block-btn{
    width: 100%;
    text-align: center;
}
.goBtn{
    width: 37%;
    height: 48px;
    line-height: 48px;
    display: inline-block;
    position: relative;
    margin-bottom: 24px;
    background: linear-gradient(-45deg, #e3f0b6 7%, #c7ec3f 51%, #a9d70c 100%);    border-radius: 4px;
    color: var(--content-buttons-text) !important;
    padding: 0 32px;
    text-decoration: none;
    
}


/* games slide */
.best-games-horizontal {
    width: 100%;
    margin: 40px 0;
    background: var(--content-table-row-bg);
    border-radius: 20px;
}

.games-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 20px;
}

.games-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.games-title-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.games-title {
    margin: 0 ;
    font-size: clamp(18px, 2vw, 24px) ;
    font-weight: 700;
    color: var(--content-text) ;
}

.games-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    font-size: clamp(10px, 2vw, 14px);
    font-weight: 600;
    color: var(--hero-text);
}

.games-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.games-all-link {
    background:none;
    color: var(--hero-bonus-text-accent);
    border: none;
    border-radius: 20px;
    padding: 6px 13px;
    font-size: clamp(10px, 2vw, 14px);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.games-all-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.games-nav-btn {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.games-nav-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.25);
}

.games-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.games-scroll-container {
    overflow: hidden; 
}

.games-scroll-wrapper {
    display: flex;
    gap: 21px;
    transition: transform 0.4s ease;
}

.game-item {
    flex: 0 0 200px; 
    cursor: pointer;
}

.game-item-image img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    background: #252837;
    display: block;
    transition: transform 0.3s ease;
}

.game-item:hover .game-item-image img {
    transform: scale(1.05);
}

.game-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.game-item-overlay a{
    text-decoration: none;
}
.game-item-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.game-item:hover .game-item-overlay {
    opacity: 1;
}

.game-play-btn {
    background: var(--header-dropdown-links);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: clamp(10px, 2vw, 14px);
    font-weight: 700;
}

.game-item-details {
    padding: 8px 4px 0;
}

.game-provider-info {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.provider-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.game-title {
    font-size: clamp(8px, 2vw, 13px);
    font-weight: 600;
    color: var(--content-text);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.faq-block {
    margin: 32px 0;
    border-radius: 10px;
    padding: 15px 0;
    background: var(--faq-bg);
}
.faq-block .faq-block--title {
    font-size: clamp(18px, 2.5vw, 25px);
    position: relative;
    margin-bottom: 20px;
    color: var(--faq-title);
}
.faq-block .faq-block--items .faq-block--items__item .faq-block--items__item--content {
    color: var(--faq-item-text);
}
.faq-block .faq-block--items .faq-block--items__item:not(:last-child) {
    margin-bottom: 16px;
}
.faq-block .faq-block--items .faq-block--items__item {
    background: var(--faq-item-bg);
    border-radius: 6px;
    overflow: hidden;
    padding: 20px;
}
.faq-block h3{
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: clamp(14px, 2.5vw, 25px);
    color: var(--faq-title);
}
.site-footer {
    background: var(--footer-bg);
    padding: 42px 0;
}
.site-footer .site-footer--row {
    display: grid;
    grid-template-columns: 1fr max-content;
    grid-gap: 24px;
    align-items: center;
    margin-bottom: 40px;
    justify-items: start;
    
}
.site-footer .site-footer--row .site-footer__logos {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    place-content: center;
}
.site-footer .site-footer--row .site-footer__logos img {
    max-width: auto;
    width: auto;
    height: 30px;
}
.site-footer__menu {
    /* border-top: 1px solid rgba(255, 255, 255, .1); */
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding: 4px 0;
}
.site-footer__menu ul {
    text-align: center;
    display: flex;
    place-content: center;
    place-items: center;
    gap: 20px;

}
.site-footer__menu ul li {
    display: inline-block;
    margin: 0 14px;
}
.site-footer__menu ul li a {
    font-size:clamp(10px, 2vw, 14px);
    font-weight: 600;
    color: var(--content-bg);
    text-decoration: none;
}
.site-footer .site-footer--copyright {
    text-align: center;
    color: var( --footer-copyright);
    font-size: 13px;
    margin-top: 40px;
    opacity: 0.5;
}
.site-footer .site-footer--row .site-footer__logo img {
    max-width: 180px;
}

.breadcrumbs {
    color: var(--content-links);
    font-size: clamp(10px, 2vw, 14px);
    margin-bottom: 24px;
}
.breadcrumbs a {
    color: #fff;
    text-decoration: none;
}
.block-paragraph a,
.block-list li a,
.faq-block--items__item--content p a,
table a
{
    color: var(--content-links);
    text-decoration: none;

}
.block-list ol{
    list-style-type: none;
    counter-reset: num;
    margin-left: 42px;
    margin-bottom: 24px;
    color:var(--content-text)
}
.block-list ol li{
    margin-bottom: 32px;
}
.block-list ol li:before {
    content: counter(num);
    counter-increment: num;
    display: inline-block;
    position: absolute;
    top: -5px;
    left: -40px;
    width: 32px;
    height: 32px;
    font-size: clamp(10px, 2vw, 15px);
    line-height: 32px;
    font-weight: 500;
    text-align: center;
    color: var(--content-accent);
    background: #1d3842;
    border: 1px solid var(--content-accent);
    border-radius: 50%;
}
.block-list ol li::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 100%;
    background: url(../images/dashed-line-blue.svg) repeat-y top;
    position: absolute;
    left: -24px;
    top: 28px;
}
.block-list ol li:last-child::after {
    display: none;
}
.block-table thead {
    border: 1px solid #fff;
    
}
.block-table thead tr th {
    border: 1px solid #fff;
    padding: 15px 0;
    word-break: break-all;
}

@media (max-width: 768px) {
       .promo{
        width: 100%;
        flex-grow: 1;
       } 
       .promo-img{
        display: none;
        }
     
       .promo__content__wrapper{
        grid-template-columns: 1fr;
        text-align: center;
       }
       .top-ol{
        flex-direction: column;
        gap: 0;
        padding-left: 0;
        padding-right: 0;
       }
       .block-list{
            grid-template-columns: repeat(1, 1fr);
            align-items: center;
       }
       .goBtn{
         width:100%;
       }
       .site-footer .site-footer--row{
          grid-template-columns: 1fr;
          justify-items: center;
       }
       .site-footer__menu ul{
        flex-direction:column;
       }
    }


.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}