:root {
    --tint-color: 255, 255, 255;
    --tint-opacity: 0.06;
    --shadow-blur: 20px;
    --shadow-spread: -5px;
    --shadow-color: rgba(255, 255, 255, 0.45);
    --outer-shadow-blur: 24px;
    --glass-radius: 45px;
    --accent: #4670ED;
    --container-size: 1206px;
    --border: rgba(217, 221, 236, 0.5);
    --bg-squere-size: 45px;
    --container-max-width: 1280px;
}

@media (max-width: 1399.98px) {
    :root {
        --container-max-width: 1280px;
    }
}

@media (max-width: 1199.98px) {
    :root {
        --container-max-width: 960px;
    }
}

@media (max-width: 991.98px) {
    :root {
        --container-max-width: 720px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --container-max-width: 540px;
    }
}

:focus {
    outline: none !important;
}

html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'SF Pro';
    src: url('../fonts/SFProText-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Light';
    src: url('../fonts/SFProText-Light.ttf');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Medium';
    src: url('../fonts/SFProText-Medium.ttf');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Code Saver';
    src: url('../fonts/CodeSaver-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Syne Bemi-Bold';
    src: url('../fonts/Syne-SemiBold.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Syne Regular';
    src: url('../fonts/Syne-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Syne Bold';
    src: url('../fonts/Syne-Bold.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Syne Medium';
    src: url('../fonts/Syne-Medium.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DM Sans-Medium';
    src: url('../fonts/DMSans-Medium.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DM Sans-SemiBold';
    src: url('../fonts/DMSans-SemiBold.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DM Sans-Bold';
    src: url('../fonts/DMSans-Bold.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DM Sans-Light';
    src: url('../fonts/DMSans-Light.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Syncopate Bold';
    src: url('../fonts/Syncopate-Bold.ttf');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'SF Pro', serif;
}

body {
    background: #EFF2F8;
    line-height: 1.3;
    width: 100vw;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container {
    padding-left: 57px !important;
    padding-right: 57px !important;
}

.header {
    width: 100%;
    height: 54px;
    position: fixed;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: max(1002);
    border-radius: 45px;
    padding: 20px;
    gap: 40px;
}

.glassDiv {
    width: 100%;
    height: 46px;
    align-items: center;
    justify-content: space-between;
    display: flex;
    padding: 6px;
    max-width: var(--container-size);
    border-radius: var(--glass-radius);
    touch-action: none;
    z-index: max(1003);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03),
    0 10px 20px rgba(0, 0, 0, 0.05),
    0 20px 50px rgba(0, 0, 0, 0.03);
    /*backdrop-filter: var(--filter-id);*/
    /*-webkit-backdrop-filter: var(--filter-id);*/
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    will-change: backdrop-filter;
    isolation: isolate;
    filter: none;
    backdrop-filter: blur(5px) saturate(100%);
    -webkit-backdrop-filter: blur(8px) saturate(180%);
}

/*.glassDiv::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    z-index: -1;*/
/*    border-radius: inherit;*/
/*    box-shadow: inset 0 0 var(--shadow-blur) var(--shadow-spread) var(--shadow-color);*/
/*    background-color: rgba(var(--tint-color), var(--tint-opacity));*/
/*    pointer-events: none;*/
/*}*/

/*.glassDiv::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    z-index: -1;*/
/*    border-radius: inherit;*/
/*    backdrop-filter: var(--filter-id);*/
/*    -webkit-backdrop-filter: var(--filter-id);*/
/*    isolation: isolate;*/
/*    -webkit-transform: translate3d(0, 0, 0);*/
/*    will-change: filter;*/
/*}*/

canvas#gl {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.logo {
    height: 32px;
    transition: all 1s;
    padding-left: 12px;
    padding-top: 4px;
}

.logo:hover circle {
    fill: #4670ED !important;
}

.logo:hover path {
    fill: #FFFFFF !important;
}

.get-app {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 7px 8px;
    background: #3771F5;
    background: color(display-p3 0.275 0.439 0.929);
    border-radius: 48px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
}

.get-app:hover {
    color: #FFFFFF;
}

.qr-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    /* ADDED: Included visibility in the transition */
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.qr-overlay.active {
    opacity: 1;
    visibility: visible;
}

.qr-popup {
    width: 480px;
    padding: 20px;
    background: white;
    border-radius: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 5px rgba(48, 89, 232, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.qr-overlay.active .qr-popup {
    transform: scale(1);
}

.qr-popup.show {
    opacity: 1;
    visibility: visible;
}

.qr-popup-title {
    color: #000000;
    font-weight: 500;
    font-size: 38px;
    margin-bottom: 40px;
}

.qr-popup-content {
    color: #4C4C4D;
    font-size: 27px;
    text-align: center;
    margin-top: 30px;
}

.container {
    padding: 0;
}

.content {
    position: relative;
}

.dip-container {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dip-shape {
    position: absolute;
    bottom: -35px;
    width: 350px;
    height: 45px;
    fill: var(--bottom-section-color);
    z-index: 1 !important;
    background-color: transparent !important;
}

.dip-container .dip-bg {
    fill: var(--arrow-color);
}

.dip-shape .dip-fill {
    fill: var(--next-page-bg);
}

.scroll-arrow {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    text-decoration: none;
    margin-top: 35px;
    border-radius: 50%;
    background: var(--scroll-bg);
    width: 71px;
    height: 71px;
    display: flex;
    justify-content: center;
    align-items: center;
    /*padding-top: 10px;*/
}

.scroll-arrow svg path {
    stroke: var(--next-page-arrow) !important;
}

.scroll-arrow:hover {
    transform: translateY(5px);
}

.full-page-height {
    margin-top: 70px;
    width: 100%;
    --arrow-color: #FFFFFF;
    --bottom-section-color: #1a202c;
    --next-page-bg: #1a202c;
    --next-page-arrow: #1B2A38;
    --scroll-bg: #FFFFFF;
}

.full-page-height .container {
    display: flex !important;
    flex-direction: column !important;
}

.full-page-height .container > .row:first-of-type {
    min-height: 280px;
    max-height: 1200px;
}

.full-page-height .container > .row:last-of-type {
    flex-grow: 1;
    flex-shrink: 0;
    margin-bottom: auto;
}

.container.first-top {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.full-page-height hr.full-width {
    flex: 0 0 auto;
}

.navbar-header {
    gap: 56px;
    display: flex;
    z-index: max(1002);
    margin-left: auto;
    margin-right: 68px;
    margin-top: 2px;
}

.navbar-brand {
    text-decoration: none;
    color: #000000;
    font-size: 17px;
    font-weight: 400;
    position: relative;
    display: inline-block;
    margin-right: 15px;
    mix-blend-mode: difference;
    transition: 0.3s;
    font-family: "Syne Regular", serif;
}

a.active {
    color: #4670ED;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #4670ED;
    transition: width 0.3s ease-in-out;
}

.navbar-brand:hover::after, .navbar-brand.active::after {
    width: 100%;
}

.color-change.light {
    color: #FFFFFF;
    fill: #FFFFFF;
}

.color-bg-change {
    background: rgba(255, 255, 255, 0.5) !important;
}

.color-bg-change.light {
    background: rgba(0, 0, 0, 0.5) !important;
}

.color-change.light path {
    color: #FFFFFF;
    fill: #FFFFFF !important;
}

.color-change.light::placeholder {
    color: #FFFFFF;
}

.color-change {
    color: #000000;
    fill: #000000;
}

.color-change::placeholder {
    color: #000000;
}

.aurora {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: -1;
    filter: blur(80px);
}

.aurora::before,
.aurora::after {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: radial-gradient(circle at 30% 40%, #eff2f8, transparent 50%),
    radial-gradient(circle at 70% 60%, #eff2f8, transparent 50%),
    radial-gradient(circle at 50% 80%, #eff2f8, transparent 50%);
    animation: auroraMove 20s ease-in-out infinite alternate;
}

.aurora::after {
    background: radial-gradient(circle at 60% 30%, #4670ED, transparent 50%),
    radial-gradient(circle at 40% 70%, #4670ED, transparent 50%);
    animation-duration: 25s;
    mix-blend-mode: screen;
}

@keyframes auroraMove {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-10%, 10%) rotate(15deg);
    }
    100% {
        transform: translate(10%, -10%) rotate(-15deg);
    }
}

.border-left {
    border-left: 1px solid #A6A8AF;
}

.border-right {
    border-right: 1px solid #A6A8AF;
}

.main-message-box {
    position: relative;
    flex-direction: column;
    padding: 0;
}

.main-message-box-bg {
    background-color: #ffffff;
    position: absolute;
    width: 150vw;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    margin-left: -50vw;
}

.main-slogan {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(10px, 1.5vw - 1px, 1.357rem);
    padding: 21px 50px 20px 10px;
    font-family: 'Syne Regular', serif;
    left: 0;
    height: calc(3 * var(--bg-squere-size));
    text-transform: capitalize;
    font-weight: 400;
    line-height: 1.4;
}

.main-slogan-bg {
    position: absolute;
    background: #DDE2EB;
    width: calc(100% + 20px + ((100vw - var(--container-max-width)) / 2));
    height: 100%;
    z-index: -1;
    top: 0;
    right: 0;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
}

.main-slogan div {
    font-family: 'Syne Regular', serif;
}

.message-box-bg {
    background: #DEE2EA !important;
}

.phone-container, .phone-img {
    position: relative;
    height: 100%;
    max-width: calc(5.6 * var(--bg-squere-size) + 4px);
}

.main-phone-box {
    position: relative;
    height: 100%;
    padding-top: calc(1.3 * var(--bg-squere-size)) !important;
    padding-bottom: calc(1.1 * var(--bg-squere-size)) !important;
    padding-right: calc(3.4 * var(--bg-squere-size) - 4px) !important;
    justify-content: end;
}

.left-message-box {
    left: 0 !important;
    right: auto !important;
    width: auto;
    background: none !important;
}

/*.left-message-box::before, .download-section::before {*/
.full-page-height::before {
    content: '';
    position: absolute;
    background-image: linear-gradient(var(--border) 0.6px, transparent 0px), linear-gradient(90deg, var(--border) 0.6px, transparent 0px);
    background-size: var(--bg-squere-size) var(--bg-squere-size);
    pointer-events: none;
    z-index: 1;
    width: 100vw;
    height: calc(100% + 86px);
    left: 0;
    margin-top: calc(-2 * var(--bg-squere-size));
}

.zangi-main-img {
    max-width: 215px;
    width: 100%;
    height: auto;
    min-width: 140px;
}

.modal-content .title {
    margin-left: 41px;
    margin-bottom: 28px;
}

.font-medium {
    font-family: "SF Pro Medium", serif;
}

.fdmsr {
    font-family: "DM Sans", serif !important;
}

.fdmsm {
    font-family: "DM Sans-Medium", serif;
}

.fdmsl {
    font-family: "DM Sans-Light", serif;
}

.cookie-banner {
    position: fixed;
    bottom: 16px;
    left: 16px;
    max-width: 90%;
    width: 523px;
    margin: auto;
    background: #CBD1DD;
    border-radius: 30px;
    padding: 28px;
    padding-top: 40px;
    z-index: 1000;
    font-family: system-ui, sans-serif;
}

.cookie-banner.hidden, .cookie-modal.hidden {
    display: none;
}

.cookie-content p {
    color: #2C2D31;
    font-size: 20px;
    font-weight: 400;
}

.cookie-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.cookie-banner .btn, .cookie-modal .btn {
    width: 100%;
    padding: 8px 14px;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #FFFFFF;
    border-radius: 100px !important;
    background: #9197AB;
    height: 50px;
}

.cookie-banner .btn.primary, .cookie-modal .btn.primary {
    color: #FFFFFF !important;
    background: #3771F5 !important;
    background: color(display-p3 0.275 0.439 0.929);
}

.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
}

.cookie-banner.hidden, .cookie-modal.hidden {
    display: none;
}

.cookie-banner .btn.primary, .cookie-modal .btn.primary {
    background: #3771F5;
}

.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
}

.cookie-modal .modal-content {
    position: relative;
    max-width: 654px;
    width: 100%;
    padding: 24px 38px;
    color: #000000;
    font-family: system-ui, sans-serif;
    background: #CAD2DF;
    border-radius: 30px;
    bottom: 16px;
    left: 16px;
    margin: auto;
    padding-top: 40px;
    z-index: 1000;
}

.cookie-modal .close-btn, .cookie-banner .close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    font-size: 27px;
    cursor: pointer;
    color: #000000;
    transition: width 0.3s ease-in-out;
}

.cookie-banner .close-btn:hover {
    color: #4a4848;
}

.cookie-item {
    margin-bottom: 16px;
    color: #000000;
}

.cookie-content .title, .modal-content .title {
    font-size: 30px;
    font-weight: 500;
    color: #000000;
}

.cookie-modal .modal-actions {
    margin-top: 38px;
    text-align: right;
}

.cookie-modal .policy {
    margin-top: 12px;
    font-size: 13px;
}

.cookie-modal a {
    color: #3771F5;
}

.cookie-content .title {
    margin-bottom: 20px;
}

.cookie-item strong {
    color: #2C2D31;
    font-size: 24px;
    font-weight: 500;
    margin-left: 10px;
}

.cookie-item p {
    color: #2C2D31;
    font-size: 20px;
    font-weight: 400;
    margin: 4px 0 0 24px;
    margin-left: 43px;
    margin-top: -4px;
}

.rounded-checkbox {
    display: inline-block;
    position: relative;
    cursor: pointer;
    font-size: 22px;
    user-select: none;
    width: 30px;
    height: 18px;
}

.rounded-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #fff;
    border: 3px solid #b1b4c1;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
}

.rounded-checkbox input:checked ~ .checkmark {
    background-color: #4a72f3;
    border-color: #4a72f3;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.rounded-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.rounded-checkbox .checkmark:after {
    left: 7px;
    top: 1px;
    width: 6px;
    height: 14px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.rounded-checkbox input:focus-visible ~ .checkmark {
    outline: 2px solid #000;
    outline-offset: 3px;
}

.section-bg-dark {
    background: #18222D;
    --arrow-color: #1a202c;
    --bottom-section-color: #1B2A38;
    --next-page-bg: #E9EBF1;
    --next-page-arrow: #FFFFFF;
    --scroll-bg: #1B2A38;
    padding-bottom: 60px !important;
    padding-top: 33px;
}

.section-bg-white {
    background: #FFFFFF;
    padding-top: 30px;
}

.new-age {
    background: #E9EBF1;
    --arrow-color: #F3F4F8;
    --next-page-bg: #FFFFFF;
    --scroll-bg: #F9FCFF;
    --next-page-arrow: #000000;
    padding-bottom: 40px !important;
    padding-top: 30px;
}

.top-down-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1;
    height: calc(3 * var(--bg-squere-size));
}

.pend-3 {
    padding-right: 3%;
}

.pt-15 {
    padding-top: 5px;
}

.pb-subt {
    padding-bottom: 46px;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.fs-68 {
    font-size: 68px;
}

.fs-24 {
    font-size: 24px;
}

.fs-56 {
    font-size: 2.93rem;
}

.fs-36 {
    font-size: 30px;
}

.fs-32 {
    font-size: 32px;
}

.f-color-dark {
    color: #18222D;
}

.z-index-1 {
    z-index: 1 !important;
}

.main-title {
    -webkit-line-clamp: 2;
    flex-grow: 1;
    white-space: nowrap;
    /*height: calc(5 * var(--bg-squere-size));*/
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: #44494B;
    z-index: 1;
    line-height: 1;
    min-height: 330px;
    padding-left: 21px;
}

.main-title p, .main-title b {
    font-family: 'Syne Bold', serif;
    font-size: clamp(1rem, 7.2vw, 6.4rem);
    overflow: hidden;
    text-overflow: ellipsis;
    color: #18222D;
    font-weight: 700;
    z-index: 1;
    line-height: 1.05;
}

.main-title b {
    color: #4670ED !important;
}


.full-width {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    position: relative;
    border: 0;
    border-top: 1px solid #A6A8AF !important;
    color: #A6A8AF !important;
    background: #A6A8AF !important;
    opacity: unset !important;
}

.blur-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    left: 0;
    top: -80px;
    background: rgba(48, 89, 232, 0.25);
    background: color(display-p3 0.227 0.345 0.878 / 0.25);
    background-blend-mode: multiply;
    filter: blur(129.95px);
    border-radius: 155px;
    z-index: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    will-change: filter;
}

.title-blur-bg {
    left: -500px;
    top: 60px;
}

.message-box {
    font-family: 'Code Saver', serif;
    background: #182634 !important;
    color: #FFFFFF;
    border-radius: 16px !important;
    font-size: 12px;
    padding: 10px 10px 10px 24px;
    font-weight: 400;
    text-transform: lowercase;
    position: absolute;
    Z-index: 1;
    width: calc(3.3 * var(--bg-squere-size) - 4px);
    border: 2px solid #6F89B7;
}

.main-title-hint {
    left: calc(97%);
    top: 61px;
    width: 133px !important;
    animation: float 4s ease-in-out infinite 1s;
}

.message-box-ico {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 8px;
}

.badge-1 {
    animation: float 4s ease-in-out infinite;
    top: 100px;
    right: 97%;
    width: calc(3.1 * var(--bg-squere-size));
}

.badge-2 {
    animation: float 4s ease-in-out infinite 1.5s;
    bottom: 61px;
    left: 97%;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.animated-on-scroll {
    transition: all 1s ease;
}

.cookie-banner {
    transition: all 1s ease;
}

.info-box {
    border-radius: 27px;
    height: 100%;
    background: #1B2A38;
    opacity: 0;
    transform: translateY(100px);
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    width: 100%;
}

.info-box-body {
    flex-grow: 1;
    font-weight: 200;
    padding: 20px;
    padding-top: 0 !important;
    color: #C1D1DF;
    font-family: "DM Sans-Light", "SF Pro Light", serif;
    font-size: clamp(14px, 1.16vw, 19px);
    line-height: 1.35;
}

.info-box-title {
    width: 100%;
    padding: 20px 20px 9px;
    font-weight: 500;
}

.info-box-title svg {
    height: 51px !important;
    width: 51px !important;
}

.info-box-text {
    color: #FFFFFF;
    margin-top: 14px;
    font-size: clamp(14px, 1.71vw, 30px);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 500;
    font-family: "DM Sans-Medium", serif;
}

.row.g-4 > [class^="col-"] {
    display: flex;
    flex-direction: column;
}

.footer {
    background: #EFF3FB;
    padding-top: 20px;
}

.home-comments-card {
    width: 392px !important;
    border-radius: 40px;
    background: #F7F8FA;
    padding: 22px 20px;
}

.card-body .fs-32, .card-body li {
    font-size: 20px;
    font-family: 'DM Sans-Light', serif;
    font-weight: 300;
    margin-bottom: 10px;
}

.card-body li {
    margin-bottom: 2px;
    margin-left: 9px;
}

.card-body .fs-24 {
    font-size: 17px;
}

.card-body svg {
    width: 50px;
    height: 50px;
}

.card-body b {
    font-weight: 500;
}

.comment-card-title {
    font-weight: 500;
    font-size: 27px;
    margin-bottom: 17px;
    font-family: "DM Sans-Medium", "SF Pro", serif;
    margin-top: -10px;
}

.card-scroll-row::-webkit-scrollbar {
    display: none;
}

.card-scroll-row {
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    scroll-behavior: smooth;
    width: 95vw;
    padding-right: 12vw;
}

.card-scroll-row::-webkit-scrollbar {
    display: none;
}

.ctrl-btn {
    width: 80px;
    height: 60px;
    border: none;
    background: #EDEEF3;
    border-radius: 54px;
}

.ctrl-btn svg path {
    stroke: #4670ED;
    stroke: color(display-p3 0.2745 0.4392 0.9294);
}

.ctrl-btn.disabled {
    pointer-events: none;
    border-color: #CBCCD1;
}

.ctrl-btn.disabled svg path {
    stroke: #CBCCD1;
    stroke: color(display-p3 0.7961 0.8000 0.8196);
}

.read-more-button {
    color: #4670ED;
    border-radius: 30px;
    background: #E5E8EE;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 300;
    font-size: 16px;
    margin-top: 24px;
    margin-bottom: -14px;
    margin-right: -6px;
    font-family: 'SF Pro Light', serif;
}

.statistics-info {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 35px;
    padding-right: 111px;
    align-items: center;
}

.statistics-info .statistic-title {
    font-size: 37px;
    font-family: 'Syne Regular', serif;
    font-weight: 500;
}

.statistics-info .statistic-description {
    text-transform: lowercase;
}

.social-links {
    display: flex;
    margin-top: 30px;
    flex-wrap: nowrap;
    padding-left: 30px;
    padding-right: 16px;
    flex-direction: row;
    justify-content: start;
    margin-right: auto;
    gap: 15px;
}

.social-links div {
    display: flex;
    justify-content: flex-end;
}

.social-link {
    border-radius: 50%;
    display: flex;
    background: #D9DCE7;
    justify-content: center;
    align-items: center;
    max-width: 58px;
    max-height: 58px;
    width: 5vw;
    height: 5vw;
    position: relative;
    transition: color 0.7s ease;
}

.social-link::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid #4670ED;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: capitalize;
}

.social-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.social-link:hover svg path {
    fill: #4670ED !important;
}

.social-link:hover {
    color: #4670ED;
}

.social-link svg {
    max-width: 30px;
    max-height: 30px;
    width: auto;
    height: 1.7vw;
}

.footer-logo {
    max-height: 47px;
    height: 5vw;
    width: auto;
}

.footer-links {
    display: flex;
    flex-direction: row;
    width: calc(100% - 63px);
    margin: 20px 20px 50px 53px;
    justify-content: space-between;
}

.footer-links a {
    text-decoration: none;
    color: #000000;
    font-weight: 400;
    font-size: clamp(14px, 1.3vw, 28px);
    font-family: 'Syne Regular', serif;
}

.f-auto {
    flex: auto !important;
}

.rights {
    white-space: nowrap;
    font-size: clamp(14px, 1vw, 21px);
    padding-top: 1rem !important;
    font-family: 'DM Sans-Light', serif;
    font-weight: 300;
}

.privacy-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    width: 100%;
    white-space: nowrap;
    margin-top: 30px !important;
    font-size: clamp(14px, 1vw, 21px);
}

.privacy-links svg {
    width: 5px;
}

.privacy-links .text-decoration-none {
    padding-top: 0 !important;
    color: #000000 !important;
    font-family: 'DM Sans-Light', serif;
    font-weight: 300;
}

.phone-card {
    border-radius: 35px;
    min-width: 300px;
    max-width: 370px;
    padding: 30px;
    background: #F9FCFF;
    position: relative;
    font-size: clamp(1.25rem, 1.323vw, 1.35rem);
    display: flex;
    flex-direction: column;
}

.phone-card-separate {
    background: none;
    border: 1px solid #4670ED;
    margin-left: 55px;
}

.phone-card .title-msg {
    text-transform: capitalize;
    font-size: clamp(1.43rem, 0.7vw, 2.5rem);
    font-weight: 600;
    font-family: 'DM Sans-SemiBold', sans-serif;
}

.phones-transfer {
    position: absolute;
    margin-left: auto;
    top: 68px;
    transform: translate(calc(-98% + 1px), 0);
}

.phones-transfer img {
    height: 110px;
}

.col-lg-8_5 {
    flex: 0 0 auto;
}

.col-lg-3_5 {
    flex: 1;
}

.mt-phone {
    margin-top: 172px;
}

.pl-main {
    padding-left: 15px;
}

.mh-sub-title {
    height: calc(3 * var(--bg-squere-size) + 1px);
}

.mh-title {
    height: calc(10 * var(--bg-squere-size));
}

.mh-main {
    height: calc(13 * var(--bg-squere-size) + 1px);
}

.ff-dml {
    font-family: 'DM Sans-Light', serif;
}

#scrollText span {
    color: #000000;
    transition: color 0.3s;
}

#scrollText span.active {
    color: #FFFFFF;
}

.top-down-row {
    margin-top: auto;
    margin-bottom: auto;
}

.download-section {
    position: relative;
    padding: 23px 0 30px 31px;
    height: 100%;
    justify-content: center;
    line-height: 1;
    /*margin-left: calc(((100vw - var(--container-max-width)) / 2) + 38px);*/
    /*margin-left: calc(-3 * var(--bg-squere-size) - 2px);*/
}

.download-section b {
    font-family: 'Syncopate Bold', sans-serif;
    font-size: clamp(12px, 2.4vw, 36px);
    color: #000000;
    font-weight: 700;
    z-index: 2;
}

.download-section p {
    font-family: 'Syne Regular', sans-serif;
    font-size: clamp(12px, 2.1vw, 30px);
    color: #5E6062;
    font-weight: 400;
    z-index: 2;
}

.app-links {
    position: relative;
    gap: 18px;
    display: none;
    margin-top: -20px;
}

.pl-links {
    padding-left: 13px;
}

.app-links a:hover {
    background: #111111;
}

.app-links a svg .hover-white {
    fill: #FFFFFF !important;
}

.app-links a svg {
    height: 31px !important;
    width: 188px;
}

.app-links-bg {
    background-color: #DDE2EB;
    position: absolute;
    width: calc(100% + 20px + ((100vw - var(--container-max-width)) / 2));
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
}

.app-links a {
    max-width: 200px;
    max-height: 61px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 11px;
    background: #D5D8DF;
    padding: 20px;
    transition: all 0.1s;
    z-index: 1;
}


.app-links a {
    background: #000000;
}

.mobile-show {
    display: none !important;
}

.headline-msg {
    gap: 1.8rem !important;
}

.features-section {
    --bs-gutter-y: 23px;
    --bs-gutter-x: 23px;
}

.title-text {
    font-size: clamp(2rem, 3.6vw, 3rem);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 123px;
    line-height: 1.1;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-family: "Syne Bemi-Bold", sans-serif;
}

.title-small-text {
    font-size: clamp(1rem, 3.3vw, 2.43rem);
    text-transform: none;
    margin-left: -12px;
    font-weight: 500;
    font-family: 'DM Sans-Medium', serif;
}

.title-small-three {
    font-size: clamp(0.9rem, 1.3vw, 1.5rem);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-left: -15px;
}

.title-small-text p, .title-small-three p {
    margin: 0;
    white-space: nowrap;
}

.paragraph-img, .paragraph-light {
    height: 85px;
    margin-left: -16px;
}

.web-hide {
    display: none !important;
}

.d-center {
    display: flex;
    align-items: center;
}

mark {
    background-color: #ffcf33 !important;
    color: black !important;
}

.current-match {
    background-color: #ff8c00 !important;
}

#be-private {
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.phone-cam {
    width: 11px;
}

.phone-wifi {
    width: 20px;
}

.phone-line {
    width: 86px;
}

.privacy-items {
    margin-right: 10px;
}

.phone-card-separate .ff-dml {
    padding-bottom: 36px;
}

.advantages-section .text-part {
    margin-top: 34px;
    text-transform: capitalize;
    padding-bottom: 35px;
    height: 100%;
    padding-right: 0;
}

.advantages-section .row {
    margin-bottom: 39px;
    padding-right: 0;
}

.mob-row-reverse {
    margin-bottom: 41px;
}

.text-part div {
    font-family: 'DM Sans-Light', 'Syne Regular', 'sans-serif';
    font-size: clamp(1.1rem, 1.5vw, 1.39rem);
    font-weight: 500;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 37px;
    background-color: #E3E1E133;
    padding-left: 24px;
    padding-right: 24px;
}

.use-cases-section {
    margin-top: 70px;
    border-radius: 46px;
    padding-left: 177px;
    padding-right: 177px;
    padding-bottom: 100px;
}

.use-cases-section .row {
    padding-top: 30px;
}

.use-cases-section h4 {
    font-size: 56px;
    font-family: 'Syne Medium', 'Syne Regular', 'sans-serif';
    font-weight: 500;
    padding-top: 52px;
    padding-bottom: 20px;
}

.use-cases-section img {
    width: 100%;
}

.use-cases-section .use-cases-body {
    padding-top: 20px;
    font-size: 25px;
}

.use-cases-body, .use-cases-body li {
    font-family: 'DM Sans-Light', sans-serif;
}

.use-cases-body li::marker {
    font-size: 1.1rem;
}

.use-cases-body a, .card-body a {
    color: #4670ED !important;
}


.use-cases-body b, .card-body b {
    color: #000000 !important;
    font-weight: 600 !important;
    font-family: 'DM Sans-SemiBold', 'DM Sans', sans-serif;
}

.advantages-section, .blog-section, .blog-post-section, .faq-section, .faq-item-section {
    margin-top: 70px;
    border-radius: 40px;
    padding: 48px 44px 28px;
}

.advantages-section h4, .blog-section h4, .blog-post-section h4, .faq-section h4, .faq-item-section h4 {
    font-family: 'Syne Medium', 'Syne Regular', 'sans-serif';
    font-weight: 500;
    text-transform: capitalize;
    padding-bottom: 30px;
    padding-left: 20px;
    font-size: clamp(1rem, 4.3vw, 2.81rem);
}

.advantages-section .c1 {
    flex: 0 0 auto;
    width: 51%;
}

.advantages-section .c2 {
    flex: 0 0 auto;
    width: 49%;
}

.advantages-section h4 .grey-text {
    color: #6C6D71;
    text-wrap: nowrap;
    text-transform: capitalize;
}

.advantages-ml {
    margin-left: 17px;
}

.advantages-tpl {
    padding-left: 16px;
}

.advantages-tpr {
    padding-right: 16px !important;
}

.advantages-pl {
    padding-left: 13px !important;
}

.advantages-pr {
    padding-right: 14px !important;
}


.footer-slogan {
    font-family: 'Syne Regular', 'sans-serif';
    font-size: 18px;
}

.footer-down-links {
    display: flex;
    flex-direction: row;
    justify-content: start;
    margin-top: 30px;
    margin-right: 30px;
}

.footer-down-links a {
    max-width: 165px;
}

.about-us-section {
    border-top-right-radius: 40px;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    padding-bottom: 64px;
    margin-top: 70px;
    padding-left: 128px;
    padding-right: 128px;
}

.about-us-page img {
    border-bottom-left-radius: 40px !important;
    border-bottom-right-radius: 40px !important;
}

.about-us-section h4 {
    font-size: 45px;
    font-weight: 500;
    font-family: 'Syne Medium', serif;
    padding-bottom: 30px;
    padding-top: 52px;
    color: #000000;
}

.about-us-section b {
    font-weight: 500;
    font-family: 'DM Sans-Bold', serif;
}

.about-us-section h5 {
    font-size: 38px;
    font-weight: 500;
    font-family: 'DM Sans-Medium', serif;
    padding-bottom: 9px;
    padding-top: 5px;
    color: #000000;
}

.bottom-rounded {
    border-bottom-left-radius: 40px !important;
    border-bottom-right-radius: 40px !important;
}

.about-us-section div {
    font-size: clamp(1.36rem, 0.76vw, 1.4rem);
    font-weight: 400;
    font-family: 'DM Sans-Light', serif;
    margin-bottom: 28px;
}

.about-us-section a {
    color: #4670ED;
    text-decoration: none;
}

.toolbar {
    width: 90px;
    height: 80px;
    border-radius: 999px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    cursor: pointer;
    transition: width .45s cubic-bezier(.16, 1, .3, 1), height .45s cubic-bezier(.16, 1, .3, 1);
    margin-top: 6px;
    z-index: max(1005);
    right: 0;
    margin-left: auto;
}

.toolbar.expanded {
    width: 70%;
    height: 522px;
    border-radius: 36px;
}

.dots {
    color: #000000;
    font-size: 48px;
    cursor: pointer;
    z-index: 2;
    position: absolute;
    right: 19px;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity .3s ease;
    margin-right: 23px;
}

.dots svg {
    width: 78px;
    height: 78px;
}

.toolbar.expanded .dots {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%);
    transition: opacity .1s ease;
}

.menu-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 46px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    /*transform: translateX(23px) !important;*/
    transition: opacity .25s ease .15s,
    transform .35s ease .15s,
    visibility 0s linear .35s;
    align-items: start !important;
    z-index: 1;
    filter: none;
    border: none !important;
    top: -8px;
    height: 80px !important;
    box-shadow: none !important;
    background: transparent !important;
}

.toolbar.expanded .menu-content {
    opacity: 1;
    top: 193px;
    padding: 340px 67px;
    visibility: visible;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.5) !important;
    transition: opacity .25s ease .15s, transform .35s ease .15s;

    backdrop-filter: blur(20px) saturate(100%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.menu-content a {
    color: #000;
    text-decoration: none;
    font-size: clamp(25px, 7vw, 66px);
    opacity: 0;
    transform: translate(20px, 20px);
    font-family: 'Syne Regular', serif;
}

.toolbar.expanded .menu-content a:nth-child(1) {
    opacity: 1;
    transform: none;
    transition-delay: .18s;
}

.toolbar.expanded .menu-content a:nth-child(2) {
    opacity: 1;
    transform: none;
    transition-delay: .24s;
}

.toolbar.expanded .menu-content a:nth-child(3) {
    opacity: 1;
    transform: none;
    transition-delay: .30s;
}

.toolbar.expanded .menu-content a:nth-child(4) {
    opacity: 1;
    transform: none;
    transition-delay: .36s;
}


@media (min-width: 1321px) and (max-width: 1570px) {
    .mr-ico {
        right: 25px !important;
        width: 15px !important;
        height: 15px !important;
    }

    .phone-card {
        max-width: 330px;
        border-radius: 33px;
        padding: 17px;
    }
}

@media (max-width: 1400px) {
    .main-phone-box {
        padding-right: calc(3.1 * var(--bg-squere-size)) !important;
        width: 1;
    }

    .phone-card {
        max-width: 330px;
        border-radius: 33px;
        padding: 17px;
    }

    .title-small-text {
        font-size: clamp(1rem, 2.8vw, 2.43rem);
    }

    .title-text {
        font-size: clamp(2rem, 3.3vw, 3rem);
    }

    .phone-card .title-msg {
        font-size: clamp(1.31rem, 0.5vw, 2.5rem);
    }

    .phone-card-separate {
        margin-left: 17px;
    }

    .advantages-section .text-part {
        margin-top: 2vw;
    }

    .text-part div {
        font-size: clamp(1.1rem, 1vw, 1.39rem);
    }
}


@media (max-width: 1130px) {
    .main-phone-box {
        height: calc(12.2 * var(--bg-squere-size) + 1px);
    }
}

@media (min-width: 1080px) and (max-width: 1200px) {
    .phone-container, .phone-img {
        max-width: calc(4.8 * var(--bg-squere-size) + 4px) !important;
    }

    .main-title p, .main-title b {
        font-size: clamp(1rem, 6.7vw, 6.4rem);
    }

}

@media (min-width: 992px) and (max-width: 1320px) {
    .full-page-heigh {
        height: auto !important;
    }

    .mobile-show {
        display: none;
    }

    .navbar-header {
        gap: 40px !important;
        margin-right: 4% !important;
    }

    .cookie-banner {
        width: 340px;
        padding: 20px;
    }

    .cookie-content .title {
        font-size: 24px;
    }

    .cookie-content p {
        font-size: 14px;
    }

    .cookie-content .btn {
        font-size: 16px;
        height: 43px;
    }

    .footer .fs-68 {
        font-size: 57px;
    }

    .social-links {
        margin-inline: 10px !important;
    }

    .social-link {
        width: 50px !important;
        height: 50px !important;
    }

    .social-link svg {
        width: 30px;
        height: 30px;
    }

    .footer-links a {
        font-size: 20px !important;
    }

    .footer-logo {
        height: 50px;
    }

    .paragraph-img, .paragraph-light {
        height: 8vw !important;
    }

    .phones-transfer img {
        height: 6.5vw !important;
    }

    .mt-phone {
        margin-top: 157px !important;
    }

    .phone-card {
        max-width: 300px;
    }

    .phone-card-separate {
        margin-left: 10px;
        min-width: auto;
    }

}


@media (min-width: 992px) and (max-width: 1200px) {
    .text-part div {
        font-size: clamp(0.95rem, 1vw, 1.39rem);
    }

    .phone-card .title-msg {
        font-size: clamp(1.1rem, 0.5vw, 2.5rem);
    }

    .phone-card {
        min-width: 28%;
        max-width: 27%;
        font-size: clamp(1rem, 1.323vw, 1.35rem);
    }
}


@media (max-width: 991px) {
    :root {
        --bg-squere-size: 93px;
    }

    .top-nav {
        position: absolute !important;
    }


    .header {
        top: 50px;
    }

    .full-page-height::before {
        height: calc(100% + 186px);
    }

    .main-message-box-bg {
        height: calc(11 * var(--bg-squere-size));
        margin-top: -26px;
        z-index: 0;
    }

    .message-box-ico {
        width: 11px;
        top: 14px;
        left: 15px;
    }

    .mh-title {
        height: calc(3 * var(--bg-squere-size));
    }

    .mh-main {
        height: calc(14 * var(--bg-squere-size));
    }

    .main-title-hint {
        left: calc(96%);
        top: 43%;
        width: 144px !important;
    }

    .badge-1 {
        right: 91%;
    }

    .badge-2 {
        bottom: 250px;
        left: -24vw;
    }

    .blur-bg {
        left: 138px;
        top: -200px;
        width: 660px;
        height: 660px;
    }

    .title-blur-bg {
        left: -300px !important;
        top: 600px !important;
        width: 500px !important;
        height: 500px !important;
        opacity: 1;
    }

    .download-section {
        width: 100% !important;
        height: calc(2 * var(--bg-squere-size));
        padding: 40px 0 30px 34px;
    }

    .container {
        padding-right: 0 !important;
        padding-left: 0 !important;
        max-width: 89% !important;
    }

    .main-slogan {
        padding-top: 10px !important;
        padding-left: 0 !important;
        padding-right: 20px !important;
        font-size: clamp(10px, 3.3vw, 36px);
        height: calc(2 * var(--bg-squere-size));
        line-height: 1.3;
    }

    .main-slogan-bg {
        border-top-right-radius: 53px;
        border-bottom-left-radius: 53px;
    }

    .app-links-bg {
        border-bottom-left-radius: 53px;
        border-top-right-radius: 53px;
    }

    .section-bg-dark, .new-age, .section-bg-white {
        padding-top: 59px;
    }

    .col-lg-9_5 {
        width: 100%;
    }

    .glassDiv {
        padding: 20px;
        border-radius: 60px;
        height: 124px !important;
    }

    .container.first-top {
        height: auto !important;
    }

    .logo {
        width: 170px !important;
        height: 120px !important;
    }

    .full-page-height {
        margin-top: 178px !important;
        height: fit-content !important;
        padding-left: 16px;
        padding-right: 16px;
        max-height: none !important;
    }

    .zangi-main-img {
        width: 40vw;
        height: 20vw;
        max-width: none;
    }

    .mobile-show {
        display: block !important;
    }

    .mobile-hide {
        display: none !important;
    }

    .navbar-header {
        gap: 40px !important;
        margin-right: 0 !important;
    }

    .main-message-box {
        width: 100% !important;
        padding: 26px 30px 20px 0 !important;
    }

    .main-phone-box {
        margin-top: -97px;
        padding-right: calc(1.5 * var(--bg-squere-size)) !important;
    }

    .phone-container, .phone-img {
        max-width: 47vw;
        height: 93%;
        max-height: 970px;
    }

    .main-title {
        margin-left: -2px !important;
        margin-top: -16px;
        padding-left: 0 !important;
        margin-bottom: 0 !important;
        white-space: wrap !important;
    }

    .main-title p {
        font-size: 11.68vw !important;
    }

    .main-title .mt-4 {
        margin-top: 3.5rem !important;
    }

    .app-links {
        display: flex;
        gap: 30px;
    }

    .app-links a {
        width: 27vw !important;
        height: 14vw !important;
        max-width: 256px;
        max-height: 100px;
        border-radius: 20px;
    }

    .app-links a svg {
        height: 70px !important;
        width: 210px;
    }

    .paragraph-img, .paragraph-light {
        margin-left: 18px;
        height: 110px;
    }

    .features-section {
        --bs-gutter-x: 25px;
    }

    .card-body li::marker {
        font-size: 19px !important;
    }

    .pb-subt {
        padding-bottom: 34px;
    }

    .mob-ml {
        margin-left: -12px;
    }

    .info-box-title {
        padding: 25px 25px 17px;
    }

    .info-box-title svg {
        height: 86px !important;
        width: 86px !important;
    }

    .download-section b {
        font-size: clamp(12px, 4.6vw, 59px);
    }

    .download-section p {
        font-size: clamp(12px, 3.9vw, 59px);
    }

    .new-era {
        width: 44vw !important;
        margin-left: auto !important;
        margin-right: 40px !important;
        padding-bottom: 15px !important;
        padding-top: 15px !important;

    }

    .new-era svg {
        width: 22px;
        height: 22px;
    }

    .cookie-banner {
        width: 480px;
        padding: 20px;
    }

    .cookie-content .title {
        font-size: 27px;
    }

    .cookie-content p {
        font-size: 22px;
    }

    .cookie-content .btn {
        font-size: 22px;
        height: 50px;
    }

    .message-box {
        width: 25.5vw;
        margin-right: 25px !important;
        margin-top: 25px !important;
        font-size: clamp(1rem, 2.2vw, 2.5rem);
        padding: 15px 20px 10px 40px;
        border-radius: 20px !important;
    }

    .hide-mobile {
        display: none !important;
    }

    .info-box-text {
        font-size: clamp(14px, 3.5vw, 38px);
        margin-top: 20px;
    }

    .info-box-body {
        font-weight: 1.4;
        font-size: clamp(14px, 3vw, 38px);
        padding: 25px;
    }

    .ff-dml {
        padding-bottom: 60px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .social-links {
        justify-content: space-between;
        padding-left: 0;
        padding-right: 0;
        margin-top: 65px;
    }

    .d-flexi {
        display: flex !important;
    }

    .social-links div {
        max-width: 140px;
        display: flex;
        justify-content: center;
    }

    .phone-card {
        max-width: none;
        width: 48.2% !important;
        font-size: 24px;
        text-transform: capitalize;
        padding: 23px;
    }

    .phone-card .title-msg {
        font-size: 29px !important;
        padding-left: 10px;
        padding-right: 10px;
    }

    .phone-card .fs-32 {
        font-size: 20px !important;
    }

    .phone-line {
        width: 115px;
    }

    .privacy-items {
        border-left: 1px solid #A3AAB0;
        padding-left: 20px;
        width: 100%;
        align-items: end;
    }

    .privacy-links svg {
        width: 7px;
    }

    .footer-mlogo {
        padding-top: 60px;
        padding-right: 93px;
        width: 51%;
        padding-bottom: 140px;
    }

    .footer-logo {
        width: 100%;
        max-height: none;
        height: auto;
        padding-right: 16px;
    }

    .footer-slogan {
        font-size: clamp(1rem, 3.3vw, 2.5rem) !important;
        padding-right: 0;
    }

    .mh-sub-title {
        margin-top: -93px;
        height: calc(2 * var(--bg-squere-size));
    }

    .full-page-height .container > .row:first-of-type {
        min-height: calc(15 * var(--bg-squere-size));
    }

    .top-down-row {
        height: calc(2 * var(--bg-squere-size));
    }

    .privacy-links div {
        width: 100% !important;
    }

    .privacy-links .border-right {
        border: none !important;
    }

    .privacy-links .text-end {
        text-align: left !important;
    }

    .fs-68 {
        font-size: 48px !important;
    }

    .fs-32 {
        font-size: 31px !important;
    }

    .card-body .fs-32, .card-body li {
        font-size: clamp(1rem, 3.15vw, 3rem) !important;
        line-height: 1.32;
    }

    .card-body li {
        padding-left: 10px;
    }

    .card-body .fs-32 {
        margin-bottom: 32px;
    }

    .read-more-button {
        font-size: 25px;
        padding: 12px 22px;
        margin-right: -2px;
    }

    .title-text {
        height: auto !important;
        font-size: 7.6vw !important;
        line-height: 1.2;
    }

    .title-small-text {
        font-size: clamp(3rem, 5.4vw, 7rem);
        margin-left: 12px;
    }

    .title-small-three {
        font-size: clamp(1.9rem, 1.8vw, 2.8rem);
        margin-left: 0;
    }

    .navbar-brand {
        font-size: clamp(1.9rem, 3.4vw, 3rem) !important;
    }


    #be-private {
        border-bottom-left-radius: 67px;
        border-bottom-right-radius: 67px;
    }

    .headline-msg {
        gap: 10px !important;
        margin-top: 47px !important;
        margin-bottom: 38px !important;
    }

    .headline-msg svg {
        height: 108px;
    }

    .phone-card .mt-phone .fw-bolder {
        font-size: 3vw !important;
    }

    .phones-transfer {
        top: 94px;
    }

    .phones-container {
        margin-top: -8px;
    }

    .phones-transfer img {
        width: 42vw !important;
        height: 123px;
    }

    .phone-card .mt-phone {
        margin-top: 23vw !important;
    }

    .saf-mt-60 {
        margin-top: 70px !important;
    }

    .container-fluid {
        padding-right: 0 !important;
        width: 100%;
    }

    .card-scroll-row {
        gap: 37px !important;
    }

    .container-fluid .flex-row {
        margin-right: 2px !important;
        margin-top: 60px !important;
        margin-bottom: 58px;
        gap: 26px !important;
    }

    .private-svg {
        height: 118px !important;
        margin-top: -12px !important;
    }

    .follow-us {
        margin-top: 0 !important;
    }

    .footer .border-left {
        border-left: none !important;
    }

    .footer .rights, .footer .privacy-links {
        width: auto !important;
        font-size: clamp(1rem, 3.1vw, 2.5rem);
    }

    .footer .privacy-links {
        margin-top: 128px !important;
    }

    .footer .rights {
        align-items: end;
        display: flex;
        padding-bottom: 26px !important;
        padding-top: 25px !important;
    }

    .footer-down-links {
        height: auto !important;
        width: 100%;
        justify-content: center !important;
        padding-bottom: 1rem !important;
    }

    .pl-links {
        margin-top: auto;
        margin-bottom: auto;
        height: 100%;
        align-items: center;
        padding-left: 0 !important;
    }

    .web-hide {
        display: flex !important;
    }

    .articles {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .articles .pv-20 {
        padding-left: 5% !important;
        padding-right: 5% !important;
    }

    .privacy-container {
        margin-top: 180px !important;
    }

    .footer-links {
        margin: 56px 0 65px 0;
        width: 100%;
    }

    .use-cases-section, .about-us-section {
        margin-top: 170px !important;
        padding-left: 50px !important;
        padding-right: 50px !important;
    }

    .advantages-section, .blog-section, .faq-section {
        margin-top: 170px !important;
    }

    .social-link {
        max-width: 112px;
        max-height: 112px;
        width: 17vw;
        height: 13vw;
    }

    .card-body {
        padding: 0 !important;
    }

    .home-comments-card {
        width: 592px !important;
        padding: 52px 41px 45px 50px;
        border-radius: 49px;
    }

    .comment-card-title {
        font-size: clamp(1rem, 4.3vw, 2.7rem);
        margin-bottom: 27px;
    }

    .ctrl-btn {
        width: 13vw;
        height: 9vw;
        max-width: 150px;
        max-height: 130px;
    }

    .ctrl-btn svg {
        height: 6vw;
        width: 1.7vw;
    }

    .footer-down-links a {
        max-width: none !important;
        width: 100% !important;
        max-height: 135px;
    }

    .footer-down-links a svg {
        height: 120px !important;
        width: 285px;
    }

    .social-link svg {
        max-width: 50px;
        max-height: 70px;
        height: 5vw;
    }

    .footer-links a {
        font-size: clamp(14px, 4.4vw, 38px);
    }

    .phone-cam {
        width: 15px;
    }

    .phone-wifi {
        width: 20px;
    }

    .footer {
        padding-top: 60px;
    }

    .mob-row-reverse {
        flex-direction: column-reverse !important;
    }

    .about-us-section {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }

    .about-us-section h4 {
        font-size: 50px !important;
    }

    .about-us-section div {
        font-size: clamp(2rem, 1vw, 2rem) !important;
    }

    .advantages-section h4, .blog-section h4 {
        font-size: clamp(3rem, 4.3vw, 3rem) !important;
    }

    .advantages-section .c1, .advantages-section .c2 {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .advantages-section .row .d-flex {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .advantages-tpl {
        padding-left: calc(var(--bs-gutter-x) * .5) !important;
    }

    .advantages-section .row {
        margin-bottom: 44px;
    }

    .advantages-section .text-part {
        height: auto;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .advantages-tpl, .advantages-pl {
        padding-left: 0 !important;
    }

    .advantages-tpr, .advantages-pr {
        padding-right: 0 !important;
    }

    .text-part div {
        background: none;
        padding-left: 0;
        padding-right: 0;
        height: auto;
        font-size: clamp(2.3rem, 2.3vw, 2rem) !important;
    }
}

@media (max-height: 890px) {
    .top-down-row {
        max-height: 240px;
    }

    .app-links a {
        width: 160px;
        height: 50px;
    }

    .social-link {
        width: 50px;
        height: 50px;
    }

    .social-link svg {
        max-width: 25px;
        max-height: 25px;
    }

    .app-links a img {
        height: 35px !important;
    }

    .error-code {
        font-size: 100px !important;
    }
}

.error-page {
    text-align: center;
}

.error-code {
    font-size: 160px !important;
    line-height: 1;
    font-weight: 500;
    font-family: 'Syne Medium', serif;
    color: #4670ED;
    margin-bottom: 10px !important;
    padding-top: 120px;
}

.error-text {
    max-width: 520px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.error-home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: #3771F5;
    background: color(display-p3 0.275 0.439 0.929);
    border-radius: 48px;
    color: #FFFFFF !important;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
}

.error-home-btn:hover {
    color: #FFFFFF !important;
    opacity: 0.9;
}
}