header .container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding: 15px 0;
}
body.modal-open {
    overflow: hidden;
}
.logo img {
    width: 150px;
}
.menu ul {
    display: flex;
    flex-flow: row;
    gap: 25px;
    margin: 0;
}
.menu ul li {
    list-style: none;
    font-size: 24px;
}
.menu ul li.menu-right-start {
    margin-left: auto;
}

.main-btn {
    background: #4acbc6;
    width: fit-content;
    color: white;
    padding:  15px;
    border-radius: 25px;
    cursor:  pointer;
}
.main-btn:hover {
    opacity: 0.8;
}

.twicer {
    display: flex;
    align-items: center;
    gap: 50px;
}
.twicer-block {
    width: 50%;
    text-align: right;
    position: relative;
}
.twicer-block._main {
    text-align: left;
}
.zebra .twicer-block {
    text-align: left;
}
.twicer-block img {
    width: 100%;
    position: relative;
    z-index: 2;
}
.zebra {
    background: #4acbc6;
}
.zebra * {
    color: white;
}
section {
    padding: 50px 0 0
}

.menu ul li.opener {
    cursor: default;
    background: url(../img/menu_arrow.svg) no-repeat center right;
    background-size: 12px;
    padding-right: 25px;
}
.menu ul li.opener:hover {
    opacity: 0.8;
}
header {
    background: #4acbc62b;
    z-index: 10;
    position: relative;
}
section {
    background: #4acbc62b;
}
.menu li aside {
    display: none;
    background: white;
    padding: 25px;
    border-radius: 25px;
    position: absolute;
    flex-wrap: wrap;
    max-width: 475px;
}
.menu li:hover aside {
    display: flex;
}
.menu li aside svg {
    width: 30px;
    height: 20px;
}
.menu li aside > a {
    width: 50%;
    display: flex;
    white-space: nowrap;
    align-items: center;
    color: black;
    text-decoration: none;
}
.menu li aside > a:hover {
    opacity: 0.8
}

footer {
    background: black;
    padding: 40px 0
}
div#footer-cols {
    display: flex;
    gap: 25px;
    width: 100%;
    justify-content: space-between;
}
.footer-head {
    color: #4acbc6;
    white-space: nowrap;
    font-size: 22px;
}
.footer-links {
    display: flex;
    flex-flow: column
}
#footer-col img {
    height: 40px !important;margin-bottom: 15px;
}
.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 22px;
}
.footer-links a:hover {
    opacity: 0.8;
}

ul.socs {
    display: flex;
    gap: 15px;
    margin: 15px;
    padding: 0
}
ul.socs li {
    list-style: none;
}
ul.socs img {
    width: 30px
}
ul.socs a:hover {
    cursor: pointer;
    opacity: 0.8;
}

.lng-block {
    display: flex;
    gap: 15px;
    margin:  15px;
}
.lng-item {

}
.lng-item img {
    border-radius: 5px;
    width: 40px;
    cursor: pointer
}
.lng-item img:hover {
    opacity: 0.8;
}

.menu ul li > a {
    text-decoration: none;
    color: black;
}
.menu ul li > a:hover {
    opacity: 0.7 !important;
}

article {
    
}
article h3 {
  color: #4acbc6;
  margin: 25px 0;
}
.blog-item {
    display: flex;
    gap: 25px;
    margin: 25px 0;
    color: black;
    text-decoration: none;
}
.blog-item:hover {
    color: black;
    opacity: 0.8;
}
.blog-item .cover {

}
.blog-item .cover img {
  width: 150px;
  border-radius: 15px;
}
.blog-item .name {
  font-weight: bold;
  font-size: 24px;
}
.blog-item .desc {
  
}
.blog-info {
  color: #aaaaaa;
}

article.faq-page {
    padding-bottom: 15px;
}
article.faq-page a {
    display: flex;
    margin-bottom: 15px;
    color: black;
    text-decoration: none;
    font-size: 22px;
}
article.faq-page a:hover {
    opacity: 0.7;
}

article.blog-item-article {
    padding: 50px 0;
}

/* Policy pages */
.policy-shell {
    display: flex;
    gap: 40px;
    padding: 25px 0 50px;
}
.policy-sidebar {
    width: 280px;
    flex: 0 0 280px;
    position: sticky;
    top: 90px;
    align-self: flex-start;
    background: white;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.policy-sidebar .policy-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: black;
}
.policy-sidebar a {
    display: block;
    color: black;
    text-decoration: none;
    padding: 10px 10px;
    border-radius: 12px;
    font-size: 18px;
}
.policy-sidebar a:hover {
    opacity: 0.8;
}
.policy-sidebar a.active {
    background: #4acbc6;
    color: white;
}
.policy-content-wrap {
    flex: 1 1 auto;
    min-width: 0;
}
.policy-content-wrap article.blog-item-article {
    padding: 0;
}

/* Download pages */
.download-title {
    font-size: 38px;
    font-weight: 800;
    margin: 0 0 18px;
    color: black;
}
.download-grid {
    display: grid;
    gap: 22px;
}
.download-card {
    background: #f3f5f7;
    border-radius: 24px;
    padding: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-height: 240px;
    position: relative;
    overflow: hidden;
}
.download-card__left {
    max-width: 520px;
}
.download-card__subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 10px;
}
.download-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 14px;
    padding: 12px 16px;
    text-decoration: none;
    border: 1px solid #ddd;
    background: white;
    color: black;
    font-size: 18px;
    cursor: pointer;
}
.download-btn:hover {
    opacity: 0.8;
}
.download-btn--primary {
    background: #000;
    color: #fff;
    border-color: #000;
}
.download-card__right {
    width: 340px;
    height: 210px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.download-card__right::before {
    content: "";
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle at 30% 30%, rgba(0, 0, 0, 0.06), transparent 55%);
}
.download-card__right span {
    position: relative;
    color: rgba(0, 0, 0, 0.35);
    font-size: 18px;
}

/*MEDIA*/

.gamb {
    display: none;
}

section._hider img {
    margin-bottom: -50%;
    height: 675px;
}
._hider {
    overflow: hidden;
}

.bubble1 {
    width: 250px;
    height: 250px;
    left: 85px;
    top: -37px;
    background: #ffffff3d;
}
.bubble2 {
    width: 310px;
    height: 310px;
    right: 25px;
    top: 100px;
    background: #ffffff3d;
}
.bubble3 {
    width: 220px;
    height: 220px;
    left:  25px;
    top: 115px;
    background: #ffffff57;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    transform: translate3d(0, 0, 0) scale(var(--s1, 1));
    opacity: var(--o1, 1);
    will-change: transform, opacity;
    animation: bubble-float var(--dur, 14s) ease-in-out var(--delay, 0s) infinite alternate;
}

.bubble--white { background: rgb(255, 255, 255); }
.bubble--teal { background: rgb(74, 203, 198); }

.bubble4 {
    width: 180px;
    height: 180px;
    right: 10px;
    top: -20px;
}
.bubble5 {
    width: 140px;
    height: 140px;
    left: -10px;
    top: 160px;
}
.bubble6 {
    width: 260px;
    height: 260px;
    left: 60px;
    top: 40px;
}
.bubble7 {
    width: 110px;
    height: 110px;
    right: 60px;
    top: 210px;
}

@keyframes bubble-float {
    0% {
        transform: translate3d(0, 0, 0) scale(var(--s1, 1));
        opacity: var(--o1, 0.55);
    }
    100% {
        transform: translate3d(var(--dx, 12%), var(--dy, -10%), 0) scale(var(--s2, 1.28));
        opacity: var(--o2, 1);
    }
}

.scroll-to-up {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #4acbc6;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: fixed;
    left: 50px;
    bottom: 50px;
    z-index: 50;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, 6px, 0);
    transition: opacity 200ms ease, transform 200ms ease, visibility 0s linear 200ms;
    user-select: none;
}
.scroll-to-up.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition: opacity 200ms ease, transform 200ms ease, visibility 0s;
}
.scroll-to-up:hover {
    opacity: 0.8;
}
.scroll-to-up svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.lang-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 200ms ease, visibility 0s linear 200ms;
}
.lang-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 200ms ease, visibility 0s linear 0s;
}
.lang-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}
.lang-modal__dialog {
    position: relative;
    background: white;
    border-radius: 18px;
    width: min(920px, calc(100vw - 48px));
    max-height: min(75vh, 720px);
    overflow: auto;
    margin: 60px auto;
    padding: 26px 22px 22px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}
.lang-modal__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
    color: black;
}
.lang-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: #666;
    font-size: 28px;
    line-height: 36px;
    border-radius: 10px;
    cursor: pointer;
}
.lang-modal__close:hover {
    opacity: 0.8;
}
.lang-modal__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 22px;
}
.lang-modal__item {
    border: 0;
    background: transparent;
    text-align: left;
    padding: 10px 8px;
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
    color: black;
}
.lang-modal__item:hover {
    background: rgba(74, 203, 198, 0.12);
}

/* Support widget (lastVidget) */
#lastVidget {
    cursor: pointer;
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: url(../img/widget_foto.png) no-repeat center;
    background-size: cover;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    animation: shake 0.6s ease-in-out infinite;
}
#lastVidget:hover {
    opacity: 0.8;
}
div#lastVidgetText {
    position: absolute;
    right: calc(100% + 12px);
    bottom: 50%;
    transform: translateY(50%);
    background: white;
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 16px;
    color: black;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

#tgMailZone {
    background: rgba(0, 0, 0, 0.45);
    width: 100%;
    height: 100%;
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
#tgMailZone.active {
    display: flex;
}
#lastVidgetPopup {
    background: white;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
    width: min(340px, calc(100vw - 48px));
    padding: 18px 56px 18px 18px;
    border-radius: 16px;
    position: relative;
}
#lastVidgetCloser {
    width: 40px;
    height: 40px;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 28px;
    line-height: 28px;
}
#lastVidgetCloser:hover {
    opacity: 0.8;
}
#lastVidgetPopupBody h3 {
    margin: 0 0 10px;
    font-weight: 700;
    font-size: 22px;
    color: black;
}
#lastVidgetPopupBody p {
    margin: 0;
    color: black;
    text-align: left;
}
#lastVidgetPopupBody ul {
    display: flex;
    padding: 0;
    gap: 15px;
    margin: 12px 0 0;
}
#lastVidgetPopupBody li {
    list-style: none;
}
#lastVidgetPopupBody img {
    width: 46px;
    height: 46px;
    display: block;
}

@keyframes shake {
    0%, 10%, 100% { transform: translate(0); }
    20%, 60% { transform: translate(-1px, 1px); }
    40%, 80% { transform: translate(1px, -1px); }
}

@media (max-width: 575.98px){
    .lang-modal__dialog {
        width: calc(100vw - 24px);
        margin: 70px auto 24px;
        padding: 18px 16px 16px;
        border-radius: 16px;
        max-height: 78vh;
    }
    .lang-modal__title {
        font-size: 22px;
        margin-bottom: 12px;
    }
    .lang-modal__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px 12px;
    }
    .lang-modal__item {
        font-size: 18px;
        padding: 10px 8px;
    }
}

@media (max-width: 575.98px){

    .gamb {
        display: flex;
        width: 30px;
        height: 30px;
        background: url(../img/icon_gamb_black.svg) no-repeat center;
        background-size: 25px;
    }

    .twicer {
        flex-flow: column;
        width: 100%;
    }
    .zebra .twicer {
        flex-flow: column-reverse;
    }
    .twicer-block {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .main-btn._downl {
        width: 100%;
    }

    ul.socs {
        justify-content: center;
    }

    div#footer-cols {flex-flow: column;text-align: center;}

    .lng-block {
        justify-content: center;
        gap: 25px;
    }

    .menu {
        display: none;
    }
    .menu.active {
        display: flex;
        background: white;
        position: fixed;
        top: 0px;
        left: 0;
        right: 0;
    }
    .menu.active ul {
        flex-flow: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 25px 0;
    }
    .menu.active ul li {
        width: 100%;
        padding: 0 25px
    }

    header .container {
        padding: 15px;
    }

    h3 {
        text-align: center;
        font-size: 8vw;
    }
    a.blog-item {
        flex-flow: column;
        align-items: center;
        text-align: center;
        margin-bottom: 50px !important;
    }
    article.faq-page a {
        border-bottom: 1px solid #bbb;
        padding-bottom: 15px;
    }
    article.blog-item-article {
        padding: 25px;
    }

    .policy-shell {
        flex-flow: column;
        gap: 16px;
        padding: 15px 0 40px;
    }
    .policy-sidebar {
        width: 100%;
        flex: 0 0 auto;
        position: relative;
        top: auto;
    }
    .policy-sidebar a {
        font-size: 18px;
    }
    .download-title {
        font-size: 28px;
    }
    .download-card {
        flex-flow: column;
        align-items: flex-start;
        padding: 18px;
        min-height: 0;
    }
    .download-card__right {
        width: 100%;
        height: 180px;
    }
    .download-btn {
        width: 100%;
        justify-content: center;
    }
    .menu li aside {
        position: relative;
        padding: 15px 5px;
    }
    .menu ul li.opener {
        background: url(../img/menu_arrow.svg) no-repeat 10px right !important;
    }
    .menu li aside > a {
        width: 100%;
        padding: 15px 0;
    }
    li.gamb-closer {
        background: url(../img/icon_cross_black.svg) no-repeat center;
        width: 30px !important;
        height: 30px !important;
        background-size: 20px;
        position: absolute;
        top: 20px;
        right: -15px;
        z-index: 999;
    }
    header {
        background: white;
        position: fixed;
        width: 100%;
    }
    main {
        padding-top: 60px;
    }
}