@font-face {
    font-family: "BodoniPTWebSubhead";
    src: url("assets/fonts/Bodoni-PT_Subhead.web/bodoni-pt_subhead.woff2") format("woff2"),
         url("assets/fonts/Bodoni-PT_Subhead.web/bodoni-pt_subhead.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "BodoniPTWebTextItalic";
    src: url("assets/fonts/Bodoni-PT_Text-Italic.web/bodoni-pt_text-italic.woff2") format("woff2"),
         url("assets/fonts/Bodoni-PT_Text-Italic.web/bodoni-pt_text-italic.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "DIN2014WebRegular";
    src: url("assets/fonts/DIN-2014_Regular.web/din-2014_regular.woff2") format("woff2"),
         url("assets/fonts/DIN-2014_Regular.web/din-2014_regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "DIN2014WebNarrow";
    src: url("assets/fonts/DIN-2014_Narrow.web/din-2014_narrow.woff2") format("woff2"),
         url("assets/fonts/DIN-2014_Narrow.web/din-2014_narrow.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-card: #ffffff;
    --bg-dark: #1a1a1a;
    --bg-soft: #f9f9f9;
    --text: #1a1a1a;
    --text-soft: #646464;
    --text-light: #ffffff;
    --border: #1a1a1a;
    --accent: #00bbdc;
    --shadow: 0 24px 60px rgba(26, 26, 26, 0.1);
    --display-font: "BodoniPTWebSubhead", "Times New Roman", serif;
    --display-italic-font: "BodoniPTWebTextItalic", "Times New Roman", serif;
    --text-font: "DIN2014WebRegular", "Segoe UI", Arial, sans-serif;
    --narrow-font: "DIN2014WebNarrow", "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #ffffff;
    color: var(--text);
    font-family: var(--text-font);
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.page-shell {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    background: #ffffff;
}

.taplink {
    width: min(100%, 360px);
    background: var(--bg-card);
}

.topbar {
    width: min(100%, 360px);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 10;
    margin-bottom: -1px;
}

.topbar__brand {
    font-family: var(--display-italic-font);
    font-size: 30px;
    line-height: 1;
    font-style: normal;
    color: var(--text);
}

.hero {
    position: relative;
    aspect-ratio: 320 / 410;
    overflow: hidden;
    background: linear-gradient(135deg, #a0a8b0 0%, #d5d9dd 100%);
}

.hero__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero picture {
    display: block;
    width: 100%;
    height: 100%;
}

.cookie-banner {
    width: calc(100% - 30px);
    max-width: 290px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px auto 0;
}

.cookie-banner.is-hidden {
    display: none;
}

.cookie-banner__bar {
    flex: 1 1 auto;
    min-height: 31px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 6px 10px 8px;
    background: var(--bg-dark);
}

.cookie-banner__text,
.cookie-banner__accept {
    color: var(--text-light);
}

.cookie-banner__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.15;
}

.cookie-banner__text a {
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.cookie-banner__text a:hover,
.cookie-banner__text a:focus-visible {
    color: var(--accent);
}

.cookie-banner__accept {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: 0;
    padding: 0;
    font-size: 15px;
    line-height: 1.15;
    transition: color 0.2s ease;
}

.cookie-banner__accept:hover,
.cookie-banner__accept:focus-visible {
    color: var(--accent);
}

.cookie-banner__accept-icon {
    display: inline-flex;
}

.cookie-banner__close {
    flex: 0 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    padding: 0;
    border: 0;
    color: var(--text);
    background: transparent;
    transition: color 0.2s ease;
}

.cookie-banner__close:hover,
.cookie-banner__close:focus-visible {
    color: var(--accent);
}

.section {
    padding: 40px 15px;
}

.section--border {
    border-top: 1px solid var(--border);
}

.section__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 290px;
    margin: 0 auto;
    text-align: center;
}

.intro__eyebrows {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.eyebrow,
.section-copy,
.section-subtitle,
.footer-links a,
.email-card__link,
.cookie-banner__text {
    font-size: 15px;
    line-height: 1.15;
}

.eyebrow {
    margin: 0;
    text-align: center;
}

.section-title {
    margin: 0;
    font-family: var(--display-font);
    font-size: 32px;
    line-height: 1;
    font-weight: 400;
    text-align: center;
    font-feature-settings: "pnum" on, "lnum" on;
}

.section-copy {
    margin: 0;
    text-align: center;
}

.section-subtitle {
    margin: 0;
}

.intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding-top: 40px;
}

.intro .section__header {
    gap: 16px;
}

.intro__text {
    font-size: 20px;
    line-height: 1.2;
}

.intro__text--description {
    text-align: center;
}

.outline-button {
    width: 100%;
    max-width: 290px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    font-family: var(--display-italic-font);
    font-size: 17px;
    line-height: 1;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    font-feature-settings: "case" on;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.outline-button span {
    display: block;
    max-width: 250px;
    margin: 0 auto;
}

.outline-button:hover,
.outline-button:focus-visible {
    background: var(--accent);
    color: var(--text-light);
    border-color: var(--accent);
}

.outline-button--hero,
.outline-button--submit {
    width: 100%;
    min-height: 48px;
}

.outline-button--hero {
    padding-right: 12px;
    padding-left: 12px;
    white-space: nowrap;
}

.outline-button--submit[disabled] {
    opacity: 0.6;
    cursor: wait;
    transform: none;
}

.outline-button--multi {
    height: auto;
    padding: 15px 20px 16px;
}

.outline-button--group-large {
    min-height: 82px;
}

.outline-button--group-compact {
    min-height: 65px;
}

.contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.phone-row {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease;
}

.phone-row__icon {
    display: inline-flex;
}

.phone-row__text {
    font-size: 20px;
    line-height: 1.2;
}

.phone-row:hover,
.phone-row:focus-visible {
    color: var(--accent);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-links__item {
    display: inline-flex;
    width: 36px;
    height: 36px;
    color: var(--text);
    transition: color 0.2s ease;
}

.social-links__item:hover,
.social-links__item:focus-visible {
    color: var(--accent);
}

.social-links__item svg {
    display: block;
}

.email-card {
    width: 100%;
    max-width: 290px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    padding: 0 24px;
    background: var(--bg-soft);
    color: var(--text);
    cursor: pointer;
    transition: color 0.2s ease;
}

.email-card__main {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin: 0 auto;
    flex: 1 1 auto;
    justify-content: center;
}

.email-card__icon {
    display: inline-flex;
    flex: 0 0 auto;
}

.email-card__link {
    flex: 0 1 auto;
    text-align: center;
}

.email-card__copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #b3b3b3;
    flex: 0 0 auto;
    transition: color 0.2s ease;
}

.email-card:hover,
.email-card:focus-visible,
.email-card:focus-within {
    color: var(--accent);
}

.email-card:hover .email-card__copy,
.email-card:focus-visible .email-card__copy,
.email-card:focus-within .email-card__copy,
.email-card__copy:hover,
.email-card__copy:focus-visible {
    color: var(--accent);
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 290px;
    margin: 0 auto;
    gap: 15px;
}

.field {
    display: block;
}

.field__control {
    position: relative;
    display: block;
    min-height: 76px;
    padding-top: 17px;
    padding-bottom: 27px;
}

.field__label {
    position: absolute;
    left: 0;
    right: 0;
    top: 22px;
    z-index: 1;
    color: #b3b3b3;
    text-align: center;
    font-size: 15px;
    line-height: 1.15;
    pointer-events: none;
    transition: top 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.field__input {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--border);
    min-height: 32px;
    background: transparent;
    color: var(--text);
    text-align: center;
    border-radius: 0;
    appearance: none;
    margin: 0;
    font-size: 15px;
    line-height: 1.15;
}

.field__input:focus {
    outline: none;
}

.field__input::placeholder {
    color: transparent;
    transition: color 0.2s ease;
}

.field--phone .field__input:focus::placeholder {
    color: #b3b3b3;
}

.field:focus-within .field__label,
.field.is-filled .field__label {
    top: 0;
}

.consent {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 12px;
    align-items: start;
}

.consent__checkbox {
    width: 16px;
    height: 16px;
    margin: 2px 0 0;
    border: 1px solid var(--border);
    border-radius: 0;
    background: #ffffff;
    appearance: none;
    -webkit-appearance: none;
    display: inline-grid;
    place-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.consent__checkbox::before {
    content: "";
    width: 10px;
    height: 7px;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='7' viewBox='0 0 10 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.5L3.4 6L9 1' stroke='%23FFFFFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.consent__checkbox:checked {
    background: var(--accent);
    border-color: var(--accent);
}

.consent__checkbox:checked::before {
    opacity: 1;
}

.consent__checkbox:focus-visible {
    outline: 2px solid rgba(0, 187, 220, 0.35);
    outline-offset: 2px;
}

.consent__text {
    font-size: 15px;
    line-height: 1.15;
}

.consent__text a {
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.consent__text a:hover,
.consent__text a:focus-visible {
    color: var(--accent);
}

.smart-captcha {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.smart-captcha iframe {
    max-width: none;
}

.outline-button--submit {
    margin-top: 25px;
}

.ticker {
    overflow: hidden;
    min-height: 60px;
    background: var(--bg-dark);
}

.ticker__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
    padding: 0;
    font-family: var(--narrow-font);
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
    font-feature-settings: "case" on;
}

.ticker__track span {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-height: 60px;
    padding: 20px 10px 22px;
}

.ticker__track span:nth-child(n + 5) {
    display: none;
}

.group-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.group-links {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    max-width: 290px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.footer-links a {
    display: block;
    width: 100%;
    max-width: 290px;
    margin: 0 auto;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--accent);
}

.footer-links a {
    transition: color 0.2s ease;
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translate(-50%, 20px);
    min-width: 220px;
    max-width: calc(100vw - 32px);
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(26, 26, 26, 0.94);
    color: var(--text-light);
    text-align: center;
    font-size: 14px;
    line-height: 1.35;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 20;
}

.toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}


#btn-chat-signal {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    visibility: hidden;
    direction: ltr;
    z-index: 10150;
}
#btn-chat-signal.b24-widget-button-visible {
    visibility: visible;
    -webkit-animation: b24-widget-button-visible 1s ease-out forwards 1;
    animation: b24-widget-button-visible 1s ease-out forwards 1;
}
#btn-chat-signal.b24-widget-button-position-bottom-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}
body #btn-chat-signal.b24-widget-button-position-bottom-right {
    right: 18px;
    bottom: 100px;
}
#btn-chat-signal .b24-widget-button-inner-container {
    position: relative;
    display: inline-block;
}
#btn-chat-signal .b24-widget-button-inner-container, .bx-touch #btn-chat-signal .b24-widget-button-inner-container {
    -webkit-transform: scale(.85);
    transform: scale(.85);
    -webkit-transition: transform .3s;
    transition: transform .3s;
}
#btn-chat-signal .b24-widget-button-inner-mask {
    position: absolute;
    top: -8px;
    left: -8px;
    height: 82px;
    min-width: 66px;
    -webkit-width: calc(100% + 16px);
    width: calc(100% + 16px);
    border-radius: 100px;
    background: #000;
    opacity: .2;
}
#btn-chat-signal .b24-widget-button-block {
    width: 66px;
    height: 66px;
    border-radius: 100%;
    box-sizing: border-box;
    overflow: hidden;
    cursor: pointer;
}
#btn-chat-signal .b24-widget-button-pulse {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border: 1px solid #00aeef;
    border-top-color: rgb(0, 174, 239);
    border-right-color: rgb(0, 174, 239);
    border-bottom-color: rgb(0, 174, 239);
    border-left-color: rgb(0, 174, 239);
    border-top-color: rgb(0, 174, 239);
    border-right-color: rgb(0, 174, 239);
    border-bottom-color: rgb(0, 174, 239);
    border-left-color: rgb(0, 174, 239);
    border-color: #000000;
    border-radius: 50%;
}
#btn-chat-signal .b24-widget-button-pulse-animate {
    -webkit-animation: widgetPulse infinite 1.5s;
    animation: widgetPulse infinite 1.5s;
}
#btn-chat-signal .b24-widget-button-inner-block {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 66px;
    border-radius: 100px;
    background: #000;
    box-sizing: border-box;
}
.b24-widget-button-icon-container {
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.b24-widget-button-icon-animation {
    opacity: 1;
}
#btn-chat-signal .b24-widget-button-icon-container {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-transition: opacity .6s ease-out;
    transition: opacity .6s ease-out;
    -webkit-animation: socialRotateBack .4s;
    animation: socialRotateBack .4s;
    opacity: 0;
    overflow: hidden;
    box-sizing: border-box;
}
#btn-chat-signal .b24-widget-button-icon-animation {
    opacity: 1;
}
#btn-chat-signal:not(.open) .b24-widget-button-icon-container svg {
    -webkit-animation: socialRotate .4s;
    animation: socialRotate .4s;
}
#btn-chat-signal .b24-widget-button-inner-item {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-transition: opacity .6s ease-out;
    transition: opacity .6s ease-out;
    -webkit-animation: socialRotateBack .4s;
    animation: socialRotateBack .4s;
    opacity: 0;
    overflow: hidden;
    box-sizing: border-box;
}
#btn-chat-signal:not(.open) .b24-widget-button-close {
    display: none;
}
#btn-chat-signal .b24-widget-button-icon {
    -webkit-transition: opacity .3s ease-out;
    transition: opacity .3s ease-out;
    cursor: pointer;
}
#btn-chat-signal .b24-widget-button-close-item {
    width: 28px;
    height: 28px;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2229%22%20height%3D%2229%22%20viewBox%3D%220%200%2029%2029%22%3E%3Cpath%20fill%3D%22%23FFF%22%20fill-rule%3D%22evenodd%22%20d%3D%22M18.866%2014.45l9.58-9.582L24.03.448l-9.587%209.58L4.873.447.455%204.866l9.575%209.587-9.583%209.57%204.418%204.42%209.58-9.577%209.58%209.58%204.42-4.42%22/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}
.b24-widget-button-social {
    display: none;
}
.b24-widget-button-show {
    -webkit-animation: b24-widget-show .3s cubic-bezier(.75,.01,.75,0) forwards;
    animation: b24-widget-show .3s cubic-bezier(.75,.01,.75,0) forwards;
}
#btn-chat-signal .b24-widget-button-social-item {
    position: relative;
    display: block;
    margin: 0 10px 10px 0;
    width: 45px;
    height: 44px;
    background-size: 100%;
    border-radius: 25px;
    -webkit-box-shadow: 0 8px 6px -6px rgba(33,33,33,.2);
    -moz-box-shadow: 0 8px 6px -6px rgba(33,33,33,.2);
    box-shadow: 0 8px 6px -6px rgba(33,33,33,.2);
    cursor: pointer;
}
#btn-chat-signal .b24-widget-button-crmform {
    background-repeat: no-repeat;
    background-position: center;
    background-color: #000;
    background-size: 43%;
}
#btn-chat-signal .b24-widget-button-social-tooltip {
    position: absolute;
    top: 50%;
    left: -9000px;
    display: inline-block;
    padding: 5px 10px;
    max-width: 360px;
    border-radius: 10px;
    font: 13px/15px Arial,Helvetica,sans-serif;
    color: #fff;
    background: #000;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    transform: translate(0,-50%);
    transition: opacity .6s linear;
    opacity: 0;
    overflow: hidden;
}
#btn-chat-signal.open .b24-widget-button-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: end;
    align-content: flex-end;
    height: -webkit-calc(100vh - 110px);
    height: calc(100vh - 110px);
    -webkit-animation: bottomOpen .3s;
    animation: bottomOpen .3s;
    visibility: visible;
}
#btn-chat-signal.b24-widget-button-position-bottom-right.open .b24-widget-button-social {
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
    order: 1;
}
#btn-chat-signal.open .b24-widget-button-close {
    display: flex;
    -webkit-animation: socialRotate .4s;
    animation: socialRotate .4s;
    opacity: 1;
}
#btn-chat-signal.open .b24-widget-button-icon {
    opacity: 1;
}
#btn-chat-signal.open .b24-widget-button-close svg {
    -webkit-transform: scale(.85);
    transform: scale(.85);
}
#btn-chat-signal.open .b24-widget-button-icon-container {
    opacity: 0;
}
@-webkit-keyframes widgetPulse{
    50%{-webkit-transform:scale(1,1);transform:scale(1,1);opacity:1}
    100%{-webkit-transform:scale(2,2);transform:scale(2,2);opacity:0}
}
@keyframes widgetPulse{
    50%{-webkit-transform:scale(1,1);transform:scale(1,1);opacity:1}
    100%{-webkit-transform:scale(2,2);transform:scale(2,2);opacity:0}
}
@-webkit-keyframes socialRotate{
    from{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}
    to{-webkit-transform:rotate(0);transform:rotate(0)}
}
@keyframes socialRotate{
    from{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}
    to{-webkit-transform:rotate(0);transform:rotate(0)}
}
@-webkit-keyframes bottomOpen{
    from{opacity: 0; -webkit-transform: translate(0,20px); transform: translate(0,20px);}
    to{opacity: 1; -webkit-transform: translate(0,0); transform: translate(0,0);}
}
@keyframes bottomOpen{
    from{opacity: 0; -webkit-transform: translate(0,20px); transform: translate(0,20px);}
    to{opacity: 1; -webkit-transform: translate(0,0); transform: translate(0,0);}
}


@media (min-width: 1024px) {
    .taplink,
    .topbar {
        width: min(100%, 930px);
    }

    .topbar {
        min-height: 80px;
    }

    .hero {
        height: 720px;
        aspect-ratio: auto;
    }

    .cookie-banner {
        max-width: 417px;
        margin-top: 20px;
    }

    .cookie-banner__bar {
        min-height: 38px;
        gap: 60px;
        padding: 6px 12px 8px;
    }

    .cookie-banner__text,
    .cookie-banner__accept {
        font-size: 20px;
        line-height: 1.2;
    }

    .cookie-banner__close {
        width: 20px;
        height: 20px;
    }

    .section {
        padding: 80px 15px;
    }

    .section__header {
        max-width: 900px;
    }

    .section-title {
        font-size: 64px;
    }

    .intro {
        gap: 40px;
        padding-top: 80px;
    }

    .intro .section__header {
        gap: 40px;
    }

    .intro__text {
        font-size: 24px;
        line-height: 1.2;
    }

    .outline-button {
        max-width: 456px;
        font-size: 24px;
        line-height: 1.1;
    }

    .outline-button span {
        max-width: 414px;
    }

    .outline-button--hero,
    .outline-button--submit {
        min-height: 52px;
    }

    .outline-button--hero {
        padding-right: 20px;
        padding-left: 20px;
    }

    .outline-button--multi {
        padding: 17px 20px 18px;
    }

    .outline-button--group-large {
        min-height: 139px;
    }

    .outline-button--group-compact {
        min-height: 87px;
    }

    .contacts,
    .form-section,
    .group-section {
        gap: 40px;
    }

    .phone-row__text {
        font-size: 24px;
    }

    .phone-row__icon svg {
        width: 28px;
        height: 28px;
    }

    .email-card {
        max-width: 454px;
        min-height: 52px;
    }

    .email-card__icon svg,
    .email-card__copy svg {
        width: 24px;
        height: 24px;
    }

    .email-card__link {
        font-size: 20px;
        line-height: 1.2;
    }

    .form {
        max-width: 456px;
    }

    .consent__text {
        max-width: 430px;
    }

    .ticker {
        display: flex;
        align-items: center;
        min-height: 80px;
    }

    .ticker__track {
        display: flex;
        align-items: center;
        gap: 10px;
        width: max-content;
        min-width: 100%;
        padding: 0;
    }

    .ticker__track span {
        display: flex;
        flex: 0 0 84px;
        width: 84px;
        height: 60px;
        min-height: 60px;
        padding: 20px 10px 22px;
    }

    .ticker__track span:nth-child(n + 5) {
        display: flex;
    }

    .group-links {
        max-width: 454px;
        gap: 40px;
    }

    .group-links > .outline-button:not(.outline-button--multi) {
        min-height: 61px;
    }

    .footer-links {
        padding-top: 40px;
        padding-bottom: 80px;
    }

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

@media (max-width: 480px) {
    .taplink,
    .topbar {
        width: 100%;
        max-width: 100%;
        box-shadow: none;
    }

    .topbar {
        position: relative;
    }

    .ticker__track {
        gap: 6px;
        font-size: 14px;
    }

    body #btn-chat-signal.b24-widget-button-position-bottom-right {
        right: 18px;
        bottom: 60px;
    }
}
