:root {
    --container-width: 1530px;
    --primary: #000000;
    --secondary: #FFFFFF;
    --accent: #FFDD00;
    --text-size-primary: 16px;
    --text-size-heading: 36px;
}


.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

body {
    font-family: "Manrope", sans-serif;
    font-size: var(--text-size-primary);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.03em;
    color: var(--primary);
    background-color: var(--secondary);
    
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    white-space: nowrap;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
}

h2 {
    font-size: var(--text-size-heading);
    font-weight: 800;
    letter-spacing: 0.03em;
}

h2 span {
    color: var(--accent);
}

[class$="__container"] {
  max-width: var(--container-width);
  margin: 0 auto;
}

section {
    padding: 0px 20px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 270px;
    padding: 20px 40px;
    border: none;
    border-radius: 999px;
    outline: none;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: color 0.3s, background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.btn--solid {
    color: var(--primary);
    background-color: var(--accent);
    box-shadow: 0px 26px 47.2px -8px #FFDD0069;
}

.btn--solid:hover {
    background-color: #EACB00;
    box-shadow: none;
}

.btn--stroke {
    color: var(--accent);
    border:  1px solid var(--accent);
}

.btn--stroke:hover {
    color: var(--primary);
    background-color: var(--accent);
}

.hoverstyle--1 {
    transition: 0.3s;
}

.hoverstyle--1:hover {
    background-color: #8A9CC6;
}

.hoverstyle--2 {
    border-color: #0088CC;
    transition: 0.3s;
}

.hoverstyle--3 {
    border-color: #2CB742;
    transition: 0.3s;
}

.hoverstyle--2:hover {
    background-color: #0088CC;
    border-color: #0088CC;
}

.hoverstyle--3:hover {
    background-color: #2CB742;
    border-color: #2CB742;
}

header {
    position: absolute;
    z-index: 10;
    top: 47px;
    left: 50%;
    width: 100%;
    padding: 0 20px;
    transform: translateX(-50%);
}

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

.header__left {
    margin-top: 15px;
}

.header__toggle {
    display: none;
    position: relative;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid #8A9CC66B;
    border-radius: 50%;
    background-color: #1F213166;
    backdrop-filter: blur(18px);
    cursor: pointer;
}

.header__toggle span {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background-color: var(--secondary);
    transform: translateX(-50%);
    transition: transform 0.28s ease, opacity 0.28s ease, top 0.28s ease;
}

.header__toggle span:nth-child(1) { top: 16px; }
.header__toggle span:nth-child(2) { top: 23px; }
.header__toggle span:nth-child(3) { top: 30px; }

.header__toggle.is-active span:nth-child(1) {
    top: 23px;
    transform: translateX(-50%) rotate(45deg);
}

.header__toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.header__toggle.is-active span:nth-child(3) {
    top: 23px;
    transform: translateX(-50%) rotate(-45deg);
}

.header__logo-link {
    display: inline-flex;
}

.header__logo {
    display: block;
    max-width: 305px;
}

.header__note {
    margin-top: 2px;
    font-size: 12px;
    color: var(--secondary);
}

.header__right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1045px;
    width: 100%;
    padding: 16px 27px 23px 22px;
    backdrop-filter: blur(31px);
    background-color: #1F213133;
    border-radius: 50px;
}

.header__contacts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 530px;
    margin-top: 4px;
}

.header__contacts-el {
    display: flex;
    align-items: center;
    gap: 22px;
    text-decoration: none;
}

.header__contacts-el:hover .header__contacts-icon {
    background-color: #8A9CC6;
}

.header__contacts-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #47547B;
    transition: 0.3s;
}

.header__contacts-icon path {
    fill: var(--secondary);
}

.header__contacts-text {
    font-size: 18px;
    white-space: nowrap;
    color: var(--secondary);
    text-decoration: none;
}

.header__contacts-el--bold {
    gap: 10px;
}

.header__contacts-el--bold .header__contacts-text {
    font-weight: 700;
}

.header__links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: 415px;
}

.header__socials {
    display: flex;
    gap: 20px;
    margin-top: 4px;
}

.header__socials-el {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 45px;
    height: 45px;
    border: 1px solid #8A9CC66B;
    border-radius: 50%;
}

.header__socials-el path {
    fill: var(--secondary);
}

.header__btn {
    padding: 12px 30px;
    white-space: nowrap;
}

.hero {
    padding-top: 210px;
    padding-bottom: 164px;
    border-radius: 0px 0px 0px 100px;
    background-image: url(../img/hero.webp);
    background-position: -11.5px -1.5px;
    background-size: cover;
    background-repeat: no-repeat;

}

.hero__title {
    max-width: 794px;
    margin-left: -4px;
    font-size: 55px;
    font-weight: 800;
    line-height: 137%;
    letter-spacing: 0.03em;
    color: var(--secondary);
}

.hero__title span {
    color: var(--accent);
}

.hero__note {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 90px;
}

.hero__note-dot {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 32px;
    width: 32px;
    height: 32px;
    margin-top: -10px;
    border-radius: 50%;
    background-color: #ffdd0016;
}

.hero__note-dot div {
    min-width: 16px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--accent);
}

.hero__note p {
    max-width: 530px;
    font-size: 18px;
    font-weight: 600;
    line-height: 140%;
    color: var(--secondary);
}

.hero__btn {
    margin-top: 74px;
    padding: 27px 38px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.services {
    margin-top: 85px;
}

.services__body {
    position: relative;
}

.services__tabs {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    top: 45px;
    max-width: 521px;
    padding: 33px 31px 21px;
    border-radius: 62px;
    background-color: #FFDD00C9;
    box-shadow: 0px 20px 100px -40px #FFDD00;
    backdrop-filter: blur(15.800000190734863px);
    z-index: 2;
}

.services__tab {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 19px 24px 16px 30px;
    border: none;
    border-radius: 100px;
    font-size: 20px;
    text-align: left;
    letter-spacing: 0.035em;
    background-color: transparent;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.services__tab:hover {
    background-color: #EACB00;
}

.services__tab.active {
    font-weight: 700;
    background-color: #FFFFFF;
}

.services__tab.active::after {
    opacity: 1;
}

.services__tab::after {
    content: url(../img/arr.svg);
    margin-top: 6px;
    opacity: 0;
}

.services__content {
    position: relative;
    max-width: 1140px;
    margin-top: 64px;
    margin-left: auto;
    padding: 77px 23px 66px 177px;
    border-radius: 40px;
    background-color: #E9EAF8;
    overflow: hidden;
}

.services__content.is-fading {
    opacity: 0;
    transform: translateY(6px);
}

.services__content {
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.services__panel[hidden] {
    display: none;
}

.services__list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 11;
}

.services__item {
    display: flex;
    gap: 30px;
}

.services__item svg {
flex: 0 0 24px;
;
}

.services__item p {
    font-size: 18px;
    font-weight: 500;
}

.services__item--bold p {
    font-weight: 600;
}

.services__item span {
    font-weight: 500;
    color: #8A9CC6;
}

.services__panel {
    position: relative;
}

.services__content-image {
    position: absolute;
    right: 0px;
    bottom: -35px;
    max-width: 185px;
    max-height: 167px;
    width: auto;
    height: auto;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
}

.who {
    margin-top: 238px;
}

.who__body {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 54px;
}

.who__item {
    width: 100%;
    min-height: 482px;
    height: fit-content;
    padding: 27px 34px;
    margin-top: 30px;
    border-radius: 40px;
    background: linear-gradient(180deg, #FFFFFF -42.34%, #E9EAF8 100%);
}

.who__item:nth-child(2) {
    height: 541px;
    margin-top: 0;
    padding-block: 35px;
}

.who__item:nth-child(2) .who__item-title {
    margin-top: 40px
}

.who__item-title {
    height: 61px;
    margin-top: 20px;
    padding-left: 10px;
    font-size: 20px;
    font-weight: 600;
}

.who__item-text:first-of-type {
    margin-top: 25px;
}

.who__item-text {
    max-width: 400px;
    margin-top: 32px;
    padding-left: 10px;
    line-height: 160%;
    letter-spacing: 0.045em;
}

.advantages {
    margin-top: 180px;
}

.advantages__title {
    max-width: 1350px;
    margin: 0 auto;
    text-align: center;
    color: #1F2131;
}

.advantages__body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 90px;
}

.advantages__el {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 205px;
    padding: 24px;
    border-radius: 20px;
    background: linear-gradient(180deg, #FFFFFF -42.34%, #E9EAF8 100%);
}

.advantages__el-title {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 600;
}

.advantages__el-text {
    margin-top: 15px;
    font-weight: 500;
    text-align: center;
}

.audit {
    position: relative;
    margin-top: 99px;
    margin-bottom: -71px;
    z-index: 2;
}

.audit__body {
    padding: 47px 75px 63px;
    border-radius: 40px;
    background-color: #E9EAF8;
}

.audit__text {
    margin-top: 24px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.032em;
}

.audit__list {
    max-width: 1140px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 35px;
    margin-left: -5px;
}

.audit__list li {
    display: flex;
    align-items: center;
    gap: 30px;
}

.audit__list svg {
    min-width: 60px;
    height: auto;
}

.audit__list-text {
    font-size: 18px;
    font-weight: 600;
    color: #1F2131;
}


.free {
    padding-block: 136px 58px;
    border-radius: 40px;
    background: #1F2131;
    background-image: url(../img/free.webp);
    background-size: cover;
    background-position: left;
}

.free__body {
    display: flex;
    justify-content: space-between;
}

.free__left {
    max-width: 752px;
    width: 100%;
}

.free__title {
    max-width: 640px;
    line-height: 140%;
    color: var(--secondary);
}

.free__finish {
    display: flex;
    justify-content: space-between;
    margin-top: 95px;
}

.free__checkbox {
    position: relative;
    margin-top: 20px;
}

.free__checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    top: 0;
    left: 0;
}

label span a {
    display: inline;
    color: inherit;
    text-decoration: none;
}

.free__checkbox label {
    display: flex;
    gap: 25px;
    max-width: 420px;
    font-size: 14px;
    font-weight: 500;
    line-height: 180%;
    color: #8A9CC6;
}

.free__checkbox label::before {
    content: "";
    min-width: 24px;
    width: 24px;
    height: 24px;
    margin-top: 6px;
    border: 1px solid #D0D0D0;
    border-radius: 4px;
    background-color: var(--secondary);
    transition: background-color 0.3s, border-color 0.3s;
    background-position: center;
    background-repeat: no-repeat;
}

.free__checkbox input:checked + label::before {
    background-color: var(--accent);
    border-color: var(--accent);
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='8' viewBox='0 0 11 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.3263 1.55639L4.57444 7.26316C4.23609 7.6015 3.69474 7.62406 3.33384 7.28571L0.288722 4.51128C-0.0721804 4.17293 -0.0947369 3.60902 0.221053 3.24812C0.559399 2.88722 1.12331 2.86466 1.48421 3.20301L3.89775 5.41353L9.0406 0.270677C9.4015 -0.0902256 9.96541 -0.0902256 10.3263 0.270677C10.6872 0.631579 10.6872 1.19549 10.3263 1.55639Z' fill='black'/%3E%3C/svg%3E");
}

.free__btn {
    height: fit-content;
    padding-bottom: 27px;
    font-size: 18px;
}

.free__right {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 620px;
    width: 100%;
    margin-top: 2px;
}

.free__right input {
    padding: 18px 32px;
    border: none;
    border-radius: 20px;
    background: #E9EAF8;
    outline: none;
}

.free__right textarea {
    min-height: 140px;
    padding: 18px 32px;
    border: none;
    border-radius: 20px;
    background: #E9EAF8;
    outline: none;
}

.calc {
    margin-top: 124px;
}

.calc__body {
    display: flex;
    justify-content: space-between;
    margin-top: 56px;
    border-radius: 40px;
    background-color: #E9EAF8;
    overflow: hidden;
}

.calc__left {
    padding: 50px 70px 50px 53px;
    border-radius: 40px;
    background-color: #F8F8F8;
}

.calc__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.23fr);
    grid-template-areas:
        "remote equipment"
        "places equipment";
    column-gap: 80px;
    row-gap: 80px;
}

.calc__item--remote {
    grid-area: remote;
}

.calc__item--places {
    grid-area: places;
}

.calc__item--equipment {
    grid-area: equipment;
}

.calc__head {
    display: flex;
    align-items: center;
    gap: 11px;
}

.calc__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 600;
    color: #47547B;
    background-color: #E9EAF8;
}

.calc__item-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 130%;
    color: #000;
}

.calc__radios {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 12px;
}

.calc__radio,
.calc__equipment-label {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

.calc__radio input,
.calc__equipment-label input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.calc__radio span,
.calc__equipment-label > span {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    border: 1px solid #D9D9D9;
    border-radius: 50%;
    background-color: #fff;
}

.calc__radio span::before,
.calc__equipment-label > span::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--accent);
    opacity: 0;
    transition: opacity 0.3s;
}

.calc__radio input:checked + span::before,
.calc__equipment-label input:checked + span::before {
    opacity: 1;
}

.calc__range {
    margin-top: 0px;
    padding: 14px 0;
}

.calc__range-input {
    --range-progress: 50%;
    width: 100%;
    height: 5px;
    margin: 0;
    border: 0;
    border-radius: 999px;
    appearance: none;
    background: linear-gradient(90deg, var(--accent) 0 var(--range-progress), #FFFFFF var(--range-progress) 100%);
    outline: none;
    cursor: pointer;
}

.calc__range-input::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: transparent;
}

.calc__range-input::-moz-range-track {
    width: 100%;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: transparent;
}

.calc__range-input::-webkit-slider-thumb {
    width: 16px;
    height: 16px;
    margin-top: -6px;
    border: 0;
    border-radius: 50%;
    appearance: none;
    background-color: var(--accent);
    box-shadow: 0 0 0 8px rgba(255, 221, 0, 0.16);
}

.calc__range-input::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background-color: var(--accent);
    box-shadow: 0 0 0 8px rgba(255, 221, 0, 0.16);
}

.calc__range-input:focus-visible::-webkit-slider-thumb {
    box-shadow: 0 0 0 8px rgba(255, 221, 0, 0.16), 0 0 0 3px #47547B;
}

.calc__range-input:focus-visible::-moz-range-thumb {
    box-shadow: 0 0 0 8px rgba(255, 221, 0, 0.16), 0 0 0 3px #47547B;
}

.calc__places {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.calc__places-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    max-width: 60px;
    min-height: 30px;
    padding: 0 8px;
    border: 0;
    border-radius: 999px;
    text-align: center;
    font-size: 16px;
    color: #969696;
    background-color: var(--secondary);
    outline: none;
}

.calc__places-label {
    font-size: 16px;
    color: #000;
}

.calc__places-count:focus-visible,
.calc__equipment-count:focus-visible {
    box-shadow: 0 0 0 2px #47547B;
}

.calc__places-count::-webkit-outer-spin-button,
.calc__places-count::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}

.calc__places-count {
    -moz-appearance: textfield;
}

.calc__equipment-fixed {
    flex: 0 0 60px;
    width: 60px;
    height: 30px;
}

.calc__equipment {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.calc__equipment-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 477px;
}

.calc__equipment-label {
    font-size: 16px;
    line-height: 130%;
    color: #000;
}

.calc__equipment-count {
    flex: 0 0 60px;
    width: 60px;
    height: 30px;
    border: none;
    border-radius: 999px;
    text-align: center;
    font-size: 16px;
    color: #969696;
    background-color: var(--secondary);
    outline: none;
}

.calc__equipment-count::-webkit-outer-spin-button,
.calc__equipment-count::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}

.calc__result {
    min-width: 300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 55px 25px 40px;
    background-color: #e9eaf8;
}

.calc__result-label {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.calc__price {
    margin-top: 38px;
    font-size: 36px;
    font-weight: 500;
}

.calc__price.is-agreement {
    max-width: 300px;
    min-height: 54px;
    font-size: 30px;
    line-height: 120%;
    text-align: center;
}

.calc__tax {
    margin-top: 40px;
    font-size: 16px;
    font-weight: 500;
    color: #8A9CC6;
}

.calc__btn {
    margin-top: 24px;
    margin-right: -10px;
    padding: 23px;
    font-size: 18px;
    font-weight: 600;
}

.geo {
    margin-top: 120px;
}

.geo__body {
    min-height: 616px;
    padding: 126px 80px;
    border-radius: 40px;
    background-color: #1F2131;
    background-image: url(../img/geo.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.geo__title {
    text-align: center;
    color: var(--secondary);
}

.geo__text {
    max-width: 1042px;
    margin: 0 auto;
    margin-top: 150px;
    font-size: 19px;
    font-weight: 700;
    line-height: 170%;
    text-align: center;
    color: var(--secondary);
}

.geo__text span {
    color: var(--accent);
}

.why {
    margin-top: 170px;
}

.why__body {
    display: flex;
    justify-content: space-between;
    gap: 33px;
    margin-top: 45px;
    margin-left: 5px;
}

.why__item {
    width: 100%;
    min-height: 315px;
    padding: 30px;
    border-radius: 36px;
    box-shadow: 0px 20px 100px -40px #FFDD00;
    background-color: var(--accent);
}

.why__item-num {
    font-size: 100px;
    font-weight: 700;
    line-height: 90px;
    letter-spacing: 0.05em;
    color: #FFFFFF70;
}

.why__item-title {
    max-width: 200px;
    margin-top: 40px;
    font-size: 25px;
    font-weight: 700;
    line-height: 135%;
    letter-spacing: 0.035em;
}

.why__item-text {
    margin-top: 10px;
}

.partners {
    margin-top: 170px;
}

.partners__body {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 55px;
}

.partners__left {
    width: 100%;
    padding: 50px 38px 58px 65px;
    border-radius: 40px;
    background-color: #F8F8F8;
    overflow: visible;
}

.partners__right {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 490px;
    max-width: 490px;
    min-height: 660px;
    padding: 50px 34px 43px 40px;
    border-radius: 40px;
    background-color: #F8F8F8;
}

.partners__swiper {
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

.partners__swiper-wrapper {
    min-height: 100%;
    align-items: stretch;
}

.partners__swiper .partners__slide {
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: auto;
    user-select: none;
}



.partners__slide--image {
    align-items: center;
    justify-content: center;
}


.partners__grid {
    max-height: 555px;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
    row-gap: 32px;
}

 .partners__window::-webkit-scrollbar {
    width: 9px;
}

.partners__window::-webkit-scrollbar-track {
    background: var(--secondary);
    border-radius: 999px;
}

.partners__window::-webkit-scrollbar-thumb {
    background: #DFDFDF;
    border-radius: 999px;
}

.partners__window::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}

.partners__grid > img {
    width: 152px;
    filter: contrast(0);
}

.partners__right-title {
    font-size: 20px;
    font-weight: 600;
}

.partners__window {
    position: relative;
    max-width: 410px;
    margin-top: 30px;
    line-height: 155%;
    max-height: 430px;
    overflow-y: auto;
    scrollbar-gutter: stable;
}

.partners__window::before,
.partners__window::after {
    content: "";
    position: sticky;
    left: 0;
    z-index: 2;
    display: block;
    width: calc(100% - 18px);
    height: 72px;
    margin-right: 18px;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.partners__window::before {
    top: 0;
    margin-bottom: -72px;
    background: linear-gradient(180deg, #F8F8F8 0%, rgba(248, 248, 248, 0) 100%);
}

.partners__window::after {
    bottom: 0;
    margin-top: -72px;
    background: linear-gradient(0deg, #F8F8F8 0%, rgba(248, 248, 248, 0) 100%);
}

.partners__window.is-at-top::before,
.partners__window.is-at-bottom::after {
    opacity: 0;
}

.partners__window-content p {
    padding-right: 20px;
}

.partners__review-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
    background-color: #FFFFFF;
}

.partners__review-image {
    display: block;
    width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
}

.partners__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: auto;
    padding-top: 36px;
}

.partners-slider .partners__pagination {
    position: absolute;
    left: 50%;
    bottom: -48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: max-content;
    transform: translateX(-50%);
}

.partners__pagination-btn {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background-color: #E9EAF8;
    cursor: pointer;
    transition: width 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.partners__pagination-btn:hover,
.partners__pagination-btn:focus-visible {
    transform: scale(1.08);
    outline: none;
}

.partners__pagination-btn.is-active {
    width: 40px;
    background-color: #8A9CC6;
}


.partners__name {
    font-size: 20px;
    font-weight: 600;
}

.partners__date {
    font-size: 16px;
    font-weight: 500;
    color: #848484;
}

.contact {
    margin-top: 137px;
    margin-bottom: -78px;
    position: relative;
    z-index: 2;
}

.contact__body {
    padding: 62px 100px 70px;
    border-radius: 40px;
    background: linear-gradient(180deg, #47547B 0%, #1F2131 151.99%);
}

.contact__title {
    font-size: 30px;
    color: var(--secondary);
}

.contact__content {
    display: grid;
    grid-template-columns: 390px 490px auto;
    align-items: end;
    gap: 30px;
    max-width: 1300px;
    margin-top: 42px;
}


.contact__fields {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact__fields input,
.contact__message textarea {
    width: 100%;
    padding: 18px 32px;
    border: none;
    border-radius: 20px;
    font-family: inherit;
    font-size: 16px;
    background-color: #E9EAF8;
    outline: none;
}

.contact__fields input {
    height: 60px;
}

.contact__message {
    display: flex;
    flex-direction: column;
}

.contact__message textarea {
    min-height: 145px;
    resize: none;
}

.contact__checkbox {
    position: relative;
    margin-top: 40px;
    padding-left: 7px;
}

.contact__checkbox input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
}

.contact__checkbox label {
    display: flex;
    gap: 25px;
    max-width: 400px;
    font-size: 14px;
    font-weight: 500;
    line-height: 180%;
    color: #8A9CC6;
    cursor: pointer;
}

.contact__checkbox label::before {
    content: "";
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    margin-top: 12px;
    border: 1px solid #D0D0D0;
    border-radius: 4px;
    background-color: var(--secondary);
    background-position: center;
    background-repeat: no-repeat;
    transition: background-color 0.3s, border-color 0.3s;
}

.contact__checkbox input:checked + label::before {
    border-color: var(--accent);
    background-color: var(--accent);
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='8' viewBox='0 0 11 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.3263 1.55639L4.57444 7.26316C4.23609 7.6015 3.69474 7.62406 3.33384 7.28571L0.288722 4.51128C-0.0721804 4.17293 -0.0947369 3.60902 0.221053 3.24812C0.559399 2.88722 1.12331 2.86466 1.48421 3.20301L3.89775 5.41353L9.0406 0.270677C9.4015 -0.0902256 9.96541 -0.0902256 10.3263 0.270677C10.6872 0.631579 10.6872 1.19549 10.3263 1.55639Z' fill='black'/%3E%3C/svg%3E");
}

.contact__btn {
    justify-self: end;
    min-width: 270px;
    padding: 24px 40px;
    font-size: 18px;
    font-weight: 500;
}

footer {
    background-color: #1F2131;
}

.footer__body {
    display: flex;
    justify-content: space-between;
    gap: 65px;
    padding-top: 142px;
    padding-bottom: 35px;
}

.footer__left {
    min-width: fit-content;
    margin-left: 5px;
}

.footer__logo {
    max-width: 360px;
}

.footer__logo-note {
    margin-top: 10px;
    font-size: 12px;
    color: var(--secondary);
}

.footer__title {
    margin-top: 50px;
    font-size: 36px;
    color: var(--secondary);
}

.footer__email {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;

}

.footer__email-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 45px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #47547B;
}

.footer__email-text {
    font-size: 18px;
    line-height: 140%;
    color: var(--secondary);
}

.footer__contacts-title {
    margin-top: 18px;
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary);
}

.footer__contacts-list {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.footer__contacts-list a {
    padding: 15px 31px;
    font-size: 18px;
    border-radius: 99px;
    text-decoration: none;
    color: var(--secondary);
    background-color: #47547B;
}

.footer__contacts-el--bold {
    font-weight: 700;
}

.footer__socials {
    margin-top: 18px;
}

.footer__socials-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary);
}

.footer__socials-list {
    display: flex;
    gap: 30px;
    margin-top: 16px;
}

.footer__socials-el {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #47547B;
}

.footer__right {
    width: 100%;
}

.footer__map-wrap {
    position: relative;
    width: 100%;
    height: 486px;
    overflow: hidden;
    border-radius: 30px;
    background-color: #1F2131;
}

.footer__map-wrap::after {
    content: none;
}

.footer__map {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.footer__map-frame {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.footer__map--fallback {
    background-color: #1F2131;
}

.footer-map-marker {
    position: relative;
    width: 66px;
    height: 82px;
    pointer-events: auto;
    transform: translate(-50%, -100%);
    z-index: 10;
}

.footer-map-marker__pin {
    position: absolute;
    left: 50%;
    bottom: 12px;
    width: 66px;
    height: 66px;
    padding: 0;
    border: 0;
    border-radius: 22px;
    background: #FFDD00;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: translateX(-50%);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.32);
}

.footer-map-marker__pin::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -13px;
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 15px solid #FFDD00;
    transform: translateX(-50%);
}

.footer-map-marker__pin svg {
    display: block;
    width: 34px;
    height: 34px;
}

.footer-map-marker__pin:focus-visible,
.footer-map-balloon__close:focus-visible,
.footer-map-balloon__link:focus-visible {
    outline: 3px solid #FFFFFF;
    outline-offset: 4px;
}

.footer-map-balloon {
    position: absolute;
    left: 50%;
    bottom: 92px;
    width: 292px;
    padding: 22px 24px 20px;
    border-radius: 24px;
    background: #FFFFFF;
    color: #111111;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    transform: translate(-50%, 10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.footer-map-balloon::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -11px;
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 12px solid #FFFFFF;
    transform: translateX(-50%);
}

.footer-map-marker.is-open {
    z-index: 20;
}

.footer-map-marker.is-open .footer-map-balloon {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.footer-map-balloon__close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 26px;
    height: 26px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #8A8A8A;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.footer-map-balloon__title {
    margin: 0 28px 8px 0;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 800;
    color: #111111;
}

.footer-map-balloon__address {
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
    color: #333333;
}

.footer-map-balloon__link {
    display: inline-flex;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 700;
    color: #111111;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer__bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

.footer__bottom-link {
    font-size: 16px;
    font-weight: 500;
    color: #8A9CC6;
}
/* Responsive layout */
@media (max-width: 1599px) {
    :root {
        --container-width: 1400px;
    }

    .header__right {
        max-width: 980px;
    }

    .header__contacts {
        max-width: 500px;
    }

    .partners__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 24px;
    }

    .partners__grid > img {
        width: min(100%, 152px);
    }

    .contact__content {
        grid-template-columns: minmax(300px, 390px) minmax(380px, 490px) auto;
    }
}

@media (max-width: 1439px) {
    :root {
        --container-width: 1240px;
        --text-size-heading: 34px;
    }

    header {
        top: 30px;
    }

    .header__logo {
        max-width: 270px;
        height: auto;
    }

    .header__right {
        max-width: 900px;
        padding: 14px 20px 18px;
    }

    .header__contacts {
        max-width: 445px;
        gap: 16px;
    }

    .header__contacts-el {
        gap: 14px;
    }

    .header__contacts-text {
        font-size: 16px;
    }

    .header__links {
        max-width: 390px;
        gap: 16px;
    }

    .header__btn {
        min-width: 245px;
        padding-inline: 24px;
    }

    .hero {
        padding-top: 188px;
        padding-bottom: 136px;
        background-position: center top;
    }

    .hero__title {
        max-width: 760px;
        font-size: 50px;
    }

    .hero__note {
        margin-top: 42px;
    }

    .hero__btn {
        margin-top: 58px;
    }

    .services__tabs {
        max-width: 470px;
        padding: 28px 26px 20px;
    }

    .services__content {
        max-width: 970px;
        padding-left: 145px;
    }

    .who {
        margin-top: 190px;
    }

    .who__body {
        gap: 24px;
    }

    .who__item {
        padding: 26px;
    }

    .advantages {
        margin-top: 145px;
    }

    .advantages__body {
        margin-top: 65px;
    }

    .audit__body {
        padding-inline: 55px;
    }

    .free__left {
        max-width: 650px;
    }

    .free__right {
        max-width: 520px;
    }

    .calc__left {
        padding: 44px 44px 44px 42px;
    }

    .calc__grid {
        column-gap: 48px;
        row-gap: 56px;
    }

    .geo__body {
        min-height: 560px;
        padding: 108px 60px;
    }

    .geo__text {
        margin-top: 120px;
    }

    .why__item-title {
        font-size: 23px;
    }

    .partners__left {
        padding: 42px 30px 50px 48px;
    }

    .partners__right {
        min-width: 450px;
        max-width: 450px;
    }

    .contact__body {
        padding-inline: 72px;
    }

    .contact__content {
        grid-template-columns: minmax(280px, 350px) minmax(340px, 430px) auto;
        gap: 24px;
    }

    .footer__body {
        gap: 42px;
    }
}

@media (max-width: 1279px) {
    :root {
        --container-width: 1120px;
        --text-size-heading: 32px;
    }

    header {
        top: 24px;
    }

    .header__body {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .header__left {
        margin-top: 0;
    }

    .header__right {
        max-width: none;
        width: 100%;
    }

    .header__contacts {
        max-width: none;
    }

    .header__links {
        flex: 0 0 auto;
    }

    .hero {
        padding-top: 285px;
        padding-bottom: 118px;
        border-radius: 0 0 0 72px;
    }

    .hero__title {
        max-width: 760px;
        font-size: 46px;
    }

    .services {
        margin-top: 72px;
    }

    .services__tabs {
        max-width: 420px;
        top: 38px;
    }

    .services__content {
        max-width: calc(100% - 230px);
        padding: 62px 26px 54px 150px;
    }

    .services__tab {
        font-size: 18px;
    }

    .services__item p {
        font-size: 17px;
    }

    .who {
        margin-top: 150px;
    }

    .who__body {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .who__item,
    .who__item:nth-child(2) {
        min-height: 0;
        height: auto;
        margin-top: 0;
    }

    .who__item:last-child {
        grid-column: 1 / -1;
    }

    .who__item-title {
        height: auto;
    }

    .advantages__body {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .advantages__el:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: calc(50% - 15px);
        width: 100%;
        justify-self: center;
    }

    .audit {
        margin-bottom: -54px;
    }

    .audit__list {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 20px 32px;
    }

    .audit__list li {
        flex: 1 1 calc(50% - 16px);
    }

    .free {
        padding-top: 118px;
    }

    .free__body {
        gap: 48px;
    }

    .free__left {
        max-width: 560px;
    }

    .free__finish {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        margin-top: 58px;
    }

    .free__right {
        max-width: none;
    }

    .calc__body {
        flex-direction: column;
    }

    .calc__left {
        border-radius: 40px;
    }

    .calc__result {
        width: 100%;
        min-width: 0;
        padding-top: 38px;
        border-radius: 0 0 40px 40px;
    }

    .geo__body {
        min-height: 520px;
    }

    .why__body {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .partners__body {
        flex-direction: column;
    }

    .partners__right {
        min-width: 0;
        max-width: none;
        min-height: 580px;
    }

    .partners__grid {
        max-height: 430px;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 26px 24px;
    }

    .contact {
        margin-top: 128px;
    }

    .contact__body {
        padding: 52px;
    }

    .contact__content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
    }

    .contact__btn {
        justify-self: start;
    }

    .footer__body {
        flex-direction: column;
    }

    .footer__right img {
        display: block;
        max-width: 960px;
    }
}

@media (max-width: 1023px) {
    :root {
        --container-width: 100%;
        --text-size-heading: 30px;
    }

    section,
    header,
    footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .btn {
        min-width: 0;
    }

    .header__body {
        gap: 18px;
    }

    .header__logo {
        max-width: 250px;
    }

    .header__right {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        border-radius: 32px;
    }

    .header__contacts,
    .header__links {
        max-width: none;
    }

    .header__links {
        justify-content: flex-start;
    }

    .hero {
        padding-top: 360px;
        padding-bottom: 96px;
        background-position: 58% top;
    }

    .hero__title {
        max-width: 700px;
        font-size: 42px;
        line-height: 128%;
    }

    .hero__note {
        gap: 22px;
    }

    .hero__note p {
        font-size: 17px;
    }

    .hero__btn {
        margin-top: 46px;
    }

    .services {
        margin-top: 64px;
    }

    .services__tabs {
        position: relative;
        top: auto;
        max-width: none;
        margin-top: 34px;
        padding: 22px;
        border-radius: 36px;
    }

    .services__content {
        max-width: none;
        margin-top: 22px;
        padding: 38px 28px 108px;
    }

    .services__content-image {
        right: 24px;
        bottom: 18px;
        max-width: 150px;
        max-height: 132px;
    }

    .who {
        margin-top: 88px;
    }

    .who__body,
    .advantages__body,
    .why__body {
        grid-template-columns: 1fr;
    }

    .who__item:last-child,
    .advantages__el:last-child:nth-child(odd) {
        grid-column: auto;
        max-width: none;
    }

    .advantages {
        margin-top: 108px;
    }

    .advantages__body {
        margin-top: 44px;
    }

    .advantages__el {
        height: auto;
        min-height: 170px;
    }

    .audit {
        margin-top: 72px;
        margin-bottom: -36px;
    }

    .audit__body {
        padding: 36px 28px 42px;
        border-radius: 32px;
    }

    .audit__text {
        font-size: 18px;
    }

    .audit__list {
        margin-left: 0;
        margin-bottom: 28px;
    }

    .audit__list li {
        flex-basis: 100%;
    }

    .free {
        padding-top: 88px;
        padding-bottom: 48px;
        border-radius: 32px;
    }

    .free__body {
        flex-direction: column;
        gap: 34px;
    }

    .free__left {
        max-width: none;
    }

    .free__title {
        max-width: none;
    }

    .free__left {
        display: contents;
    }

    .free__title {
        order: 1;
    }

    .free__right {
        order: 2;
    }

    .free__finish {
        order: 3;
        margin-top: 0;
    }

    .calc {
        margin-top: 88px;
    }

    .calc__body {
        margin-top: 38px;
        border-radius: 32px;
    }

    .calc__left {
        padding: 36px 28px;
        border-radius: 32px;
    }

    .calc__grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "remote"
            "places"
            "equipment";
        row-gap: 38px;
    }

    .calc__equipment-row {
        max-width: none;
    }

    .calc__result {
        border-radius: 0 0 32px 32px;
    }

    .geo {
        margin-top: 88px;
    }

    .geo__body {
        min-height: 430px;
        padding: 74px 28px;
        border-radius: 32px;
    }

    .geo__text {
        margin-top: 76px;
        font-size: 18px;
    }

    .why {
        margin-top: 110px;
    }

    .why__body {
        gap: 22px;
        margin-left: 0;
    }

    .why__item {
        min-height: 250px;
    }

    .partners {
        margin-top: 110px;
    }

    .partners__body {
        margin-top: 38px;
    }

    .partners__left,
    .partners__right {
        padding: 34px 28px;
        border-radius: 32px;
    }

    .partners__grid {
        max-height: 420px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px 20px;
    }

    .partners__right {
        min-height: 540px;
    }

    .partners__window {
        max-width: none;
    }

    .contact {
        margin-top: 118px;
        margin-bottom: -54px;
    }

    .contact__body {
        padding: 40px 28px 44px;
        border-radius: 32px;
    }

    .contact__content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact__title {
        font-size: 28px;
    }

    .contact__btn {
        width: 100%;
    }

    .footer__body {
        padding-top: 116px;
        gap: 32px;
    }

    .footer__left {
        margin-left: 0;
    }

    .footer__title {
        font-size: 32px;
    }

    .footer__contacts-list {
        flex-wrap: wrap;
    }

    .footer__bottom {
        gap: 18px;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    :root {
        --text-size-primary: 15px;
        --text-size-heading: 26px;
    }

    section,
    header,
    footer {
        padding-left: 16px;
        padding-right: 16px;
    }

    h2 {
        line-height: 125%;
    }

    .btn {
        width: 100%;
        padding: 18px 22px;
        font-size: 16px;
    }

    header {
        top: 0px;
        padding-top: 16px;
        padding-bottom: 16px;
        background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.76) 59.78%, rgba(0, 0, 0, 0) 100%);
    }

    .header__body {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: start;
        column-gap: 14px;
        row-gap: 14px;
    }

    .header__left {
        min-width: 0;
    }

    .header__logo {
        max-width: 220px;
    }

    .header__toggle {
        display: inline-flex;
        justify-self: end;
        align-self: start;
    }

    .header__note {
        margin-top: 0;
    }

    .header__right {
        grid-column: 1 / -1;
        width: 100%;
        max-height: 0;
        margin-top: 0;
        padding: 0 16px;
        gap: 16px;
        border-radius: 26px;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        transform: translateY(-8px);
        transition: max-height 0.34s ease, padding 0.34s ease, opacity 0.24s ease, transform 0.34s ease, visibility 0.34s ease;
    }

    .header__right.is-open {
        max-height: 360px;
        padding: 16px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .header__contacts {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .header__contacts-el {
        gap: 12px;
    }

    .header__contacts-icon,
    .header__socials-el {
        flex-basis: 40px;
        min-width: 40px;
        width: 40px;
        height: 40px;
    }

    .header__contacts-text {
        font-size: 15px;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .header__links {
        flex-direction: column;
        gap: 14px;
    }

    .header__socials {
        margin-top: 0;
    }

    .header__btn {
        width: 100%;
    }

    .hero {
        padding-top: 226px;
        padding-bottom: 68px;
    }

    .hero__title {
        margin-left: 0;
        font-size: clamp(30px, 8vw, 38px);
        line-height: 124%;
    }

    .hero__note {
        align-items: flex-start;
        gap: 12px;
        margin-top: 90px;
    }

    .hero__note-dot {
        min-width: 24px;
        width: 24px;
        height: 24px;
        margin-top: 2px;
        transform: translateX(-10px)
    }

    .hero__note-dot div {
        min-width: 12px;
        width: 12px;
        height: 12px;
    }

    .hero__note p {
        font-size: 14px;
        font-weight: 600;
    }

    .hero__btn {
        display: block;
        max-width: 80%;
        margin: 0 auto;
        margin-top: 24px;
        text-align: center;
        padding: 18px 20px;
        font-size: 14px;
    }

    .services {
        margin-top: 48px;
    }

    .services__tabs {
        gap: 10px;
        margin-top: 24px;
        padding: 14px;
        border-radius: 26px;
        box-shadow: none;
    }

    .services__tab {
        gap: 12px;
        padding: 16px 18px;
        font-size: 16px;
        line-height: 135%;
    }

    .services__tab::after {
        margin-top: 0;
    }

    .services__content {
        padding: 24px 18px 24px;
        border-radius: 26px;
    }

    .services__list {
        gap: 16px;
    }

    .services__item {
        gap: 14px;
    }

    .services__item p {
        font-size: 15px;
        line-height: 145%;
    }

    .services__content-image {
        right: 16px;
        bottom: 16px;
        max-width: 114px;
        max-height: 102px;
    }

    .who {
        margin-top: 64px;
    }

    .who__body {
        gap: 18px;
        margin-top: 30px;
    }

    .who__item,
    .who__item:nth-child(2) {
        padding: 22px 18px;
        border-radius: 26px;
    }

    .who__item:nth-child(2) {
        padding-block: 22px;
    }

    .who__item:nth-child(2) .who__item-title,
    .who__item-title {
        margin-top: 18px;
        padding-left: 0;
        font-size: 18px;
    }

    .who__item-text:first-of-type {
        margin-top: 18px;
    }

    .who__item-text {
        margin-top: 16px;
        padding-left: 0;
        line-height: 150%;
    }

    .advantages {
        margin-top: 78px;
    }

    .advantages__title {
        text-align: left;
    }

    .advantages__body {
        gap: 16px;
        margin-top: 28px;
    }

    .advantages__el {
        min-height: 0;
        padding: 22px 18px;
        border-radius: 24px;
        align-items: flex-start;
    }

    .advantages__el-title,
    .advantages__el-text {
        text-align: left;
    }

    .advantages__el-title {
        font-size: 18px;
    }

    .audit {
        margin-top: 54px;
        margin-bottom: -28px;
    }

    .audit__body {
        padding: 26px 18px 30px;
        border-radius: 26px;
    }

    .audit__text {
        margin-top: 16px;
        font-size: 16px;
        line-height: 145%;
    }

    .audit__list {
        gap: 16px;
        margin-top: 20px;
        margin-bottom: 24px;
    }

    .audit__list li {
        gap: 16px;
        align-items: flex-start;
    }

    .audit__list svg {
        min-width: 46px;
        width: 46px;
    }

    .audit__list-text {
        font-size: 15px;
    }

    .free {
        padding-top: 64px;
        padding-bottom: 30px;
        border-radius: 26px;
    }

    .free__body {
        gap: 24px;
    }

    .free__finish {
        margin-top: 24px;
        gap: 20px;
    }

    .free__checkbox {
        margin-top: 0;
    }

    .free__checkbox label,
    .contact__checkbox label {
        gap: 14px;
        font-size: 13px;
        line-height: 160%;
    }

    .free__checkbox label::before,
    .contact__checkbox label::before {
        margin-top: 2px;
    }

    .free__right {
        gap: 14px;
    }

    .free__right input,
    .free__right textarea,
    .contact__fields input,
    .contact__message textarea {
        padding: 16px 18px;
        border-radius: 16px;
        font-size: 15px;
    }

    .calc {
        margin-top: 66px;
    }

    .calc__body {
        margin-top: 26px;
        border-radius: 26px;
    }

    .calc__left {
        padding: 24px 18px;
        border-radius: 26px;
    }

    .calc__grid {
        row-gap: 28px;
    }

    .calc__head {
        align-items: flex-start;
    }

    .calc__num {
        min-width: 36px;
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .calc__item-title {
        font-size: 16px;
    }

    .calc__radios {
        flex-wrap: wrap;
        gap: 16px 28px;
        margin-top: 16px;
    }

    .calc__equipment {
        gap: 12px;
    }

    .calc__equipment-row {
        align-items: flex-start;
        gap: 12px;
    }

    .calc__equipment-label {
        gap: 12px;
        font-size: 15px;
    }

    .calc__equipment-fixed,
    .calc__equipment-count {
        flex-basis: 56px;
        width: 56px;
    }

    .calc__result {
        padding: 28px 18px 30px;
        border-radius: 0 0 26px 26px;
    }

    .calc__price {
        margin-top: 22px;
        font-size: 30px;
    }

    .calc__price.is-agreement {
        font-size: 24px;
    }

    .calc__tax {
        margin-top: 24px;
    }

    .calc__btn {
        margin-right: 0;
        margin-top: 20px;
    }

    .geo {
        margin-top: 66px;
    }

    .geo__body {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 438px;
        padding: 44px 18px;
        border-radius: 26px;
        background-image: url(../img/geo-m.webp);        
    }

    .geo__title {
        font-size: 23px;
    }

    .geo__text {
        margin-top: 90px;
        font-size: 14px;
        line-height: 180%;
    }

    .why {
        margin-top: 78px;
    }

    .why__body {
        margin-top: 28px;
        gap: 16px;
    }

    .why__item {
        min-height: 0;
        padding: 22px 18px;
        border-radius: 26px;
    }

    .why__item-num {
        font-size: 72px;
        line-height: 72px;
    }

    .why__item-title {
        max-width: none;
        margin-top: 22px;
        font-size: 21px;
    }

    .partners {
        margin-top: 78px;
    }

    .partners__body {
        gap: 72px;
        margin-top: 28px;
    }

    .partners__left,
    .partners__right {
        padding: 24px 18px;
        border-radius: 26px;
    }

    .partners__grid {
        max-height: 380px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 16px;
    }

    .partners__right {
        min-height: 490px;
    }

    .partners__right-title,
    .partners__name {
        font-size: 18px;
    }

    .partners__window {
        margin-top: 20px;
        max-height: 330px;
        line-height: 150%;
    }

    .partners__window-content p {
        padding-right: 12px;
    }

    .partners__bottom {
        gap: 12px;
        padding-top: 22px;
    }

    .partners__date {
        font-size: 14px;
    }

    .partners-slider .partners__pagination {
        bottom: -36px;
        gap: 8px;
    }

    .contact {
        margin-top: 92px;
        margin-bottom: -40px;
    }

    .contact__body {
        padding: 26px 18px 30px;
        border-radius: 26px;
    }

    .contact__title {
        font-size: 24px;
        line-height: 130%;
    }

    .contact__content {
        gap: 16px;
        margin-top: 24px;
    }

    .contact__fields {
        gap: 14px;
    }

    .contact__fields input {
        height: auto;
    }

    .contact__message textarea {
        min-height: 126px;
    }

    .contact__checkbox {
        margin-top: 18px;
        padding-left: 0;
    }

    .footer__body {
        padding-top: 84px;
        padding-bottom: 28px;
    }

    .footer__logo {
        max-width: 280px;
    }

    .footer__logo img {
        display: block;
        width: 100%;
        height: auto;
    }

    .footer__title {
        margin-top: 36px;
        font-size: 28px;
    }

    .footer__email {
        gap: 14px;
        align-items: flex-start;
    }

    .footer__email-logo,
    .footer__socials-el {
        min-width: 40px;
        width: 40px;
        height: 40px;
    }

    .footer__email-text {
        font-size: 15px;
    }

    .footer__contacts-title,
    .footer__socials-title {
        font-size: 18px;
    }

    .footer__contacts-list {
        gap: 12px;
        margin-top: 14px;
    }

    .footer__contacts-list a {
        width: 100%;
        padding: 14px 18px;
        font-size: 16px;
        text-align: center;
    }

    .footer__socials-list {
        gap: 14px;
    }

    .footer__bottom {
        flex-direction: column;
        margin-top: 36px;
    }

    .footer__bottom-link {
        font-size: 14px;
    }
}

@media (min-width: 1200px) and (max-width: 1279px) {
    .header__body {
        align-items: center;
        flex-wrap: nowrap;
        gap: 18px;
    }

    .header__left {
        flex: 0 0 auto;
    }

    .header__logo {
        max-width: 235px;
        height: auto;
    }

    .header__right {
        flex: 1 1 auto;
        width: auto;
        padding: 13px 16px 16px;
        gap: 14px;
    }

    .header__contacts {
        gap: 12px;
    }

    .header__contacts-el {
        gap: 10px;
    }

    .header__contacts-icon,
    .header__socials-el {
        flex-basis: 40px;
        min-width: 40px;
        width: 40px;
        height: 40px;
    }

    .header__contacts-text {
        font-size: 15px;
    }

    .header__links {
        max-width: 344px;
        gap: 12px;
    }

    .header__socials {
        gap: 12px;
    }

    .header__btn {
        min-width: 218px;
        padding-inline: 18px;
        font-size: 14px;
    }

    .hero {
        padding-top: 220px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .hero {
        padding-top: 278px;
    }
}

@media (max-width: 479px) {
    .hero {
        padding-top: 160px;
        padding-bottom: 40px;
        background-image: url(../img/hero-m.webp);
    }

    .hero__title {
        max-width: 200px;
    }

    .header__logo {
        max-width: 205px;
    }

    .services__tab {
        font-size: 15px;
    }

    .partners__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.services__item {
    align-items: flex-start;
}

.services__item p {
    min-width: 0;
}

.calc__equipment-row {
    gap: 16px;
}

.calc__equipment-label {
    flex: 1 1 auto;
    min-width: 0;
    align-items: flex-start;
}

.calc__equipment-label > span {
    flex-shrink: 0;
    margin-top: 2px;
}

.calc__equipment-count,
.calc__equipment-fixed {
    flex-shrink: 0;
}

@media (max-width: 1439px) and (min-width: 1024px) {
    .services__body {
        display: grid;
        grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
        gap: 24px;
        align-items: start;
    }

    .services__tabs {
        position: relative;
        top: auto;
        width: 100%;
        max-width: none;
        margin-top: 56px;
        padding: 26px 24px 20px;
        border-radius: 40px;
    }

    .services__content {
        max-width: none;
        min-height: 100%;
        margin-top: 56px;
        margin-left: 0;
        padding: 52px 28px;
        border-radius: 40px;
    }

    .services__list {
        padding-right: 120px;
    }

    .services__content-image {
        right: 18px;
        bottom: 18px;
        max-width: 140px;
        max-height: 124px;
    }

    .who {
        margin-top: 110px;
    }
}

@media (max-width: 1279px) and (min-width: 1024px) {
    .services__body {
        grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
        gap: 20px;
    }

    .services__tabs {
        margin-top: 38px;
        padding: 22px 20px 18px;
        border-radius: 34px;
    }

    .services__tab {
        padding: 16px 18px 14px 22px;
        font-size: 17px;
    }

    .services__content {
        margin-top: 38px;
        padding: 38px 24px 96px;
        border-radius: 34px;
    }

    .services__list {
        gap: 16px;
        padding-right: 110px;
    }

    .services__item {
        gap: 18px;
    }

    .services__item p {
        font-size: 16px;
    }

    .services__content-image {
        max-width: 130px;
        max-height: 116px;
    }

    .who {
        margin-top: 88px;
    }
}

@media (max-width: 1023px) {
    .calc__equipment-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 60px;
        align-items: start;
        gap: 10px 12px;
    }

    .calc__equipment-count,
    .calc__equipment-fixed {
        width: 60px;
        justify-self: end;
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .calc__equipment-row {
        grid-template-columns: minmax(0, 1fr) 56px;
        gap: 10px;
    }

    .calc__equipment-label {
        gap: 10px;
        font-size: 15px;
        line-height: 1.4;
    }

    .calc__equipment-count,
    .calc__equipment-fixed {
        width: 56px;
        flex-basis: 56px;
    }
}

@media (max-width: 479px) {
    .calc__equipment-row {
        grid-template-columns: minmax(0, 1fr) 52px;
    }

    .calc__equipment-count,
    .calc__equipment-fixed {
        width: 52px;
        flex-basis: 52px;
        margin-left: 0;
    }

    .services__list {
        padding-right: 0;
    }
}
@media (min-width: 1440px) and (max-width: 1599px) {
    .services__content {
        padding-left: 292px;
    }
}

@media (max-width: 767px) {
    .header__toggle {
        flex-basis: 52px;
        width: 45px;
        height: 45px;
        border: none;
        border-radius: 50%;
        background-color: transparent;
        border: 1px solid var(--accent);
        backdrop-filter: none;
        transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
    }

    .header__toggle span {
        width: 20px;
        height: 2px;
        background-color: var(--accent);
    }

    .header__toggle span:nth-child(1) { top: 13.5px; }
    .header__toggle span:nth-child(2) { top: 20.5px; }
    .header__toggle span:nth-child(3) { top: 27.5px; }

    .header__toggle.is-active span:nth-child(1),
    .header__toggle.is-active span:nth-child(3) {
        top: 20px;
    }

    .footer__contacts-list a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 46px;
        text-align: center;
        line-height: 1.25;
    }
}


/* Modal */
body.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 24px;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0.3s ease;
}

.modal.is-open {
    visibility: visible;
    pointer-events: auto;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.is-open .modal__overlay {
    opacity: 1;
}

.modal__dialog {
    position: relative;
    width: min(635px, 100%);
    max-height: calc(100vh - 48px);
    max-height: calc(100dvh - 48px);
    min-height: min(591px, calc(100vh - 48px));
    min-height: min(591px, calc(100dvh - 48px));
    overflow-y: auto;
    padding: 98px 61px 92px;
    border-radius: 40px;
    background: #F8F8F8;
    opacity: 0;
    transform: translateY(80px);
    transition: transform 0.36s ease, opacity 0.3s ease;
}

.modal.is-open .modal__dialog {
    opacity: 1;
    transform: translateY(0);
}

.modal__close {
    position: absolute;
    top: 20px;
    right: 61px;
    padding: 0;
    border: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    color: #8A9CC6;
    background: transparent;
    cursor: pointer;
    transition: color 0.3s;
}

.modal__close:hover,
.modal__close:focus-visible {
    color: #47547B;
}

.modal__form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 513px;
    margin: 0 auto;
}

.modal__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    text-align: center;
}

.modal__title {
    width: 100%;
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0;
    color: #000;
}

.modal__text {
    width: 100%;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    color: #000;
}

.modal__fields {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: min(500px, 100%);
}

.modal__input {
    width: 100%;
    height: 60px;
    padding: 20px 30px;
    border: none;
    border-radius: 20px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #000;
    background: #FFFFFF;
    outline: none;
}

.modal__input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.modal__input:focus-visible {
    box-shadow: 0 0 0 2px #8A9CC6;
}

.modal__checkbox {
    position: relative;
    width: min(499px, 100%);
}

.modal__checkbox input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
}

.modal__checkbox label {
    display: flex;
    align-items: center;
    gap: 25px;
    min-height: 24px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #8B8B8B;
    cursor: pointer;
}

.modal__checkbox label::before {
    content: "";
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border: 1px solid #D0D0D0;
    border-radius: 4px;
    background: #FFFFFF;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-color 0.3s, border-color 0.3s;
}

.modal__checkbox input:checked + label::before {
    border-color: var(--accent);
    background-color: var(--accent);
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='8' viewBox='0 0 11 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.3263 1.55639L4.57444 7.26316C4.23609 7.6015 3.69474 7.62406 3.33384 7.28571L0.288722 4.51128C-0.0721804 4.17293 -0.0947369 3.60902 0.221053 3.24812C0.559399 2.88722 1.12331 2.86466 1.48421 3.20301L3.89775 5.41353L9.0406 0.270677C9.4015 -0.0902256 9.96541 -0.0902256 10.3263 0.270677C10.6872 0.631579 10.6872 1.19549 10.3263 1.55639Z' fill='black'/%3E%3C/svg%3E");
}

.modal__checkbox input:focus-visible + label::before {
    box-shadow: 0 0 0 2px #8A9CC6;
}

.modal__btn {
    width: 269px;
    min-width: 269px;
    height: 65px;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
}

@media (prefers-reduced-motion: reduce) {
    .modal,
    .modal__overlay,
    .modal__dialog {
        transition: none;
    }
}

@media (max-width: 767px) {
    .modal {
        align-items: center;
        padding: 12px;
    }

    .modal__dialog {
        width: 100%;
        min-height: 0;
        max-height: calc(100vh - 24px);
        max-height: calc(100dvh - 24px);
        overflow-y: auto;
        padding: 72px 24px 34px;
        border-radius: 32px;
        transform: translateY(60px);
    }

    .modal__close {
        top: 18px;
        right: 24px;
    }

    .modal__form {
        gap: 24px;
    }

    .modal__title {
        font-size: 22px;
        line-height: 1.25;
    }

    .modal__text {
        font-size: 15px;
        line-height: 1.45;
    }

    .modal__fields {
        gap: 18px;
    }

    .modal__checkbox label {
        align-items: flex-start;
        gap: 14px;
        line-height: 1.45;
    }

    .modal__btn {
        width: 100%;
        min-width: 0;
    }
}

@media (max-height: 650px) and (min-width: 768px) {
    .modal__dialog {
        min-height: 0;
        padding-top: 72px;
        padding-bottom: 52px;
    }

    .modal__form {
        gap: 22px;
    }

    .modal__fields {
        gap: 18px;
    }
}

.partners-logos-slider {
    --partners-logo-columns: 4;
    --partners-logo-rows: 6;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.partners__logos-swiper {
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.partners__logos-wrapper {
    align-items: stretch;
}

.partners__logos-slide {
    height: auto;
    user-select: none;
}

.partners-logos-slider .partners__grid {
    max-height: none;
    min-height: 100%;
    display: grid;
    grid-template-columns: repeat(var(--partners-logo-columns), minmax(0, 1fr));
    grid-template-rows: repeat(var(--partners-logo-rows), auto);
    justify-items: center;
    align-content: start;
    justify-content: stretch;
    gap: 32px 24px;
    overflow: visible;
}

.partners-logos-slider .partners__logo,
.partners-logos-slider .partners__grid > img {
    display: block;
    width: min(100%, 153px);
    height: auto;
    filter: contrast(0);
    transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.partners-logos-slider .partners__pagination {
    position: absolute;
    left: 50%;
    bottom: -48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: max-content;
    transform: translateX(-50%);
}

.partners-logos-slider .partners__pagination.swiper-pagination-lock,
.partners-slider .partners__pagination.swiper-pagination-lock {
    display: none;
}

@media (max-width: 1279px) {
    .partners-logos-slider .partners__grid {
        gap: 26px 24px;
    }
}

@media (max-width: 1023px) {
    .partners-logos-slider .partners__grid {
        gap: 24px 20px;
    }
}

@media (max-width: 767px) {
    .partners-logos-slider {
        --partners-logo-columns: 2;
        --partners-logo-rows: 6;
    }

    .partners-logos-slider .partners__grid {
        gap: 32px 28px;
    }

    .partners-logos-slider .partners__pagination {
        bottom: -36px;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .footer-map-balloon {
        width: min(280px, calc(100vw - 48px));
        padding: 18px 20px 18px;
    }
}

/* Privacy page */
.page--privacy {
    background-color: #FFFFFF;
}

.page--privacy .wrapper {
    background-color: #FFFFFF;
}

.header--dark {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 30px 20px;
    background: #1F2131;
}

.header--dark .header__right {
    background-color: #2B3047;
    backdrop-filter: none;
}

.header--dark .header__contacts-icon {
    background-color: #47547B;
}

.header--dark .header__socials-el {
    border-color: rgba(233, 234, 248, 0.22);
}

.header--dark .header__toggle {
    background-color: #2B3047;
    border-color: rgba(233, 234, 248, 0.22);
    backdrop-filter: none;
}

.header--dark .header__right.is-open {
    background-color: #1F2131;
}

.privacy {
    padding-top: 72px;
    padding-bottom: 120px;
    background-color: #FFFFFF;
}

.privacy__container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.privacy__back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 46px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #47547B;
    text-decoration: none;
    transition: color 0.3s;
}

.privacy__back::before {
    content: "";
    width: 10px;
    height: 10px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
}

.privacy__back:hover {
    color: var(--primary);
}

.privacy__head {
    max-width: 1160px;
    padding-bottom: 44px;
    border-bottom: 1px solid #E9EAF8;
}

.privacy__title {
    max-width: 1120px;
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0.03em;
    color: var(--primary);
}

.privacy__lead {
    max-width: 840px;
    margin-top: 24px;
    font-size: 20px;
    line-height: 1.55;
    color: #47547B;
}

.privacy__content {
    max-width: 1240px;
    margin-top: 48px;
}

.privacy__section {
    padding-right: 0;
    padding-left: 0;
}

.privacy__section + .privacy__section {
    margin-top: 44px;
    padding-top: 40px;
    border-top: 1px solid #E9EAF8;
}

.privacy__section h2 {
    max-width: 980px;
    margin-bottom: 22px;
    font-size: 30px;
    line-height: 1.25;
    color: var(--primary);
}

.privacy__section p {
    max-width: 1180px;
    font-size: 18px;
    line-height: 1.7;
    color: #333333;
}

.privacy__section p + p {
    margin-top: 14px;
}

.privacy__section a {
    font-weight: 700;
    color: #47547B;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s;
}

.privacy__section a:hover {
    color: var(--primary);
}

@media (max-width: 1279px) {
    .header--dark {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .privacy {
        padding-top: 64px;
        padding-bottom: 100px;
    }

    .privacy__title {
        font-size: 46px;
    }
}

@media (max-width: 1023px) {
    .header--dark {
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .privacy {
        padding-top: 56px;
        padding-bottom: 80px;
    }

    .privacy__head {
        padding-bottom: 36px;
    }

    .privacy__title {
        font-size: 38px;
    }

    .privacy__lead,
    .privacy__section p {
        font-size: 17px;
    }

    .privacy__section h2 {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .header--dark {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .privacy {
        padding-top: 42px;
        padding-bottom: 64px;
    }

    .privacy__back {
        margin-bottom: 30px;
        font-size: 14px;
    }

    .privacy__head {
        padding-bottom: 30px;
    }

    .privacy__title {
        font-size: 30px;
    }

    .privacy__lead {
        margin-top: 18px;
        font-size: 16px;
    }

    .privacy__content {
        margin-top: 34px;
    }

    .privacy__section + .privacy__section {
        margin-top: 34px;
        padding-top: 30px;
    }

    .privacy__section h2 {
        margin-bottom: 18px;
        font-size: 22px;
    }

    .privacy__section p {
        font-size: 15px;
        line-height: 1.65;
    }
}
