:root {
    font-size: 10px;
    text-size-adjust: 100%;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    --font-size: 1.6rem;
    scroll-behavior: smooth;
}
@font-face {
    font-family: JB;
    src: url(../fonts/JB-400.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: JB;
    src: url(../fonts/JB-500.ttf) format("truetype");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: JB;
    src: url(../fonts/JB-700.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
}
* {
    font-family: inherit;
    padding: 0;
    margin: 0;
    letter-spacing: -0.06em;
    line-height: 100%;
    font-size: var(--font-size);
    box-sizing: border-box;
}
ul,
ol {
    list-style: none;
}
a {
    cursor: pointer;
    color: #0049ff;
}
a:hover {
    text-decoration: none;
}
body {
    font-family: JB, sans-serif;
    font-weight: 700;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
}
main {
    flex-grow: 1;
    width: 100%;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}
hr {
    border-bottom: 3px solid transparent;
    border-image-source: repeating-linear-gradient(to right, #ff7a00 0, #ff7a00 4px, transparent 4px, transparent 12px);
    border-image-slice: 1;
}
.nav {
    background: #000;
}
.nav ul {
    height: 4.2rem;
    margin: 0 auto;
    max-width: var(--max-width);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4.5rem;
}
.nav a {
    color: #fff;
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 1.2rem;
    text-underline-offset: 0.3rem;
}
.nav img {
    width: 2.2rem;
}
header {
    margin: 0 auto;
    max-width: var(--max-width);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}
header input,
header label,
header section {
    display: none;
}
header section {
    z-index: 10;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #000;
    padding: 2.9rem 2.9rem 0;
    transition: 0.1s;
    display: flex;
}
header section > div {
    height: 100%;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    scrollbar-width: none;
}
header section a {
    color: #fff;
    text-underline-offset: 0.3rem;
}
header input:checked ~ section {
    right: 0;
}
header input:checked ~ label .open {
    display: none;
}
header input:checked ~ label .close {
    display: block;
    width: 2.4rem;
}
.link {
    color: #002bff;
    display: inline-flex;
    align-items: center;
    text-decoration: underline;
    text-decoration-thickness: 0.2rem;
    text-underline-offset: 0.5rem;
    cursor: pointer;
}
.link * {
    font-size: 3rem;
    white-space: nowrap;
}
.link img {
    width: 3.4rem;
    flex-shrink: 0;
}
.link__dotted {
    text-decoration: underline dashed;
    -webkit-text-decoration-style: dashed;
    text-decoration-thickness: 0.2rem;
}
.link__arrow img {
    width: 1.8rem;
}
.link:hover {
    text-decoration: none;
}
.input {
    position: relative;
    width: 100%;
    height: 5.5rem;
    font-weight: 500;
    font-size: 2rem;
    border: 10px solid transparent;
    border-image-source: url(../images/border.svg);
    background-size: contain;
    border-image-slice: 8;
    outline: none;
    background-color: transparent;
}
.input__textarea {
    resize: unset;
    height: 19.2rem;
}
.input::placeholder {
    color: #c3c3c3;
}
.input-label {
    color: #ff7a00;
    font-size: 1.4rem;
    font-weight: 500;
    position: absolute;
    top: -2.1rem;
    z-index: 1;
}
.input-wrapper {
    position: relative;
}
.input-wrapper[data-required]:before {
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    content: "";
    background: url(../images/input.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    right: 1.9rem;
    top: 1.9rem;
    z-index: 1;
}
.input-wrapper[data-required] .input {
    padding-right: 3rem;
}
.input-wrapper[data-error] .input {
    border-image-source: url(../images/border-error.svg);
    color: red;
}
.input-wrapper[data-error]:after {
    display: block;
    content: attr(data-error);
    position: absolute;
    left: 0;
    bottom: -1.7rem;
    font-size: 1.6rem;
    color: red;
    font-weight: 500;
}
.input-wrapper[data-error][data-required]:before {
    background: url(../images/input-error.svg) no-repeat center;
    background-size: contain;
}
.input-wrapper[data-disabled] .input {
    pointer-events: none;
    border-image-source: url(../images/border-disabled.svg);
    color: #c3c3c3;
}
.input-wrapper[data-disabled][data-required]:before {
    background: url(../images/input-disabled.svg) no-repeat center;
    background-size: contain;
}
.checkbox {
    cursor: pointer;
    display: block;
    width: 2.2rem;
    height: 2.2rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(../images/checkbox.svg) no-repeat center;
    background-size: contain;
    flex-shrink: 0;
}
.checkbox:checked {
    background: url(../images/checkbox-checked.svg) no-repeat center;
    background-size: contain;
}
.checkbox-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.7ch;
}
.checkbox-wrapper * {
    cursor: pointer;
    font-size: 2rem;
    font-weight: 500;
    white-space: nowrap;
}
.checkbox-wrapper[data-disabled] {
    pointer-events: none;
}
.checkbox-wrapper[data-disabled] * {
    color: #c3c3c3 !important;
}
.checkbox-wrapper[data-disabled] .checkbox {
    background: url(../images/checkbox-disabled.svg) no-repeat center;
    background-size: cover;
}
.checkbox-wrapper[data-disabled] .checkbox:checked {
    background: url(../images/checkbox-checked-disabled.svg) no-repeat center;
    background-size: cover;
}
.radio {
    cursor: pointer;
    display: block;
    width: 2.2rem;
    height: 2.2rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(../images/radio.svg) no-repeat center;
    background-size: contain;
    outline: none;
}
.radio:checked {
    background: url(../images/radio-checked.svg) no-repeat center;
    background-size: contain;
}
.radio-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.7ch;
}
.radio-wrapper > * {
    cursor: pointer;
    font-size: 2rem;
}
.radio-wrapper[data-disabled] {
    pointer-events: none;
}
.radio-wrapper[data-disabled] * {
    color: #c3c3c3;
}
.radio-wrapper[data-disabled] .radio {
    background: url(../images/radio-disabled.svg) no-repeat center;
    background-size: cover;
}
.radio-wrapper[data-disabled] .radio:checked {
    background: url(../images/radio-checked-disabled.svg) no-repeat center;
    background-size: cover;
}
.result {
    pointer-events: none;
    display: none;
    border: 14px solid transparent;
    border-image-source: url(../images/border.svg);
    background: #fff;
    position: relative;
    height: 20rem;
}
.result * {
    font-size: 2rem;
    font-weight: 500;
}
.result-success * {
    color: #ff7a00;
}
.result-success,
.result-error {
    z-index: 1;
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
}
.result-success *,
.result-error * {
    font-size: 3rem;
}
.result-success img,
.result-error img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 7rem;
}
.result[data-status="success"] .result-success,
.result[data-status="error"] .result-error {
    display: flex;
}
.result[data-status="error"] .result-error * {
    color: red;
}
.result-title {
    font-size: 3rem;
    padding-bottom: 2rem;
    color: #ff7a00;
}
.icon {
    width: 2rem !important;
}
.contact-locales {
    display: flex;
    flex-direction: column;
}
.contact-locales * {
    font-weight: 500;
}
.contact-contacts {
    display: flex;
    flex-direction: column;
}
.contact-radio {
    display: flex;
    flex-wrap: wrap;
    gap: 1.7rem;
}
.contact-tip {
    font-weight: 500;
}
.contact-tip[data-disabled] {
    pointer-events: none;
    color: #c3c3c3;
}
.contact-send {
    margin-top: 0.5rem;
}
.contact-send > *:not(.link) {
    display: none;
}
.contact-send-button.disabled {
    cursor: not-allowed;
}
.contact-send-button.disabled * {
    pointer-events: none;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.9rem;
}
.contact-form.inactive .result {
    pointer-events: auto;
    display: grid;
}
.contact-form.inactive .contact-send-button {
    display: none;
}
.contact-checkbox {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem 3rem;
}
.contact-agreement {
    margin-top: 4rem;
}
.contact-agreement label,
.contact-agreement a {
    white-space: normal;
}
.documents {
    display: flex;
    gap: 2.7rem;
    padding: 5rem 0;
}
footer {
    width: 100%;
    min-width: 100%;
    background: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
body {
    overflow-x: hidden;
}
.header-links {
    display: flex;
    align-items: center;
}
.desktop {
    display: none;
}
.top {
    display: grid;
}
.map {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    --scale: 1;
}
.map-src-mobile {
    display: none !important;
}
.map img {
    display: block;
    position: absolute;
    transform: translate3D(var(--x), var(--y), 0) scale(var(--scale));
    width: 848rem;
    height: auto;
    transition: all 0.3s linear;
    will-change: transform;
    contain: layout paint;
}
.map ul {
    position: absolute;
    display: flex;
    gap: 0.7rem;
    z-index: 1;
}
.map input {
    cursor: pointer;
    border-image-source: url(../images/border-button.svg);
    border-image-slice: 14;
}
.map li.active {
    pointer-events: none;
}
.map li.active input {
    border-image-source: url(../images/border-button-active.svg);
}
.presence h2 {
    font-size: 3.5rem;
    margin-bottom: 6rem;
}
.presence table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 1rem 0;
}
.presence thead {
    border-bottom: 2px solid #d8d8d8;
}
.presence thead th {
    color: #ff7a00;
    text-align: left;
    line-height: 110%;
}
.presence thead th * {
    line-height: 110%;
}
.presence tbody tr {
    border-bottom: 2px solid #d8d8d8;
}
.presence tbody td {
    line-height: 110%;
    vertical-align: top;
}
.presence tbody td:last-child {
    padding-right: 0 !important;
}
.presence .sort {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.presence .sort * {
    pointer-events: none;
}
.presence .sort svg {
    width: 1.3rem;
    transition: all 0.1s linear;
}
.presence .sort.active {
    color: #000 !important;
}
.presence .sort.active svg {
    transform-origin: center;
    transform: rotate(180deg);
}
.presence .sort.active svg path {
    fill: #000 !important;
}
.presence .status {
    text-transform: capitalize;
}
.presence .status.operating {
    color: #ff7a00;
}
.presence .status.planned {
    color: #a3a2a2;
}
.connection {
    display: flex;
    flex-direction: column;
}
.connection * {
    font-size: 2rem;
}
.connection *:not(h3) {
    font-weight: 500;
}
.connection p {
    line-height: 140%;
}
.connection li {
    break-inside: avoid;
}
.connection li > :first-child {
    color: #ff7a00;
}
.bandwidth {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4.6rem;
}
.bandwidth img {
    width: 10.5rem;
}
.bandwidth p {
    text-align: center;
    font-size: 3rem;
    line-height: 110%;
}
.bandwidth p span {
    font-size: 3rem;
    line-height: 110%;
    color: #ff7a00;
}
.info h4 {
    border-bottom: 0.4rem solid #ff7a00;
}
.info p {
    line-height: 120%;
}
@media (min-width: 1001px) {
    :root {
        --max-width: 130rem;
    }
    .no-desktop {
        display: none !important;
    }
    .result {
        width: 85.2rem;
        border-image-slice: 22;
        grid-template-columns: 39rem 1fr;
        column-gap: 5rem;
    }
    .result-title {
        grid-column: 1/3;
    }
    header {
        height: 15rem;
    }
    header section {
        display: none;
    }
    header .logo {
        width: 31.7rem;
    }
    .link {
        gap: 1.2rem;
    }
    .link__arrow {
        gap: 0.5rem;
    }
    .link * {
        font-size: 3rem;
    }
    .contact {
        padding: 11.8rem 0;
        display: grid;
        grid-template-columns: 1fr 40rem 1fr;
        grid-template-rows: min-content auto;
        gap: 9.3rem 5.8rem;
    }
    .contact-title {
        font-size: 3.5rem;
        line-height: 3.85rem;
        max-width: 90%;
    }
    .contact-title:nth-child(2) {
        grid-column: 3;
    }
    .contact-form {
        grid-column: 2;
        grid-row: 1/4;
    }
    .contact-radio * {
        font-size: 2rem !important;
        font-weight: 500 !important;
    }
    .contact-tip {
        font-size: 1.6rem;
        line-height: 1.68rem;
    }
    .contact-locales {
        gap: 1.9rem;
    }
    .contact-locales li {
        font-size: 2rem;
    }
    .contact-contacts {
        gap: 2.7rem;
        margin-top: -0.8rem;
    }
    .contact-agreement * {
        font-size: 1.6rem !important;
    }
    footer {
        height: 12rem;
        font-size: 3rem;
    }
    .desktop {
        display: initial;
    }
    .header-links {
        gap: 5rem;
    }
    .top {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 4rem 5.4rem;
        padding: 15rem 0 5rem;
    }
    .top h1 {
        grid-column: 1;
        font-size: 5rem;
        line-height: 5.5rem;
    }
    .top p {
        grid-column: 3;
        grid-row: 1;
        font-size: 2rem;
        line-height: 2.4rem;
    }
    .top a {
        grid-column: 3;
        grid-row: 2;
    }
    .map {
        width: 144.8rem;
        height: 78.1rem;
        transform: translate(-7.3rem);
        --w: 848rem;
        --x: 2%;
        --y: 11%;
    }
    .map ul {
        right: 7.1rem;
        top: 5.7rem;
    }
    .presence {
        padding-top: 11.4rem;
    }
    .presence thead th,
    .presence thead th * {
        font-size: 3rem;
    }
    .presence thead th {
        padding-bottom: 2.6rem;
    }
    .presence tbody td {
        font-size: 2rem;
        padding: 2.6rem 0;
    }
    .presence tr {
        display: grid;
        grid-template-columns: 1fr 14.8rem 30rem 32rem 12.5rem;
        column-gap: 5rem;
    }
    .help {
        padding: 11.4rem 0;
        display: grid;
        grid-template-columns: 25.1rem 1fr;
        column-gap: 13.7rem;
        margin-left: 6.2rem;
    }
    .help * {
        font-size: 3.5rem;
        line-height: 110%;
    }
    .help div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6.4rem;
    }
    .connection {
        padding: 11.4rem 0;
        gap: 10.6rem;
    }
    .connection h3 {
        font-size: 3.5rem;
        margin-bottom: 6rem;
    }
    .connection ul {
        column-count: 2;
    }
    .connection li {
        margin-bottom: 1.8rem;
    }
    .bandwidth {
        padding: 8.6rem 0 11.4rem;
    }
    .bandwidth p {
        max-width: 87rem;
    }
    .info {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 5.4rem;
        padding: 11.4rem 0 9.6rem;
    }
    .info h4 {
        font-size: 3rem;
        min-height: 9.9rem;
    }
    .info p {
        padding-top: 3.3rem;
        font-size: 2rem;
    }
}
@media screen and (min-width: 1001px) and (max-width: 1439px) {
    :root {
        font-size: 0.6944444444vw !important;
    }
}
@media (min-width: 744px) and (max-width: 1000px) {
    :root {
        --max-width: 62.8rem;
        font-size: 1.3458950202vw;
    }
    .no-tablet {
        display: none !important;
    }
    header {
        height: 14.5rem;
    }
    header section {
        display: none;
    }
    header .logo {
        width: 28.2rem;
    }
    .link {
        gap: 0.7rem;
    }
    .link * {
        font-size: 2.4rem;
    }
    .checkbox-wrapper * {
        font-size: 1.8rem;
    }
    .result {
        border-image-slice: 12;
    }
    .result * {
        font-size: 1.6rem;
    }
    .result-title,
    .result-success *,
    .result-error * {
        font-size: 2.2rem;
    }
    .contact {
        padding: 11rem 0;
        display: grid;
        grid-template-columns: 1fr 32rem;
        grid-template-rows: auto 33rem 6.5rem auto;
        gap: 5.5rem 4.8rem;
    }
    .contact .input {
        font-size: 1.6rem !important;
    }
    .contact-title {
        font-size: 3rem;
        line-height: 3.3rem;
    }
    .contact-title:nth-child(1) {
        grid-row: 1;
        grid-column: 1/3;
    }
    .contact-title:nth-child(2) {
        grid-row: 3;
        grid-column: 1;
    }
    .contact-form {
        grid-column: 2;
        grid-row: 2/5;
    }
    .contact-radio * {
        font-size: 1.8rem !important;
        font-weight: 500 !important;
    }
    .contact-tip {
        font-size: 1.4rem;
        line-height: 1.47rem;
    }
    .contact-locales {
        gap: 2rem;
        grid-column: 1;
        grid-row: 2;
    }
    .contact-locales li {
        font-size: 1.8rem;
    }
    .contact-contacts {
        grid-column: 1;
        grid-row: 4;
        gap: 3rem;
    }
    .contact-agreement * {
        font-size: 1.4rem !important;
    }
    footer {
        height: 10.2rem;
        font-size: 2.4rem;
    }
    .header-links {
        gap: 2rem;
    }
    .top {
        grid-template-columns: 30.8rem 1fr;
        grid-template-rows: auto auto;
        gap: 4.2rem;
        padding: 10rem 0 6rem;
    }
    .top h1 {
        grid-column: 1;
        grid-row: 1;
        font-size: 4rem;
        line-height: 4.4rem;
    }
    .top p {
        grid-column: 1;
        grid-row: 2;
        font-size: 1.7rem;
        line-height: 2.04rem;
    }
    .top a {
        grid-column: 2;
        grid-row: 2;
        align-self: end;
        justify-self: end;
    }
    .map {
        margin: 0 -6rem;
        height: 78.1rem;
        --x: 1%;
        --y: 10.8%;
    }
    .map ul {
        left: 6rem;
        top: 5rem;
    }
    .presence {
        padding-top: 14.6rem;
    }
    .presence h2 {
        margin-bottom: 6rem;
    }
    .presence thead th,
    .presence thead th * {
        font-size: 1.6rem;
    }
    .presence thead th {
        padding-bottom: 2.6rem;
    }
    .presence tbody td {
        font-size: 1.4rem;
        padding: 2.6rem 0;
    }
    .presence tr {
        display: grid;
        grid-template-columns: 1fr 8rem 12rem 13rem 7rem;
        column-gap: 3rem;
    }
    .help {
        padding: 11rem 0;
        display: flex;
        flex-direction: column;
        gap: 5.7rem;
    }
    .help * {
        font-size: 3rem;
        line-height: 110%;
    }
    .help img {
        width: 19.8rem;
        margin: 0 auto;
    }
    .help h3 {
        margin-bottom: 4rem;
    }
    .connection {
        padding: 11rem 0;
        gap: 11.9rem;
    }
    .connection h3 {
        font-size: 3rem;
        margin-bottom: 6rem;
    }
    .connection ul {
        display: flex;
        flex-direction: column;
        gap: 1.8rem;
    }
    .bandwidth {
        padding: 11rem 0;
    }
    .info {
        display: flex;
        flex-direction: column;
        gap: 8rem;
        padding: 11rem 0;
    }
    .info h4 {
        font-size: 3rem;
        padding-bottom: 3rem;
    }
    .info p {
        padding-top: 1.6rem;
        font-size: 1.8rem;
    }
}
@media (max-width: 743px) {
    :root {
        --max-width: 30.6rem;
        font-size: 2.6666666667vw;
    }
    .no-mobile {
        display: none !important;
    }
    hr {
        border-bottom: 2px solid transparent;
        border-image-source: repeating-linear-gradient(to right, #ff7a00 0, #ff7a00 2px, transparent 2px, transparent 6px);
    }
    .nav {
        display: none;
    }
    header {
        height: 8.4rem;
    }
    header .logo {
        width: 18.4rem;
    }
    header section .logo {
        margin-bottom: 7.5rem;
    }
    header label {
        cursor: pointer;
        display: block;
        z-index: 11;
    }
    header label .open {
        width: 2.7rem;
    }
    header label .close {
        display: none;
    }
    body:has(#menu-toggle:checked) {
        overflow: hidden;
        height: 100vh;
    }
    .link {
        gap: 0.5rem;
    }
    .link * {
        font-size: 2rem;
    }
    .link__arrow img {
        width: 1.2rem;
    }
    .input {
        border-image-slice: 8;
        height: 4.7rem;
        font-size: 1.4rem;
    }
    .input__textarea {
        height: 18rem;
    }
    .input-label {
        font-size: 1.2rem;
        top: -1.9rem;
    }
    .input-wrapper[data-required]:before {
        right: 1.2rem;
        top: 1.5rem;
    }
    .input-wrapper[data-required] .input {
        padding-right: 2rem;
    }
    .input-wrapper[data-error]:after {
        bottom: -1.7rem;
        font-size: 1.2rem;
    }
    .checkbox-wrapper * {
        font-size: 1.2rem;
    }
    .radio-wrapper > * {
        font-size: 1.4rem;
    }
    .result {
        border-image-slice: 10;
    }
    .result * {
        font-size: 1.4rem;
    }
    .result-success,
    .result-error {
        height: 18rem;
    }
    .result-success *,
    .result-error * {
        font-size: 2.2rem;
    }
    .result-success img,
    .result-error img {
        width: 7.1rem;
    }
    .result-title {
        font-size: 2.2rem;
    }
    .icon {
        width: 1rem !important;
    }
    .contact {
        padding: 7rem 0;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, auto);
    }
    .contact .input {
        font-size: 1.4rem !important;
    }
    .contact-title {
        font-size: 2.2rem;
        line-height: 2.4rem;
        margin-bottom: 2rem;
    }
    .contact-title:nth-child(2) {
        grid-row: 4;
    }
    .contact-form {
        grid-row: 3;
        margin-bottom: 7rem;
    }
    .contact-radio * {
        font-size: 1.4rem !important;
        font-weight: 500 !important;
    }
    .contact-tip {
        font-size: 1.2rem;
        line-height: 1.26rem;
    }
    .contact hr {
        margin-bottom: 7rem;
    }
    .contact-locales {
        gap: 0.6rem;
        grid-row: 2;
        margin-bottom: 1.9rem;
    }
    .contact-locales li {
        font-size: 1.2rem;
    }
    .contact-contacts {
        grid-row: 5;
        gap: 3rem;
    }
    .contact-agreement * {
        font-size: 1.2rem !important;
    }
    .documents {
        gap: 1.9rem;
        padding: 2.6rem 0;
    }
    footer {
        height: 8rem;
        font-size: 2rem;
    }
    .mobile-menu {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 5.4rem 0;
        row-gap: 2.7rem;
    }
    .menu-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 5.4rem 0;
        row-gap: 2.7rem;
    }
    .menu-nav-icons {
        display: flex;
        flex-direction: column;
        gap: 3.9rem;
        padding: 5.4rem 0;
    }
    .menu-nav-icons a {
        display: inline-flex;
        align-items: center;
        gap: 1.7rem;
        text-underline-offset: 0.5rem;
    }
    .menu-nav-icons * {
        font-size: 2rem;
    }
    .menu-nav-icons img {
        width: 2.2rem;
    }
    .menu-sign-in {
        padding: 5.4rem 0;
    }
    .menu-sign-in a {
        display: inline-flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 1.2rem;
    }
    .menu-sign-in img {
        width: 2.2rem;
    }
    .header-links {
        display: none;
    }
    .top {
        grid-template-columns: 1fr;
        grid-template-rows: auto 2.6rem auto 3.8rem auto;
        padding: 5rem 0 2.6rem;
    }
    .top h1 {
        grid-row: 1;
        font-size: 2.8rem;
        line-height: 3.08rem;
    }
    .top p {
        grid-row: 3;
        font-size: 1.4rem;
        line-height: 1.68rem;
    }
    .top a {
        grid-row: 5;
    }
    .map {
        margin: 0 -3.5rem;
        height: 45.8rem;
        --x: 0.9%;
        --y: 9%;
        --scale: 1;
    }
    .map-src {
        display: none !important;
    }
    .map-src-mobile {
        display: block !important;
    }
    .map img {
        width: 434.1rem;
    }
    .map ul {
        left: 3.5rem;
        bottom: 2.5rem;
        gap: 0.2rem;
    }
    .map ul .input {
        height: 3.7rem;
        border-width: 1rem;
        font-size: 1.6rem;
    }
    .map input {
        border-image-slice: 12;
    }
    .presence {
        padding-top: 7.7rem;
    }
    .presence h2 {
        font-size: 2.2rem;
        margin-bottom: 3.2rem;
    }
    .presence .table {
        overflow-x: auto;
        padding-bottom: 3.1rem;
        margin-right: -3.5rem;
        margin-left: -3.5rem;
    }
    .presence .table::-webkit-scrollbar {
        height: 0.4rem;
    }
    .presence .table::-webkit-scrollbar-track {
        background: #d8d8d8;
        border-radius: 0.2rem;
    }
    .presence .table::-webkit-scrollbar-thumb {
        background: #ff7a00;
        border-radius: 0.2rem;
    }
    .presence .sort {
        gap: 0.2rem;
    }
    .presence .sort svg {
        width: 1rem;
    }
    .presence table {
        margin-left: 3.5rem;
        margin-right: 3.5rem;
    }
    .presence thead th,
    .presence thead th * {
        font-size: 1.2rem;
    }
    .presence thead th {
        padding-bottom: 2.1rem;
    }
    .presence th,
    .presence td {
        padding-right: 2rem !important;
    }
    .presence table {
        width: auto;
    }
    .presence tbody td {
        font-size: 1.2rem;
        padding: 0.8rem 0;
    }
    .presence tr {
        display: grid;
        grid-template-columns: 9.3rem 9.3rem 11.4rem 13rem 1fr;
    }
    .help {
        padding: 3.8rem 0 7rem;
        display: flex;
        flex-direction: column;
        gap: 3.1rem;
    }
    .help * {
        font-size: 2.2rem;
        line-height: 110%;
    }
    .help h3,
    .help div {
        text-align: center;
    }
    .help div {
        line-height: 120%;
    }
    .help img {
        width: 15.8rem;
        margin: 0 auto;
    }
    .help h3 {
        margin-bottom: 4rem;
    }
    .connection {
        padding: 7rem 0;
        gap: 7rem;
    }
    .connection * {
        font-size: 1.6rem;
    }
    .connection h3 {
        font-size: 2.2rem;
        margin-bottom: 2.4rem;
    }
    .connection ul {
        display: flex;
        flex-direction: column;
        gap: 1.3rem;
    }
    .bandwidth {
        padding: 7rem 0;
        gap: 2.9rem;
    }
    .bandwidth img {
        width: 6.42rem;
    }
    .bandwidth p,
    .bandwidth p span {
        font-size: 2rem;
    }
    .info {
        display: flex;
        flex-direction: column;
        gap: 4.1rem;
        padding: 7rem 0;
    }
    .info h4 {
        font-size: 2rem;
        padding-bottom: 1.6rem;
    }
    .info p {
        padding-top: 1.6rem;
        font-size: 1.4rem;
    }
}
