:root {
    --main-color: white;
    --head-color: black;
    --headers-color: black;
    --borders-color: #acabc1;
    --bg-color: #101723;
}

* {
    box-sizing: border-box;
}

html {
    font-display: swap;
    scroll-behavior: smooth;
}

a {
    color: var(--main_color);
    /*font-weight: 600;*/
    text-decoration-skip-ink: none;
    text-decoration-thickness: 2px;
    text-underline-position: from-font;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

body {
    width: 100%;
    text-align: left;
    background: #eeebec;
    font-family: Helvetica, Sans-Serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: black;
    margin: 0;
}

[id] {
    scroll-margin-top: 150px;
}

h1 {
    line-height: 115%;
    /* line-height: 40px; */
}


article img {
}

p {
    /* color: black; */
}

table {
    /* width: 100%; */
    border-collapse: collapse;
    color: black;
    margin: 0 auto;
}

thead tr {
    /* border-bottom: solid 1px #d8a93e; */
    color: var(--headers-color);
    text-align: left;
}

tr {
    /* border-bottom: solid 1px #DDDDDD; */
}

th, td {
    padding: 2px 0 2px 5px;
}

tr:hover, th:hover {
    background-color: #f5f5f5;
}

h1 {
    /*//font-size: 38px;*/
}

h2 {
    /*//font-size: 30px;*/
    line-height: 115%;
    margin: 0 0 10px 0;
    color: var(--headers-color);
}

h3 {
    /*//text-align: center;*/
    margin-top: 0;
    color: var(--headers-color);
}

strong {
    font-weight: 700;
}

@media only screen and (max-width: 767px) {
    iframe {
        width: 100%;
        height: 300px;
    }

    th, td {
        line-height: 22px;
    }
}

.block-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.header {
    display: block;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    transition: .3s;
    background: #101723;
    padding: 12px 0;
    box-shadow: 0 1px 1px #2f2b3d;
}

.header__burger {
    width: 32px;
    height: 32px;
    display: inline-block;
    position: relative;
    background: none;
    border: none;
    padding: 10px;
}

.header__burger span:first-child {
    top: 5px;
}

.header__burger span:last-child {
    top: 21px;
}

.header__burger.active span:first-child {
    transform: rotate(135deg);
    top: 14px;
}

.header__burger.active span:nth-child(2) {
    display: none;
}

.header__burger.active span:last-child {
    transform: rotate(-135deg);
    top: 14px;
}

.header__burger span {
    width: 26px;
    height: 3px;
    left: 3px;
    position: absolute;
    background: #ffffff;
    top: 13px;
    transform: rotate(0);
    transition: .2s;
    cursor: pointer;
}

.header__btn {
    max-width: 150px;
    min-width: 105px;
    border: 1px solid rgba(0, 0, 0, 0);
    background: var(--main-color);
    color: var(--head-color);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 20px;
    font-weight: 400;
    text-decoration: none;
    transition: .3s ease-in-out;
    cursor: pointer;
    font-size: 16px;
    padding: 10px;
    text-wrap: nowrap;
}

.header__btn--outline {
    max-width: 150px;
    border: 1px solid #cfcde4;
    color: #cfcde4;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 20px;
    font-weight: 400;
    text-decoration: none;
    transition: .3s ease-in-out;
    cursor: pointer;
    font-size: 16px;
    padding: 10px 0;
    margin-right: 40px;
}

@media only screen and (max-width: 767px) {
    .header__btn--outline {
        display: none;
    }
}

.header__btn:hover {
    background: none;
    border: solid 1px #cfcde4;
    color: #cfcde4;
}

.header__btn--outline:hover {
    background: #cfcde4;
    color: #252422;
}

.header__menu.active {
    display: block;
}

.header__nav {
    overflow-x: auto;
    overflow-y: hidden;
}

section {
    margin-top: 20px;
}

article {
    margin-top: 20px;
}

article li, section li {
}

main a {
    color: #c21b1b;
    font-weight: 400;
    text-decoration: underline;
    /* text-decoration: none; */
    /* border-bottom: 1px solid black; */
}

main a:hover {
    color: #d8a93e;
    text-decoration: underline;
}

@media only screen and (max-width: 1023px) {
    h2 {
        font-size: 28px;
        line-height: 32px;
        margin: 0 0 20px 0;
    }
}

.header__inner {
    /* padding: 0 40px; */
    width: 80%;
    margin: 0 auto;
    max-width: 1600px;
}

.header__logo-nav {
    display: flex;
    justify-content: space-between;
    grid-gap: 20px;
    align-items: center;
}

.header__nav-secondary {
    display: flex;
    justify-content: left;
    align-items: center;
    border-top: solid 1px #44485e;
    margin: 10px 0 -8px 0;
    padding-top: 5px;
    padding: 5px 40px 0 40px;
}

.logo {
    display: block;
    position: relative;
    z-index: 3;
}

@media only screen and (min-width: 768px) {
    .header__burger {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .header__inner {
        padding: 0 20px;
    }

    .header__nav-secondary {
        display: none;
    }
}

.header__actions {
    display: none;
    align-items: center;
}

.header__menu {
    display: flex;
    flex-direction: row;
    justify-content: end;
    grid-gap: 14px;
    list-style: none;
    margin: 0;
    padding: 20px;
    background-color: #101723;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .5);
    position: absolute;
    top: 100%;
    left: 0;
}

.header__subnav {
    display: flex;
    align-items: flex-start;
    white-space: nowrap;
    grid-gap: 5px;
    list-style: none;
    margin: 0;
    text-align: center;
    padding: 20px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .5);
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    text-align: center;
    background-color: #001d3d;
}

li.header__menu-item svg {
    fill: #d8a93e;
    height: 20px;
}

li.header__menu-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

@media only screen and (max-width: 767px) {
    .header__menu, .header__subnav {
        display: none;
    }

    .header__actions {
        display: flex;
    }

    .header__menu {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) {
    .header__menu, .header__subnav {
        background: none;
        box-shadow: none;
        position: static;
        padding: 4px 0;
    }
}

.header__menu-link {
    display: inline-flex;
    padding: 5px;
    transition: .3s ease-in-out;
    text-decoration: none;
    font-weight: 400;
    color: #ffffffb3;
}

.header__menu-link-active {
    display: inline-flex;
    padding: 5px;
    font-weight: 400;
    color: #d8a93e;
    text-decoration: none;
}

.header__subnav-link {
    display: inline-flex;
    width: 100%;
    padding: 5px;
    font-size: 15px;
    transition: .3s ease-in-out;
    text-decoration: none;
    border: solid 1px #101723;
    color: #ffffffb3;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .header__subnav-link {
        padding: 5px;
    }
}

.header__subnav-link--active {
    display: inline-flex;
    width: 100%;
    padding: 5px;
    font-size: 15px;
    transition: .3s ease-in-out;
    text-decoration: none;
    color: white;
}

.header__subnav-link--active:hover {
    background: none;
    color: #ffffffb3;
}

@media only screen and (max-width: 768px) {
    .header__menu-item {
        border-bottom: solid 1px #ffffffb3;
    }
}

.header__menu-link:hover, .header__subnav-link:hover {
    color: white;
}

.main {
    position: relative;
    overflow: hidden;
}

main {
    display: block;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.container-header {
    width: 100%;
    margin: 0 auto;
}

.container_75 {
    width: 80%;
    margin: 0 auto;
    max-width: 1600px;
}

.container_50 {
    width: 40%;
    margin: 0 auto;
}

.container_50_2 {
    width: 80%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 20px;
    margin: 0 auto;
}

@media only screen and (max-width: 767px) {
    .container_50, .container_50_2 {
        width: 100%;
        padding: 0 20px;
    }
}

.container_40_60 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    grid-gap: 20px;
    padding: 0 40px;
}

@media (max-width: 1023px) {
    .container_40_60 {
        grid-template-columns: 1fr;
    }
}

.container_60_40 {
    width: 100%;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-gap: 20px;
    padding: 0 40px;
}

@media (max-width: 1023px) {
    .container_60_40 {
        grid-template-columns: 1fr;
    }
}

.container_25_2 {
    width: 75%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 20px;
    margin: 0 auto;
}

.container_33_3 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 20px;
    margin: 0 auto;
    padding: 0 40px;
}

.container_75_2 {
    width: 75%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-gap: 20px;
    margin: 0 auto;
}

.container_25 {
    width: 25%;
    margin: 0 auto;
}

@media only screen and (max-width: 767px) {
    .container, .container_75, .container_33_3, .container_40_60, .container_60_40 {
        width: 100%;
        padding: 0 20px;
    }

    .header__inner {
        margin: 0 auto;
        width: 100%;
    }

    .container_50_2 {
        padding: 0 20px;
    }
}

.bordered, .bordered-green, .bordered-red {
    border: solid 1px var(--borders-color);
    padding: 0 20px;
    font-weight: 300;
}

.bordered:hover {
    border: solid 1px var(--borders-color);
}

.bordered-red:hover {
    border: solid 1px red !important;
}

.bordered-green:hover {
    border: solid 1px green !important;
}

.box--outlined {
    border: solid 1px var(--head-color);
    padding: 0 20px;
}

.box--outlined:hover {
    border: solid 1px #cccccc;
}

.hero__content {
    width: 60%;
}

.hero__content p {
    color: var(--head-color);
}

@media only screen and (max-width: 1023px) {
    .hero__image {
        margin-bottom: 10px;
    }
}

@media only screen and (min-width: 1024px) {
    .hero__inner {
        padding: 20px 40px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }
}

.hero__inner {
    display: flex;
    padding: 20px 15px;
    flex-direction: column-reverse;
    justify-content: center;
    min-height: 152px;
    background: var(--main-color);
    box-shadow: oklch(0 0 0 / 0.01) 0px 0px 0px 1px, oklch(0 0 0 / 0.04) 0px 1px 0px 0px;
}

@media only screen and (min-width: 1024px) {
    .hero__inner {
        padding: 40px 40px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }
}

.hero__title {
    color: var(--headers-color);
    margin: 0 0 20px 0;
    line-height: 40px;
    text-align: left;
}

@media only screen and (max-width: 1023px) {
    .hero__title {
        margin: 0 0 20px 0;
    }
}

@media only screen and (min-width: 1024px) {
    font-size: 44px;
    line-height: 48px;
}

@media only screen and (max-width: 1279px) {
    font-size: 36px;
}

@media only screen and (max-width: 767px) {
    font-size: 32px;
}

.hero__image {
    width: 400px;
    height: 400px;
}

@media only screen and (max-width: 1023px) {
    .hero__content {
        width: 100%;
    }

    .hero__image {
        width: 100%;
        height: auto;
    }
}

.card {
    flex: 1;
    padding: 20px;
    background: white;
    box-shadow: oklch(0 0 0 / 0.01) 0px 0px 0px 1px, oklch(0 0 0 / 0.04) 0px 1px 0px 0px;
}

.card.gold {
    border: 2px solid #d8a93e;
    background: #fff6e2;
}

.card--accent {
    flex: 1;
    padding: 20px;
    background: var(--main-color);
    border: solid 2px #d8a93e;
}

.card--accent p, .card--accent li {
    color: black;
}

.section-card img {
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal__content {
    position: relative;
    background: #000;
    width: 80%;
    height: auto;
    max-width: 1200px;
    overflow: visible;
}

.modal__controls {
    position: absolute;
    top: 0px;
    right: -40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

@media (max-width: 767px) {
    .modal__controls {
        right: -32px;
    }
}

.close {
    position: relative;
    font-size: 38px;
    color: #cfcde4;
    cursor: pointer;
    z-index: 2;
}

.close:hover {
    color: white;
}

.fullscreen:hover {
    color: white;
}

.fullscreen {
    position: relative;
    font-size: 32px;
    color: #cfcde4;
    cursor: pointer;
}

.modal__content iframe {
    width: 100%;
    height: 650px;
    border: none;
}

.pros-cons {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin: 20px auto;
    grid-gap: 20px;
    font-weight: 400;
}

.pros-cons img {
}

.pros-cons-img {
    padding: 20px;
}

.pros-cons-img p {
    padding: 0 5px;
    font-size: 15px;
    text-align: center;
    line-height: 22px;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    article table, main table {
        width: 100%;
        max-width: 100%;
    }
}

.hero__btn {
    max-width: 200px;
    margin: 0 auto 15px;
    background: #d40008;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 30px;
    text-decoration: none;
    transition: .3s ease-in-out;
    cursor: pointer;
    margin-top: 20px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px;
}

.btn {
    width: 160px;
    background: #d8a93e;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
    line-height: 30px;
    text-decoration: none;
    transition: .3s ease-in-out;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px;
    /* border-radius: 12px; */
    /* border-bottom: 3px solid #000000; */
}

.btn img {
    margin: 0;
}

.hero__btn:hover, .btn:hover {
    background: #101723;
    color: #d8a93e;
    text-decoration: none;
}

.demo {
    position: relative;
}

.demo__play-btn {
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    cursor: pointer;
}

.demo__real-btn {
    position: absolute;
    top: 45%;
    left: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
    transform: translate(-50%, -50%);
    z-index: 1;
    cursor: pointer;
}

.demo__real-btn img {
    width: 30px;
    height: 30px;
    margin: 0;
}

@media only screen and (max-width: 767px) {
    .demo__play-btn {
        top: 15%;
    }

    .demo__real-btn {
        top: 50%;
    }

    .btn {
        width: 280px;
        max-width: 80%;
        margin: 0 auto;
    }
}

.demo__iframe {
    width: 900px;
    height: 500px;
    display: block;
    margin: 0 auto;
    border: 0;
}

.demo__preview {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    filter: brightness(60%);
}

@media only screen and (max-width: 1023px) {
    .demo__iframe {
        width: 100%;
        height: 50vw;
    }
}

.faq {
    padding: 20px;
    background: white;
    /* border: solid 1px var(--borders-color); */
}

.faq__list {
    padding: 0;
}

.faq__item {
    flex-direction: column;
    /* padding: 0 10px 0 20px; */
    /* border: 1px solid #AAAAAA; */
    /* font-size: 14px; */
}

.faq__item {
    list-style: none;
    margin-bottom: 20px;
}

.faq__item:hover {
    background-color: #f5f5f5;
}

.faq__item .faq__question {
    padding: 8px 0;
    /* min-height: 40px; */
    width: 100%;
    line-height: normal;
    font-style: normal;
    font-weight: 500;
    align-items: center;
    /* flex-direction: column; */
    padding: 8px 10px 8px 20px;
    border: 1px solid #AAAAAA;
    font-size: 14px;
}

.faq__item, .faq__item .faq__question {
    display: flex;
    justify-content: space-between;
    transition: all .2s ease-in-out;
    position: relative;
    color: white;
}

.faq__text h3 {
    font-size: 18px;
    margin: 0;
}

.faq__answer {
    margin: -10px 20px 0px 25px;
}

.faq__arrow {
    color: #d8a93e;
}

@media only screen and (max-width: 767px) {
    .author {
        padding: 0;
    }

    .faq__list {
        padding: 0;
    }
}

.author__inner {
    overflow: hidden;
    background: var(--main-color);
    position: relative;
    z-index: 1;
    align-items: center;
}

.author__profile-link {
    width: 100%;
    text-align: center;
}

@media only screen and (min-width: 768px) {
    .author__inner {
        display: grid;
        grid-template-columns: 1fr 2fr;
    }
}

@media only screen and (min-width: 1280px) {
    .author__inner {
        grid-template-columns: 1fr 3fr;
    }
}

.author__photo {
    object-fit: cover;
    display: block;
}

@media only screen and (max-width: 767px) {
}

.author__meta {
    display: flex;
    gap: 10px;
}

.author__meta h2 {
    margin-bottom: 0;
    line-height: 32px;
    font-size: 26px;
}

.author__name {
    line-height: 32px;
    color: var(--head-color);
    margin-bottom: 0;
    /* padding-bottom: 5px; */
}

.author__name a {
    color: var(--head-color);
}

.social {
    margin-top: 5px;
}

@media only screen and (max-width: 767px) {
    .author__inner {
        margin: 0 auto;
        padding-top: 40px;
    }

    .social {
        margin-top: 5px;
    }
}

.author__body {
    padding: 20px;
}

@media only screen and (min-width: 768px) {
}

.footer {
    padding: 24px 0 0;
    margin-top: 20px;
    background: #101723;
    color: #fff;
    border-top: solid 1px #101723;
}

.footer__inner {
    padding-bottom: 36px;
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
}

@media only screen and (min-width: 1024px) {
    .footer__inner {
        flex-direction: row;
        gap: 20px;
    }
}

.footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    width: 100%;
    text-align: center;
}

@media only screen and (min-width: 1024px) {
    .footer__brand {
        gap: 23px;
        text-align: left;
        align-items: flex-start;
        margin: 0 20px 0 0;
        max-width: 280px;
    }
}

.footer__columns {
    display: grid;
    width: 70%;
    grid-template-columns: 258px 1fr 1fr;
    gap: 20px;
    font-size: 14px;
}

@media only screen and (min-width: 1024px) {
    .footer__columns {
        grid-gap: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .footer__columns div:nth-child(4) {
    }

    .footer__columns {
        width: 100%;
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 767px) {
}

.footer__nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
}

.footer__nav-link {
    color: #ffffffb3;
    text-decoration: none;
    font-size: 14px;
    line-height: 12px;
}

.footer__nav-link:hover {
    color: white;
}

.footer__bottom img:hover {
    transform: translateY(-3px) scale(1.1);
}

@media only screen and (min-width: 1280px) {
}

@media only screen and (min-width: 1024px) {
    .footer__bottom {
        padding: 0 0 15px;
        display: flex;
        justify-content: space-between;
        grid-gap: 40px;
        align-items: center;
    }
}

@media only screen and (max-width: 1023px) {
    .footer__bottom {
        padding: 15px 0 15px;
    }
}

.footer__bottom {
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, .5);
    padding-bottom: 10px;
    text-align: center;
}

.footer__bottom p {
    color: white;
}

.footer__badges {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 20px;
}

.best-game-best-casino {
    width: 200px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
}

.best-game-queen {
    font-size: 42px;
}

.best-game {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.best-game-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 14px;
    line-height: 20px;
}

.best-game-logo {
    width: 200px;
    height: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.best-game-rating {
    width: 12%;
    text-align: center;
}

.best-game-casino-rating {
    font-size: 36px;
    font-weight: 400;
    color: #333333;
    margin: 10px 0 5px 0;
}

.best-game-row-pluses {
    width: 25%;
}

.best-game-bonus {
    width: 20%;
    border: solid 2px #DDDDDD;
    padding: 10px 10px 5px 10px;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}

.best-game-gift {
    font-size: 22px;
    font-weight: 400;
    margin-top: -10px;
}

.best-game-footer {
    margin-top: 15px;
    margin-bottom: -15px;
    padding-top: 5px;
    border-top: solid 2px #f5f5f5;
    font-size: 14px;
    text-align: center;
    color: #757575;
}

@media only screen and (max-width: 1023px) {
    .best-game-best-casino {
        width: 100%;
    }

    .best-game {
        flex-direction: column;
    }

    .best-game-logo {
        width: 100%;
    }

    .best-game-rating {
        width: 100%;
    }

    .best-game-row-pluses {
        width: 90%;
    }

    .best-game-bonus {
        width: 100%;
        text-align: center;
    }
}

/**** end new ***/


/*************** ORI *************/
/*** tables ***/
table {
    width: 100%;
    border-collapse: collapse;
    background: #101723;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 0;
    overflow: hidden;
    /* min-width: 630px; */
}

table thead {
    background: #d8a93e;
    color: #101723;
    /* border: 2px solid #101723; */
}

table th {
    padding: 14px 16px;
    font-weight: 700;
    text-align: left;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

table td {
    padding: 13px 16px;
    /* border: 1px solid rgba(255, 255, 255, 0.10); */
}

table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.035);
}

table tbody tr {
    transition: background-color 0.2s ease;
}

table tbody tr:hover {
    background: rgba(216, 169, 62, 0.16);
}

table a {
    color: #d8a93e;
    font-weight: 600;
    text-decoration: none;
}

table a:hover {
    text-decoration: underline;
}

table caption {
    padding: 12px 16px;
    background: #101723;
    color: #ffffff;
    font-weight: 700;
    text-align: left;
}
/*** end tables ***/


/*** accardion ***/

.accordion__item {
    border-radius: 0;
    padding: 1rem 1.5rem;
    background-color: var(--bg-color);
    border: var(--border);
    margin-bottom: 1rem;
    color: white;
}

.accordion__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
}

.accordion__item-title {
    font-size: 1.25rem;
    margin-bottom: 0;
    margin-top: 0;
    color: #d8a93e;
}

.accordion__item-button {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    line-height: 1;
}

.accordion__item-button path,
.accordion__item-button use {
    fill: white;
    transition: 0.4s;
    color: white;
}

.accordion__header:hover .accordion__item-button path,
.accordion__header:focus .accordion__item-button path,
.accordion__header:hover .accordion__item-button use,
.accordion__header:focus .accordion__item-button use {
    fill: var(--secondary-color)
}

.accordion__body {
    width: 700px;
    max-width: 100%;
    line-height: 1.3;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.1s, padding 0.4s;
}

.accordion__item.show {
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2),
    0px 1px 0px 0px rgba(255, 255, 255, 0.2) inset;
}

.accordion__item.show .accordion__item-button::before {
    opacity: 0;
}

.accordion__item.show .accordion__item-button {
    transform: rotate(180deg);
}

.accordion__item.show .accordion__body {
    padding-top: 20px;
    padding-bottom: 3px;
    height: auto;
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .accordion__item-title {
        font-size: 1rem;
        line-height: 1.2;
    }

    .accordion__body {
        font-size: 13px;
    }
}

/*** end accardion ***/

/*** step-guide ***/
.step-guide {
    counter-reset: step-counter;
    list-style: none;
    margin: 30px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.step-guide li {
    position: relative;
    counter-increment: step-counter;
    margin: 0;
    padding: 24px 24px 24px 92px;
    border: 1px solid rgba(16, 23, 35, 0.10);
    border-radius: 0;
    background: #fff6e2;
    color: #101723;
    font-size: 16px;
    line-height: 1.55;
    box-shadow: 0 4px 14px rgba(16, 23, 35, 0.05);
    transition:
            transform 0.25s ease,
            box-shadow 0.25s ease,
            border-color 0.25s ease,
            background 0.25s ease;
}

.step-guide li::before {
    content: counter(step-counter);
    position: absolute;
    top: 50%;
    left: 22px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #101723;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(16, 23, 35, 0.15);
    transform: translateY(-50%);
}

.step-guide li strong {
    color: #101723;
    font-weight: 700;
}

.step-guide li:hover {
    transform: translateY(-3px);
    border-color: #d8a93e;
    background: linear-gradient(180deg, #fffdf7 0%, #ffffff 100%);
    box-shadow: 0 10px 24px rgba(16, 23, 35, 0.10);
    /* cursor: pointer; */
}

.step-guide li:hover::before {
    background: #d8a93e;
    color: #101723;
}

.step-guide li:hover strong {
    color: #101723;
}

@media (max-width: 991px) {
    .step-guide li {
        font-size: 18px;
        padding: 22px 20px 22px 84px;
    }

    .step-guide li::before {
        width: 36px;
        height: 36px;
        top: 38px;
        left: 15px;
        /* font-size: 18px; */
    }
}

@media (max-width: 767px) {
    .step-guide {
        gap: 14px;
    }

    .step-guide li {
        padding: 18px 16px 18px 70px;
        /* border-radius: 14px; */
        font-size: 16px;
        line-height: 1.5;
    }

    .step-guide li::before {
        /* width: 34px; */
        /* height: 34px; */
        /* top: 18px; */
        /* left: 16px; */
        /* font-size: 16px; */
    }
}

/*** end step-guide ***/

textarea#message {
    max-width: 100%;
}

/*** scroll table start ***/

.responsive-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    margin: 16px 0;
}

.responsive-table table td,
.responsive-table table th {
    /* border: 0; */
    word-break: normal;
    padding: 10px 10px;
}

.responsive-table table td > *,
.responsive-table table th > * {
    word-break: normal;
    margin: 0;
}

.responsive-table table {
    height: auto;
}

.responsive-table table tbody:target {
    animation-play-state: running;
    opacity: 1;
}


@media screen and (max-width: 768px) {
    .responsive-table table {
        max-width: 100%;
        min-width: 100%;
        width: auto;
        overflow-x: auto;
        display: block;
    }


    .responsive-table table td,
    .responsive-table table th {
        padding: 10px 14px;
        word-break: normal;
    }

    .responsive-table tbody::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        background: linear-gradient(90deg,transparent 10%,gray);
        border-radius: 0;
        z-index: 1;
        background-size: 300% 300%;
        width: 12px;
        border-right: 1px solid gray;
    }
}

/*** scroll table end ***/


/* mobile */
@media screen and (max-width: 992px) {
    .navbar {
        justify-content: space-between;
        padding: 10px 10px;
        /*gap: 20px;*/
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: left;
        padding: 20px 0;
        position: absolute;
        background-color: var(--main_color);
        top: 50px;
        left: 0;
        padding-left: 30px;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu li {
        padding: 10px;
    }

    .nav-toggle {
        display: block;
    }

    .footer-dark {
        padding: 30px 0;
    }

    .footer-row {
        padding: 0 10px;
    }

    .footer-col {
        width: 100%;
    }

    .footer__badges {
        display: flex;
        justify-content: center;
        align-items: center;
        grid-gap: 20px;
        flex-wrap: wrap;
        margin-top: 15px;
        /* display: grid; */
        /* grid-template-columns: 1fr 1fr; */
        margin-bottom: 15px;
    }

    .footer__badges img {
        height: 25px;
    }
}
