/* Подключение шрифтов */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200..1000&display=swap');

/* Open Runde Regular */
@font-face {
    font-family: 'Open Runde';
    src: url('assets/fonts/OpenRunde-Regular.woff2') format('woff2'),
        url('assets/fonts/OpenRunde-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

/* Open Runde Medium */
@font-face {
    font-family: 'Open Runde';
    src: url('assets/fonts/OpenRunde-Medium.woff2') format('woff2'),
        url('assets/fonts/OpenRunde-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

/* Open Runde Semibold */
@font-face {
    font-family: 'Open Runde';
    src: url('assets/fonts/OpenRunde-Semibold.woff2') format('woff2'),
        url('assets/fonts/OpenRunde-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

/* Open Runde Bold */
@font-face {
    font-family: 'Open Runde';
    src: url('assets/fonts/OpenRunde-Bold.woff2') format('woff2'),
        url('assets/fonts/OpenRunde-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/* Сброс стилей и базовые настройки */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

* {
    padding: 0;
    margin: 0;
    border: 0;
}

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

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

nav,
footer,
header,
aside {
    display: block;
}

html,
body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

a,
button {
    color: inherit;
    -webkit-tap-highlight-color: #00000000;
}


/* Основные стили страницы */

:root {
    --font-family: "Manrope", sans-serif;
    --second-family: "Open Runde", sans-serif;
    --third-family: "Roboto", sans-serif;
    --font3: "Nunito", sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}


.header {
    position: relative;
    z-index: 10;
    background: #fff;
}

.container {
    max-width: 1400px;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    display: flex;
    align-items: center;
    font-family: var(--font3);
    font-weight: 500;
    font-size: 14px;
    color: #191919;
    margin-left: -20px;
    white-space: nowrap;
    margin-right: 30px;
}

.header__logo div:first-child {
    width: 96px;
    height: 96px;
}

.header__logo div:first-child picture {
    width: 100%;
}

.header__logo div:first-child picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header__logo div {
    width: 96px;
    height: 96px;
}

.header__nav ul {
    display: flex;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    color: #191919;
    align-items: center;
    text-align: left;



}

.header__nav li:not(:last-child) {
    margin-right: 26px;
}

.header__burgerBtn {
    display: none;
    position: relative;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 5;
    background: transparent;
    border: none;

}



.header__burgerBtn span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 2px;
    
    background-color: #28710D;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header__burgerBtn span:nth-child(1) {
    top: 8.33px;
}

.header__burgerBtn span:nth-child(2) {
    top: 15px;
}

.header__burgerBtn span:nth-child(3) {
    top: 21.67px;
}


.header__burgerBtn.active span:nth-child(1) {
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

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

.header__burgerBtn.active span:nth-child(3) {
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.hero {
    padding: 40px 0 80px;
}


.hero__title {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 36px;
    line-height: 116.7%;
    color: #191919;
    margin-bottom: 16px;
    text-align: center;
}

.hero__subtitle {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    color: #191919;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.35;
}

.hero__aboutApp {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #f2f2f3;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    max-height: 523px;
    padding: 0 40px;
}

.hero__badge {
    position: absolute;
    right: 0;
    border-radius: 0 0 0 20px;
    padding: 10px;
    width: 210px;
    height: 41px;
    background: #28710d;

    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #fff;
    align-self: end;
}


.hero__aboutApp li div {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    box-shadow: 0 0 12px 0 rgba(18, 18, 18, 0);
    width: 54px;
    height: 54px;
    background: #fff;
}

.hero__aboutApp-content {
    display: flex;
    gap: 35px;
    justify-content: space-between;
}

.hero__aboutApp-content-advantages {
    display: flex;
    flex-direction: column;
    gap: 33px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #191919;
    margin-top: 39px;
    flex-shrink: 1;
}

.hero__aboutApp-content-advantages li {
    position: relative;
    display: flex;
    border-radius: 10px;
    box-shadow: 0 0 32px 0 rgba(18, 18, 18, 0.08);
    background: #fff;

    width: 285px;
    min-height: 72px;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 16px 18px;
}

.hero__aboutApp-content-advantages li:nth-child(odd) div {
    position: absolute;
    top: -37%;
    left: -9.3%;

}

.hero__aboutApp-content-advantages li:nth-child(even) div {
    position: absolute;
    top: -37%;
    right: -9.3%;
}

.hero__aboutApp-content-img {

    position: relative;

    max-width: 533px;
    width: 100%;
    overflow: hidden;
}

.hero__aboutApp-content-img img {


    position: relative;
    
    left: -40%;
    top: -10.4%;
    
    width: 180%;
    height: auto;
}

.aboutApp__content ul+div:nth-of-type(2) p:first-child {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
    color: #191919;

}

.hero__aboutApp-content-qr {
    flex-shrink: 1;
}

.hero__aboutApp-content-qr img {
    margin-top: 50px;
}

.hero__aboutApp-content-qr p {
    max-width: 239px;
    width: 100%;
}

.hero__aboutApp-content-qr p:first-of-type {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
    color: #191919;
    margin-bottom: 8px;
}

.hero__aboutApp-content-qr p:last-of-type {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 94%;
    text-align: center;
    color: rgba(25, 25, 25, 0.6);

}



.why {
    padding: 80px 0 78px;
}
.why__content {
    border-radius: 20px;
    box-shadow: 0 0 42px 0 rgba(18, 18, 18, 0.04);
    background: #fff;
    padding: 46px 40px;
}

.why__content>h2 {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 36px;
    text-align: center;
    color: #191919;
    max-width: 460px;
    line-height: 1.225;
    margin: 0 auto 50px;
}

.why__list {
    display: flex;
    gap: 13px;

}

.why__list-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(25, 25, 25, 0.08);
    border-radius: 12px;
    width: 310px;
    height: 212px;
    background: linear-gradient(180deg, rgba(232, 233, 235, 0.61) 0%, rgba(232, 233, 235, 0.61) 100%);
    padding: 20px;
    flex-basis: 25%;
}

.why__list-item-svg {
    position: relative;
    border-radius: 8px;
    padding: 28px;
    width: 62px;
    height: 62px;
    box-shadow: 0 0 32px 0 rgba(18, 18, 18, 0.05);
    background: #fff;
}

.why__list-item-svg svg {
    position: absolute;
    top: 6%;
    left: 6%;

}

.why__list-item-svg .line {
    position: absolute;
    top: 29px;
    left: 2px;
    border: 2px solid #fdc12d;
    width: 55px;
    height: 0px;
    transform: rotate(144deg);
}

.why__list-item p {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    line-height: 131%;
    color: #191919;

}


.risks {
    padding: 80px 0 0px;
}

.risks__container {
    max-width: 1507px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.risks__content {
    position: relative;
}

.risks__content-warning {
    position: absolute;
    top: 36%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    max-width: 530px;
    width: 100%;
    min-height: 176px;
    border-radius: 8px;
    box-shadow: 0 0 42px 0 rgba(18, 18, 18, 0.08);
    background: #fdfdfd;
    z-index: 2;
}

.risks__content-warning p {
    font-family: var(--font3);
    font-weight: 400;
    font-size: 26px;
    line-height: 120%;
    text-align: center;
    color: #e00d29;

}

.risks__grid {
    display: grid;
    grid-template-columns: 1fr minmax(20px, 439px) 1fr;
    grid-template-rows: repeat(2, 271px);
    row-gap: 97px;
}

.risks__grid-item {
    position: relative;
    display: flex;
    gap: 14px;
    justify-content: right;
    padding: 41px 80px 41px 20px;
    border: none;
}



.risks__grid-item:nth-child(odd) {
    align-items: end;
    justify-content: end;
}



.risks__grid-item:nth-child(1):before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 1px;
    background: linear-gradient(to bottom, #ffffff, #c9c9c9 90%);
}

.risks__grid-item:nth-child(1):after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(to right, #ffffff, #c9c9c9 90%);
}

.risks__grid-item:nth-child(4):before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 1px;
    background: linear-gradient(to bottom, #c9c9c9 90%, #ffffff);
}

.risks__grid-item:nth-child(4):after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(to right, #ffffff, #c9c9c9 90%);
}

.risks__grid-item:nth-child(3):before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background: linear-gradient(to bottom, #ffffff, #c9c9c9 90%);
}

.risks__grid-item:nth-child(3):after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(to right, #c9c9c9 90%, #ffffff);
}

section.risks .risks__container .risks__content .risks__grid .risks__grid-item:nth-child(5) {
    padding: 0px 31px;
}

.risks__grid-item:nth-child(6):before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background: linear-gradient(to bottom, #c9c9c9 90%, #ffffff);
}

.risks__grid-item:nth-child(6):after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(to right, #c9c9c9 90%, #ffffff);
}


.risks__grid-item:nth-child(2n+1):not(:first-child) .risks__grid-item-wrapper,
.risks__grid-item:nth-child(3n):not(:first-child) .risks__grid-item-wrapper {
    flex-direction: row-reverse;
    justify-content: left;
}

.risks__grid-item:nth-child(2n+1):not(:first-child),
.risks__grid-item:nth-child(3n):not(:first-child) {
    padding: 41px 20px 41px 80px;
    justify-content: left;
}

.risks__grid-item p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 22px;
    line-height: 120%;
    text-align: right;
    color: #191919;
}

.risks__grid-item:nth-child(2n+1):not(:first-child) p,
.risks__grid-item:nth-child(3n):not(:first-child) p {
    text-align: left;
    padding-right: 2px;
}

section.risks .risks__container .risks__content .risks__grid .risks__grid-item:nth-child(2) {
    padding: 0px;
}

section.risks .risks__container .risks__content .risks__grid .risks__grid-item:nth-child(2) h2 {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 36px;
    text-align: center;
    color: #191919;
    padding: 0px;
}

section.risks .risks__container .risks__content .risks__grid .risks__grid-item:nth-child(4) {
    align-items: flex-start;
}

section.risks .risks__container .risks__content .risks__grid .risks__grid-item:nth-child(5) {
    padding-bottom: 80px;
}

section.risks .risks__container .risks__content .risks__grid .risks__grid-item:nth-child(5) p {
    text-align: right;
}

section.risks .risks__container .risks__content .risks__grid .risks__grid-item:nth-child(6) {
    align-items: flex-start;
}

section.risks .risks__container .risks__content .risks__grid .risks__grid-item:nth-child(6) p {
    padding-right: 2px;
}


.risks__grid-item-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.risks__grid-item-svg {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 26px;
    padding: 6px;
    width: 37px;
    height: 37px;
    border: 2px solid #e00d29;
}


.what_is_the_application_for {
    padding-top: 80px;
}

.what_is_the_application_for h2 {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 36px;
    color: #191919;
    margin-bottom: 50px;
    text-align: center;
    line-height: 1.224;
}

.big-container {
    max-width: 1960px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}
.container-content {
    margin-bottom: 80px;
}

.what_is_the_application_for__content {
    border-radius: 20px;
    background: rgba(232, 233, 235, 0.61);
    padding: 46px 29px;
}

.what_is_the_application_for__list {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    justify-content: center;
}

.what_is_the_application_for__list-item {
    display: flex;
    max-width: 299px;

    border-radius: 13px;
    padding: 14px;

    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    color: #191919;
    gap: 20px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 37px 0 rgba(18, 18, 18, 0.08);
    background: #fff;

}

.what_is_the_application_for__list-item:nth-child(n+5) {
    max-width: 318px;
}
.what_is_the_application_for__list-item-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 50px;
    height: 50px;

    border-radius: 43px;
    padding: 10px;
    background: #28710d;

}


.carousel {
    position: relative;
    padding-top: 80px;
    max-height: 673px;
    overflow: hidden;
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
}

.carousel-wrapper {
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.carousel-slide {
    flex-shrink: 0;
    margin-right: 30px;
}


.swiper.carousel {
    padding-top: 80px;
}

.swiper.carousel .swiper-slide {
    width: auto !important;
}

.carousel .swiper-pagination {
    display: none;
}

.carousel .swiper-button-prev,
.carousel .swiper-button-next {
    display: none;
}

.carousel .swiper-slide .example_of_work_item {
    position: relative;
    transition: top 0.3s ease, opacity 0.3s ease;
}

.carousel-slide .example_of_work_item {
    position: relative;
    transition: top 0.3s ease;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}
.informational-message {
    position: absolute;
    top: -11px;
    left: 244px;
    border-radius: 8px;
    max-width: 340px;
    width: 100%;

    box-shadow: 0 0 42px 0 rgba(18, 18, 18, 0.12);
    background: #fff;
    padding: 12px 16px;
    z-index: 1000;
}

.informational-message__label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 113px;
    margin-bottom: 9px;
}

.informational-message__label p:first-of-type {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 133%;
    color: #665beb;
    text-transform: uppercase;
}

.informational-message__label p:last-of-type {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 133%;
    color: #222;

}

.svg-container {
    position: relative;
    display: flex;
    justify-content: left;
    align-items: center;
    border-radius: 2px;
    width: 16px;
    height: 16px;
    background: #27710d;
    padding-left: 2px;
}

.svg-container .circle {
    position: absolute;
    top: 5.6px;
    left: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: #E8352D;
}

.svg-container .figure {
    top: 0px;
    left: 0px;
    border-radius: 36px;
    width: 4px;
    height: 1px;
    background: #fff;

}

.informational-message__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.informational-message__content-text p:first-of-type {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 111%;
    color: #222;
    margin-bottom: 4px;
}

.informational-message__content-text p:last-of-type {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 129%;
    color: #686868;


}

.informational-message__content-svg {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 4.15px;
    border-radius: 2px;
    max-width: 36px;
    height: 36px;
    width: 100%;
    background: #27710d;
}

.informational-message__content-svg .circle {
    position: absolute;
    top: 13px;
    left: 20.8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12.66px;
    height: 12.66px;
    background: #E8352D;
    border-radius: 100%;

}

.informational-message__content-svg .figure {

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 36px;
    width: 8px;
    height: 2px;
    background: #fff;

}



.where-does-the-data-come-from {
    padding: 160px 0 39px;
}
.where-does-the-data-come-from .container-content {
    padding-left: 44px;
    display: flex;
    justify-content: space-between;
    align-items: start;
    border-radius: 20px;
    width: 100%;
    background: rgba(232, 233, 235, 0.61);
    margin-bottom: 0;
}

.where-does-the-data-come-from__content {
    max-width: 512px;
}

.where-does-the-data-come-from__content-title {
    padding-top: 46px;
    flex-direction: column;
    display: flex;
    gap: 11px;
    margin-bottom: 62px;
}

.where-does-the-data-come-from__content-title h2 {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 45px;
    color: #191919;

}

.where-does-the-data-come-from__content-title p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 24px;
    color: #191919;


}

.where-does-the-data-come-from__content-information-for-users {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.evaluation-reviews-downloads {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 347px;
    gap: 28px;
}

.evaluation-and-reviews {
    display: flex;
    flex-direction: column;

    max-width: 347px;
    align-items: center;
    text-align: center;
}

.evaluation {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.evaluation p {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    color: #191919;

}

.reviews p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: rgba(25, 25, 25, 0.5);

}

.line {
    border: 1px solid rgba(25, 25, 25, 0.3);
    width: 0px;
    height: 25px;


}

.number-of-downloads {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 207px;
    width: 100%;
}

.number-of-downloads p:first-of-type {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    color: #191919;

}

.number-of-downloads p:last-of-type {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: rgba(25, 25, 25, 0.5);
}

.digital-platforms {
    display: flex;
    gap: 9px;
    margin-top: 32px;
}


.appStore {
    gap: 9.18px;
    padding: 8.95px 13.58px;
    display: flex;
    width: 163px;
    height: 55px;
    background: #191919;
    border-radius: 10px;
    opacity: 50%;
    outline: 1px solid #A6A6A6;
}

.appStore .svg {
    display: flex;
    align-items: center;
}
.subtitle {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 12px;
    line-height: 100%;
    color: #fff;
    margin-bottom: 5px;
}

.googlePlay {
    padding: 7px 0px 11.12px 12px;
    display: flex;
    gap: 9.27px;
    width: 163px;
    height: 55px;
    border-radius: 10px;
    background: #191919;
    outline: 1px solid #A6A6A6;
}

.googlePlay .svg {
    display: flex;
    align-items: center;
}
.faq {
    padding: 79px 0;
}
.faq-title {
    margin-bottom: 50px;
    text-align: center;
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 36px;
    text-align: center;
    color: #191919;
    line-height: 1.222;

}

/* аккордион */
.accordion {
    display: flex;
    gap: 18px;
    flex-direction: column;
    max-width: 623px;
    margin: 0 auto;
}

.accordion__item {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 0;
    transition: gap 0.3s ease-out 0.3s;
}

.accordion__item.active {
    gap: 20px;
    transition: gap 0s;
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

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

.accordion__header-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 69px;
    height: 69px;
    border-radius: 50%;
    background: #f1f1f2;
    flex-shrink: 0;
}

.accordion__header p {
    padding: 18px 22px;
    display: flex;
    align-items: center;
    border-radius: 9px;
    background: #f1f1f2;
    min-height: 69px;
    width: 100%;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
    color: #191919;

}

.accordion__content {
    display: flex;
    gap: 12px;
    align-items: start;

    font-family: var(--font-family);
    font-weight: 500;
    font-size: 22px;
    color: #191919;

}

.accordion__content p {
    padding: 18px 23px;
    display: flex;
    align-items: center;
    border-radius: 9px;
    background: #f1f1f2;
    width: 100%;
    min-height: 96px;
}

.accordion__content-svg {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f1f2;
    width: 69px;
    height: 69px;
}


.accordion__item {
    cursor: pointer;
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.install {
    padding: 156px 0 80px;
}
.install-content {
    position: relative;
    min-height: 426px;
    padding: 85px 80px 84px;
    display: flex;
    align-items: center;
    justify-content: end;
    border-radius: 20px;
    background: #E8E9EB;
}

.install-content .img {
    position: absolute;
    top: -72px;
    left: 124px;
}

.install-desc {
    max-width: 550px;
}

.install-desc p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 24px;
    color: #191919;
    margin-bottom: 37px;
}
.install-title {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 45px;
    color: #191919;
    margin-bottom: 11px;
}

.install-click {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 21px;
    border-radius: 8px;
    padding: 18.51px 10px;
    background: #28710d;

    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    text-align: right;
    color: #fff;

}



.footer-info {
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
    justify-content: space-between;
    align-items: start;
}

.footer-info li a {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #191919;
}

.footer-info li:not(:last-child) {
    margin-bottom: 12px;
}

.footer-info+p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: rgba(25, 25, 25, 0.5);
    margin-bottom: 16px;
    line-height: 1.375;
}


.footer-info .logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo__title {
    font-family: var(--font3);
    font-weight: 500;
    font-size: 14px;
    color: #191919;

}

.navigation {
    margin-top: 16px;
}

.navigation p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    color: #191919;
    margin-bottom: 18px;
    line-height: 1.351;
}
.navigation .list__item {
    min-height: 22px;
}

.legal-information .list__item {
    min-height: 22px;
}

.contacts .list__item {
    min-height: 22px;
}

.legal-information {
    margin-top: 16px;
}

.legal-information p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    color: #191919;
    margin-bottom: 18px;
    line-height: 1.351;
}

.contacts {
    margin-top: 16px;
}

.contacts p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    color: #191919;
    margin-bottom: 18px;
    line-height: 1.351;
}


.burger-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 4;
    overflow-y: auto;
    visibility: hidden;

}

.burger-menu.active {
    right: 0;
    visibility: visible;
}

.burger-menu__nav {
    padding: 120px 0px 0px;
    display: flex;
    justify-content: center;
}

.burger-menu__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    max-width: 400px;
    width: 100%;
}

.burger-menu__item {
    text-align: center;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.3s ease, transform 0.3s ease;

    border: 1px solid rgba(25, 25, 25, 0.06);
    border-radius: 6px;
    padding: 14px 18px;
    width: 335px;
    box-shadow: 0 0 8px 0 rgba(18, 18, 18, 0.06);
    background: #fff;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: #191919;
    cursor: pointer;
    text-align: left;
}

.burger-menu__item:last-child {
    margin-bottom: 0px;
}

.burger-menu__item:hover {
    box-shadow: 0 0 12px 0 rgba(18, 18, 18, 0.12);
}

.burger-menu__item:active {
    box-shadow: 0 0 6px 0 rgba(18, 18, 18, 0.08);
}

.burger-menu.active .burger-menu__item {
    opacity: 1;
    transform: translateX(0);
}

.burger-menu.active .burger-menu__item:nth-child(1) {
    transition-delay: 0.1s;
}

.burger-menu.active .burger-menu__item:nth-child(2) {
    transition-delay: 0.2s;
}

.burger-menu.active .burger-menu__item:nth-child(3) {
    transition-delay: 0.3s;
}

.burger-menu.active .burger-menu__item:nth-child(4) {
    transition-delay: 0.4s;
}

.burger-menu.active .burger-menu__item:nth-child(5) {
    transition-delay: 0.5s;
}

.burger-menu.active .burger-menu__item:nth-child(6) {
    transition-delay: 0.6s;
}

.burger-menu__link {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}


.burger-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 3;

}

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


.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 100;
}

.popup.active {
    opacity: 1;
    visibility: visible;
}

.popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.popup__content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 50px;
    max-width: 773px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 101;
    text-align: center;
}

.popup__close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup__close span {
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: #191919;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.popup__close span:nth-child(1) {
    transform: rotate(45deg);
}

.popup__close span:nth-child(2) {
    transform: rotate(-45deg);
}

.popup__close:hover span {
    background-color: #28710D;
}

.popup__title {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 28px;
    color: #191919;
    margin-bottom: 10px;
    line-height: 1.215;
}

.popup__text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    color: rgba(25, 25, 25, 0.5);
    margin-bottom: 25px;
    line-height: 1.4;
}

.qr-code {
    max-width: 211px;
    height: 211px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 0 32px 0 rgba(18, 18, 18, 0.12);
    background: #fff;

}

.qr-code img {
    max-width: 200px;
    width: 100%;
    height: auto;
}


/* Header */
@media (max-width: 1100px) {
    .header {
        min-height: 72px;
    }

    .header__content {
        height: 100%;
    }

    .header__burgerBtn {
        display: block;
    }

    .header__nav {
        display: none;
    }

    .header__logo {
        transform: translate(3px);
    }

    .header__logo div:first-child {
        width: 71px;
        height: 71px;
    }

    .header__logo div {
        width: 71px;
        height: 71px;
    }
}

/* (< 480px) - Header */
@media (max-width: 480px) {

    .header__logo {
        font-size: 11px;
    }
}


/* HERO SECTION */

@media (max-width: 1200px) {
    .hero {
        padding: 40px 0 40px;
    }
.hero__aboutApp {
        padding: 0 30px;
        max-height: none;
    }

    .hero__aboutApp-content {
        gap: 25px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero__aboutApp-content-advantages {
        gap: 36px;
        align-items: center;
    }

    .hero__aboutApp-content-advantages li {
        min-height: 65px;
    }

    .hero__aboutApp-content-img {
        text-align: center;
        max-height: 475px;
    }

    .hero__aboutApp-content-img img {
        left: -40%;
    }

    .hero__aboutApp-content-qr {
        flex-basis: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 50px;
    }

    .hero__aboutApp-content-qr img {
        margin-top: 0px;
    }
}

@media (max-width: 991px) {
    .hero__aboutApp-content-img {
        max-width: 400px;
    }
}

/* HERO SECTION - Mobile */
@media (max-width: 767px) {
.hero__title {
        font-size: 28px;
    }



.hero__aboutApp-content-advantages {
        margin-top: 80px;
    }

}

/* HERO SECTION - Mobile */
@media (max-width: 480px) {
    .hero {
        padding: 20px 0px 58px;
    }

    .hero .digital-platforms {
        margin-top: 0;
        justify-content: center;
    }

    .hero__title {
        font-size: 24px;
        margin-bottom: 12px;
        line-height: 112%;
        font-weight: 500;
    }

    .hero__subtitle {
        font-size: 14px;
        margin-bottom: 22px;
    }

    .hero__badge {
        font-size: 10px;
        line-height: 100%;

        border-radius: 0 0 0 16px;
        padding: 10px;
        width: 131px;
        height: 28px;

    }

    .hero__aboutApp {
        height: 555px;
        margin-bottom: 22px;
        border-radius: 16px;
    }
.hero__aboutApp-content-advantages {
        margin-top: 40px;
        gap: 12px;
    }

    .hero__aboutApp li div {
        width: 45px;
        height: 45px;
        border-radius: 100%;
    }

    .hero__aboutApp-content-advantages {
        max-width: 275px;
        width: 100%;
    }

    .hero__aboutApp-content-advantages {
        font-size: 14px;
        line-height: 100%;
    }

    .hero__aboutApp-content-advantages li:nth-child(odd) {
        align-self: flex-start;
    }

    .hero__aboutApp-content-advantages li:nth-child(even) {
        align-self: flex-end;
    }


    .hero__aboutApp-content-advantages li {
        padding: 14px 18px;
        max-width: 213px;
        min-height: 0px;
        z-index: 2;
    }

    .hero__aboutApp-content-img {
        max-width: 100%;
        translate: 0px 82px;
        scale: 2.15;

    }

    .hero__aboutApp-content-img img {
        width: 100%;
        height: 100%;
        max-width: 400px;
        left: 0;
        translate: 0 0;
    }

    .hero__aboutApp-content-qr {
        display: none;
    }
}


/* WHY SECTION*/

@media (max-width: 1200px) {
    .why {
        padding: 60px 0 58px;
    }
.why__list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .why__list-item {
        width: 310px;
        height: 212px;
    }

    .why__list-item:nth-child(odd) {
        justify-self: end;
    }

    .why__list-item:nth-child(even) {
        justify-self: start;
    }
}

/* WHY SECTION - Mobile */
@media (max-width: 767px) {
    .why {
        padding: 50px 0 48px;
    }

    .why__content {
        padding: 30px 20px;
    }

    .why__content>h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .why__list {
        grid: none;
        max-width: 608.5px;
        margin: 0 auto;
    }

    .why__list-item {
        justify-content: space-around;
    }

    .why__list-item-svg {
        width: 50px;
        height: 50px;
        padding: 22px;
    }

    .why__list-item-svg svg {
        width: 45px;
        height: 45px;
    }

    .why__list-item p {
        margin-top: 10px;
    }
}

/* WHY SECTION - Mobile XS */
@media (max-width: 480px) {
    .why {
        padding: 40px 0;
    }

    .why__content {
        padding: 30px 0;
    }

    .why__content>h2 {
        font-size: 22px;
        line-height: 112%;
    }

    .why__list-item {
        height: 143px;
        width: 100%;
    }

    .why__list-item p {
        font-size: 14px;
        line-height: 131%;
    }

    .why__list {
        gap: 10px;
    }

}


/* RISKS SECTION */

@media (max-width: 1200px) {
    .risks {
        padding: 60px 0 0;
    }

    .risks__container {
        max-width: 100%;
    }

    .risks__content {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .risks__grid {
        position: static;
    }

    .risks__content-warning {
        position: absolute;
        top: 47%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 494px;
        min-height: 111px;
        z-index: 10;
    }

    .risks__content-warning p {
        font-size: 22px;
    }

    .risks__content-warning div {
        width: 55.25px;
        height: 51px;
    }

    .risks__content-warning div img {
        width: 100%;
        height: 100%
    }

    .risks__grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 494px;
        width: 100%;
    }

    .risks__grid-item {
        max-width: 326.85px;
        padding: 35px 60px 35px 20px;
    }

    .risks__grid-item:nth-child(1) {
        order: 2;
        padding: 24px;
        display: flex;
        justify-content: flex-start;
    }

    .risks__grid-item:nth-child(1) .risks__grid-item-wrapper {
        flex-direction: row-reverse;

    }

    .risks__grid-item:nth-child(2) {
        order: 1;
        align-self: center;
        max-width: 420px;
    }

    .risks__grid-item:nth-child(3) {
        order: 4;
        padding: 24px !important;
    }

    .risks__grid-item:nth-child(4) {
        order: 3;
        padding: 23px 27px 23px 24px;
        margin-bottom: 111px;
    }

    .risks__grid-item:nth-child(5) {
        order: 6;
        padding: 24px 24px 24px 20px !important;
        max-width: 362px;
    }

    .risks__grid-item:nth-child(5) .risks__grid-item-wrapper p {
        text-align: left !important;
    }

    .risks__grid-item:nth-child(6) {
        order: 5;
        padding: 29px 27px 29px 24px !important;
    }

    .risks__grid-item:nth-child(6) .risks__grid-item-wrapper {
        flex-direction: row !important;
    }

    .risks__grid-item:nth-child(6) .risks__grid-item-wrapper p {
        text-align: right;
    }

    .risks__grid-item:nth-child(1),
    .risks__grid-item:nth-child(3),
    .risks__grid-item:nth-child(5) {
        align-self: flex-start;
    }

    .risks__grid-item:nth-child(1):before,
    .risks__grid-item:nth-child(3):before,
    .risks__grid-item:nth-child(5):before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: auto;
        right: 0;
        width: 1px;
        background: linear-gradient(to bottom, #ffffff, #c9c9c9 90%);
    }

    .risks__grid-item:nth-child(1):after,
    .risks__grid-item:nth-child(3):after,
    .risks__grid-item:nth-child(5):after {
        content: '';
        position: absolute;
        bottom: 0;
        top: auto;
        right: 0;
        left: 0;
        height: 1px;
        background: linear-gradient(to right, #ffffff, #c9c9c9 90%);
    }

    .risks__grid-item:nth-child(4),
    .risks__grid-item:nth-child(6) {
        align-self: flex-end;
    }

    .risks__grid-item:nth-child(4):before,
    .risks__grid-item:nth-child(6):before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        right: auto;
        left: 0;
        width: 1px;
        background: linear-gradient(to bottom, #c9c9c9 90%, #ffffff);
    }

    .risks__grid-item:nth-child(4):after,
    .risks__grid-item:nth-child(6):after {
        content: '';
        position: absolute;
        top: 0;
        bottom: auto;
        right: 0;
        left: 0;
        height: 1px;
        background: linear-gradient(to right, #c9c9c9 90%, #ffffff);
    }

    .risks__grid-item p {
        font-size: 18px;
    }

    .risks__grid-item:nth-child(1) p {
        text-align: left !important;
    }

    section.risks .risks__container .risks__content .risks__grid .risks__grid-item:nth-child(2) h2 {
        font-size: 36px;
    }
}

/* RISKS SECTION - Mobile */
@media (max-width: 767px) {

    section.risks .risks__container .risks__content .risks__grid .risks__grid-item:nth-child(2) h2 {
        font-size: 28px;
    }

}

/* RISKS SECTION - Mobile XS */
@media (max-width: 480px) {
    .risks {
        padding: 40px 0;
    }

    .risks__grid {
        gap: 17.86px;
    }

    section.risks .risks__container .risks__content .risks__grid .risks__grid-item:nth-child(2) h2 {
        font-size: 22px;
        line-height: 112%;
    }

    .risks__grid-item p {
        font-size: 14px;
        line-height: 120%;
    }

    .risks__grid-item-svg {
        width: 26px;
        height: 26px;
        padding: 0px;
    }

    .risks__content-warning p {
        font-size: 18px;
        line-height: 120%;
    }

    .risks__grid-item:nth-child(1),
    .risks__grid-item:nth-child(3),
    .risks__grid-item:nth-child(5) {
        padding-left: 0;
    }

    .risks__grid-item:nth-child(3) {
        max-width: 228px;
        padding-left: 0px !important;
    }

    .risks__grid-item:nth-child(4),
    .risks__grid-item:nth-child(6) {
        padding-right: 0;
    }

    .risks__grid-item:nth-child(6) {
        padding-right: 0px !important;
    }

    .risks__grid-item:nth-child(5) {
        max-width: 296px;
        padding-left: 0px !important;
    }

}


/* WHAT_IS_THE_APPLICATION_FOR SECTION*/

@media (max-width: 1200px) {
    .what_is_the_application_for {
        padding-top: 60px;
    }

    .what_is_the_application_for h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .what_is_the_application_for__content {
        padding: 40px 25px;
    }

    .what_is_the_application_for__list {
        gap: 25px;
    }

    .what_is_the_application_for__list-item {
        max-width: 280px;
    }

    .container-content {
        margin-bottom: 60px;
    }
}

/* WHAT_IS_THE_APPLICATION_FOR SECTION - Mobile */
@media (max-width: 767px) {
    .what_is_the_application_for {
        padding-top: 50px;
    }

    .what_is_the_application_for h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .big-container {
        padding: 0 15px;
    }

    .what_is_the_application_for__list {
        gap: 20px;
    }

    .what_is_the_application_for__list-item {
        justify-content: start;
        max-width: 324px;
        width: 100%;
        padding: 12px;
        gap: 15px;
    }

    .what_is_the_application_for__list-item:nth-child(n+5) {
        max-width: 324px;
    }

    .what_is_the_application_for__list-item-svg {
        width: 45px;
        height: 45px;
    }

    .container-content {
        margin-bottom: 40px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .carousel-btn-prev {
        left: 10px;
    }

    .carousel-btn-next {
        right: 10px;
    }

    .carousel-slide {
        margin-right: 15px;
    }
.informational-message__label p:first-of-type {
        font-size: 11px;
    }

    .informational-message__label p:last-of-type {
        font-size: 11px;
    }

    .informational-message__content-text p:first-of-type {
        font-size: 16px;
    }

    .informational-message__content-text p:last-of-type {
        font-size: 12px;
    }

    .informational-message__content-svg {
        max-width: 30px;
        height: 30px;
    }
}

/* WHAT_IS_THE_APPLICATION_FOR SECTION - Mobile XS */
@media (max-width: 480px) {
    .what_is_the_application_for {
        padding: 40px 0;
    }

    .what_is_the_application_for .container {
        padding: 0;
    }

    .what_is_the_application_for h2 {
        font-size: 22px;
        line-height: 112%;
        max-width: 233px;
        margin: 0 auto 30px;
    }

    .what_is_the_application_for__content {
        border-radius: 16px;
        padding: 30px 5px;
    }

    .what_is_the_application_for__list {
        gap: 12px;
        flex-direction: column;
    }

    .what_is_the_application_for__list-item {
        max-width: 243px;
        width: 100%;
        font-size: 14px;
        border-radius: 8px;
        padding: 12px;
    }

    .what_is_the_application_for__list-item:nth-child(odd) {
        align-self: flex-start;
    }

    .what_is_the_application_for__list-item:nth-child(even) {
        align-self: flex-end;
    }

    .what_is_the_application_for__list-item:nth-child(n+5) {
        max-width: 243px;
    }

    .what_is_the_application_for__list-item-svg {
        width: 34px;
        height: 34px;
        padding: 5px;
    }

    .what_is_the_application_for__list-item {
        gap: 12px;
    }

    .carousel .swiper-slide {
        position: relative;
        z-index: 1;
    }

    .carousel .swiper-slide-active {
        z-index: 999;
    }

    .carousel .swiper-slide .example_of_work_item {
        top: 0 !important;
        z-index: 999;
    }

    .carousel .swiper-slide .example_of_work_item-img {
        width: 235px !important;
        height: 482px !important;
    }

    .carousel .swiper-slide .example_of_work_item-img img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
    }

    .carousel .swiper-button-prev,
    .carousel .swiper-button-next {
        display: block;
        top: auto;
        bottom: -4px;
    }

    .carousel .swiper-button-prev {
        left: calc(50% - 32px - 7px);
    }

    .carousel .swiper-button-next {
        right: calc(50% - 32px - 7px);
    }

    .carousel {
        overflow: visible;
        max-height: none;
    }

    .informational-message {
        width: 246px;
        padding: 10px 12px;
        top: -48px;
        left: 19.2%;
        z-index: 9999 !important;
        position: absolute !important;
    }

    .informational-message__label p:first-of-type {
        font-size: 8px;
        line-height: 200%;
    }

    .informational-message__label p:last-of-type {
        font-size: 8px;
        line-height: 200%;
    }

    .informational-message .svg-point {
        display: flex;
    }

    .informational-message__label {
        margin-bottom: 9px;
    }

    .informational-message__content-text p:first-of-type {
        font-size: 12px;
        line-height: 167%;
        margin-bottom: 4px;
    }

    .informational-message__content-text p:last-of-type {
        font-size: 10px;
        line-height: 130%;
        max-width: 174px;
    }

    .informational-message__content-svg {
        max-width: 37px;
        height: 37px;
        padding: 4.64px 4.26px;
    }
}

@media (max-width: 768px) {
    .carousel {
        overflow: visible;
    }
    
    .carousel .swiper-wrapper {
        /* центрирование активного слайда */
    }
    
    .swiper.carousel {
        padding-left: calc(50% - 117px); /* половина ширины слайда 235px */
        padding-right: calc(50% - 117px);
    }
}

/* WHERE-DOES-THE-DATA SECTION*/

@media (max-width: 1200px) {
    .where-does-the-data-come-from {
        padding: 120px 0 39px;
    }

    .where-does-the-data-come-from .container-content {
        padding-left: 30px;
    }

    .where-does-the-data-come-from__content-title h2 {
        font-size: 36px;
    }

    .where-does-the-data-come-from__content-title p {
        font-size: 20px;
    }

    .where-does-the-data-come-from .container-content .img {
        max-width: 450px;
    }

    .where-does-the-data-come-from .container-content .img img {
        width: 100%;
    }
}

@media (max-width: 970px) {
    .where-does-the-data-come-from .container-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 30px;
    }

    .install-content .img {
        position: static;
        margin: 0 auto 20px;
        max-width: 350px;
    }

    .where-does-the-data-come-from__content-information-for-users {
        display: flex;
        flex-direction: column;
    }

    .where-does-the-data-come-from__content {
        max-width: 100%;
    }

    .where-does-the-data-come-from__content-title {
        padding-top: 0;
        margin-bottom: 30px;
        text-align: center;
    }
}

/* WHERE-DOES-THE-DATA SECTION - Mobile */
@media (max-width: 767px) {

    .where-does-the-data-come-from__content-title h2 {
        font-size: 28px;
    }
}

/* WHERE-DOES-THE-DATA SECTION - Mobile XS */
@media (max-width: 480px) {

    .where-does-the-data-come-from__content-title {
        margin-bottom: 34px;
    }

    .where-does-the-data-come-from {
        padding: 40px 0 40px;
    }

    .where-does-the-data-come-from .container-content {
        padding: 30px 0px;
    }

    .where-does-the-data-come-from__content-title h2 {
        font-size: 26px;
        line-height: 112%;
        margin-bottom: 10px;
    }

    .where-does-the-data-come-from__content-title p {
        font-size: 16px;
    }

    .where-does-the-data-come-from .container-content .img {
        max-width: 308px;
    }

    .evaluation p {
        font-size: 14px;
    }

    .evaluation .svg {
        width: 12px;
        height: 12px;
    }

    .evaluation .svg svg {
        width: 100%;
        height: 100%;
    }

    .evaluation-reviews-downloads {
        max-width: 255px;
        gap: 18px;
    }

    .reviews p {
        font-size: 12px;
    }

    .number-of-downloads p:first-of-type {
        font-size: 14px;
    }

    .number-of-downloads p:last-of-type {
        font-size: 12px;
    }

    .where-does-the-data-come-from__content .digital-platforms {
        margin-top: 7px;
        margin-bottom: 18.5px;
    }

    .digital-platforms {
        margin-top: 25.5px;
    }


    .install-desc .digital-platforms {
        margin-top: 22px;
        margin-bottom: 43px;
    }

    .install-desc .subtitle {
        margin-bottom: 6px;
        color: #fff;
        font-size: 9px;
        line-height: 100%;
        text-align: left;
    }

    .install-content {
        position: relative;
        height: 542px;
    }

    .install-content .img {
        position: absolute !important;
        top: 0;
    }

    .swiper {
        height: 612px;
    }

    .swiper-button-prev {
        width: 32px;
        height: 32px;
    }

    .buttons-swiper {
        display: flex;
        gap: 14px;
    }

}


/* FAQ SECTION*/


/* FAQ SECTION - Mobile */
@media (max-width: 767px) {

    .faq-title {
        font-size: 28px;
    }

    .accordion__header p {
        font-size: 20px;

    }

    .accordion__content p {
        font-size: 18px;
    }
}

/* FAQ SECTION - Mobile XS */
@media (max-width: 480px) {
    .faq {
        padding: 40px 0;
    }

    .faq-title {
        font-size: 22px;
        line-height: 112%;
        margin-bottom: 30px;
    }

    .accordion {
        gap: 8px;
        align-items: center;
    }

    .accordion__header {
        gap: 8px;
    }

    .accordion__header p {
        font-size: 14px;
        border-radius: 9px;
        width: 280px;
        min-height: 47px;
        padding: 14px 16px;
    }

    .accordion__content p {
        font-size: 12px;
        border-radius: 9px;
        width: 276px;
        min-height: 60px;
        padding: 14px 36px 14px 16px;

    }

    .accordion__header-svg {
        width: 47px;
        height: 47px;
        padding: 6.5px;
    }

    .accordion__header-svg svg {
        width: 100%;
        height: 100%;

    }

    .accordion__content-svg {
        width: 47px;
        height: 47px;
        padding: 8.5px;
    }

    .accordion__content-svg svg {
        width: 100%;
        height: 100%;
    }

    .accordion__item.active {
        gap: 8px;
    }
}


/* INSTALL SECTION*/


@media (max-width: 1268px) {
    .install-content .img {
        left: 50px;
    }
}

@media (max-width: 1200px) {
    .install {
        padding: 120px 0 60px;
    }

    .install-content {
        flex-direction: column;
        padding: 70px 60px 70px;
    }

    .install-content .img {
        position: static;
        margin-bottom: 37px;
    }

    .install-content .img img {
        max-width: 450px;
    }

    .install-title {
        font-size: 36px;
        text-align: center;
    }

    .install-desc p {
        font-size: 20px;
        text-align: center;
    }
}


/* INSTALL SECTION - Mobile */
@media (max-width: 767px) {
    .install {
        padding: 80px 0 50px;
    }

    .install-content {
        min-height: auto;
        padding: 30px 20px;
    }

    .install-content .img img {
        max-width: 300px;
    }

    .install-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .install-desc p {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .install-click {
        font-size: 16px;
        padding: 16px 10px;
        gap: 15px;
        max-width: 100%;
    }

    .install-click svg {
        width: 20px;
        height: 20px;
    }
}

/* INSTALL SECTION - Mobile XS */
@media (max-width: 480px) {
    .install {
        position: relative;

        padding: 40px 0px 80px;
    }

    .install .install-content {
        justify-content: start;
        padding: 30px 0;
    }
.install .img {
        width: 328px;
        height: 342px;
        position: absolute;
        top: 241px;
    }

    .install .img img {
        width: 328px;
        height: 342px;
    }

    .install-title {
        font-size: 26px;
        line-height: 112%;
        margin-bottom: 10px;
    }

    .install-desc p {
        font-size: 16px;
        margin-bottom: 22px;
    }

    .install-desc .digital-platforms {
        justify-content: center;

    }
.install > .container {
        position: relative;
    }

    .install > .container .img {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
    }

}


/* FOOTER SECTION */

@media (max-width: 1023px) {
    .footer-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 30px 33px;
    }

    .footer-info {
        flex-direction: column;
        width: fit-content;
        margin: 0 auto 30px;
    }
.footer-info .logo {
        justify-content: left;
        transform: translateX(-25px);
    }

    .navigation {
        grid-row: 1/3;
    }
}

/* FOOTER SECTION - Mobile XS */
@media (max-width: 480px) {
    .footer-info {
        gap: 28px;
    }

    .footer-info .logo__title {
        font-weight: 500;
        font-size: 11px;
    }

    .footer-info .logo {
        font-weight: 500;
        font-size: 11px;
        margin-left: 8px;
    }


    .footer-nav {
        grid-template-columns: 1fr 1.2fr;
        gap: 30px 0px;
    }

    .footer-nav .list__item {
        display: flex;
        min-height: 16px;
    }


    .navigation {
        margin-top: 0;

    }

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

    .legal-information {
        margin-top: 0;

    }

    .legal-information p {
        font-size: 16px;
    }

    .contacts {
        margin-top: 0;
    }

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

    .footer-info li a {
        font-size: 12px;
    }

    .footer-info li:not(:last-child) {
        margin-bottom: 8px;
    }


    .footer-info+p {
        font-size: 10px;
    }
}


/* POPUP & BURGER MENU - Mobile Adaptations */

@media (max-width: 767px) {
    .popup__content {
        padding: 40px 25px;
        width: 95%;
    }

    .popup__title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .popup__text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .qr-code {
        max-width: 180px;
        height: 180px;
    }

    .qr-code img {
        max-width: 170px;
    }
}