:root {
    --primary-color: #000000;
    --white: #FFFFFF;
    --green: #1AB248;

    --top-background: #E8E0DD;
    --gradient: linear-gradient(150.32deg, rgb(230, 255, 218) 43.616%, rgba(165, 239, 255, 0.43) 90.347%);

    --fz-larg: 40px;
    --fz-bigger: 25px;
    --fz-base: 20px;
    --fz-middle: 18px;
    --fz-small: 14px;
}


html {
    scrollbar-gutter: stable;
    scroll-behavior: smooth;
}

body {
    font-family: 'Onest', sans-serif;
    color: var(--primary-color);
    background-color: var(--white);
    font-weight: 300;
    font-size: var(--fz-base);
}

section {
    padding-top: 170px;
}


h3 {
    font-size: 50px;
    line-height: 1.28;
}

h5 {
    font-size: var(--fz-bigger);
    font-weight: 500;
}

.body-overflow {
    overflow: hidden;
    height: 100dvh;
}

.container {
    width: 100%;
    max-width: 1552px;
    margin: 0 auto;
    padding: 0 16px;
}

.main {
    overflow-y: hidden;
}


#captcha-container{
    margin-top: 20px;
}

.ok-answer {
    margin-top: 10px;
    color: rgb(66, 236, 66);
    display: none;
    font-size: 16px;
}

.ok-answer.active {
    display: block;
}

.button-t,
.button {
    width: 200px;
    font-size: 16px;
    border-radius: 10px;
    height: 60px;
    display: block;
    transition: .2s all linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button {
    background-color: var(--green);
    color: var(--white);
    fill: var(--green);
}

.button-t {
    background-color: transparent;
    color: var(--green);
    border: 1px solid var(--green);
    fill: var(--green);
}

.button:active,
.button-t:active {
    background: #a5efff6e;
    color: var(--primary-color);
    fill: var(--primary-color);
}

.button-t:active {
    border: 1px solid transparent;
}

.button-up {
    position: fixed;
    bottom: 30px;
    min-width: 45px;
    min-height: 45px;
    right: calc(50% - (1480px / 2));
    z-index: 999;
    transform: translateX(300px);
    transition: .3s all linear;
    opacity: 0;
    padding: 10px;
    border-radius: 50%;
    background: var(--gradient);
}

.button-up.show {
    transform: translateX(-50%);
    opacity: 1;
}

.button-up.stopped {
    position: absolute;
}

.underline-button {
    color: var(--green);
    font-size: 16px;
    text-decoration: underline;
}


.title span {
    display: block;
    font-size: 30px;
    line-height: 2;
}

.medium {
    font-weight: 500;
}

.popup,
.popup-text {
    position: fixed;
    top: 0;
    left: -200%;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    background-color: #0000004e;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .4s opacity linear;
    padding: 20px;
}

.popup.active,
.popup-text.active {
    left: 0;
    opacity: 1;
    z-index: 1000;
    pointer-events: painted
}

.rights-text {
    max-width: 600px;
    border-radius: 20px;
    position: relative;
    padding: 60px 28px 55px;
    border: 1px solid #D9D9D9;
    background-color: var(--white);
}

.rights-text__close {
    position: absolute;
    top: 15px;
    right: 14px;
}

.request {
    flex-grow: 1;
    max-width: 380px;
    padding: 60px 28px 55px;
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    background-color: var(--white);
    text-align: center;
    position: relative;
}

.request__close {
    position: absolute;
    top: 15px;
    right: 14px;
}

.request__text {
    font-size: 18px;
    margin-top: 28px;
    max-width: 280px;
}

.request__input {
    margin-top: 16px;
}

.request__button {
    height: 60px;
    width: 250px;
    margin: 50px 0 0 auto;
}

.tablet {
    display: inline-block;
    font-size: 16px;
    color: #B3B0B0;
    font-weight: 400;
    padding: 3px 20px;
    border-radius: 50px;
    border: 1px solid #B3B0B0;
    margin-bottom: 33px;
}

.header {
    width: 100%;
    position: absolute;
    top: 0;
}

.header__inner {
    display: flex;
    justify-content: flex-end;
    position: relative;
    align-items: center;
    gap: 100px;
    padding-top: 20.62px;
}

.header__logo {
    max-width: 170px;
    text-align: center;
    background-color: var(--white);
    padding: 40px 16px 33px;
    border-radius: 0px 0px 30px 30px;
    font-size: var(--fz-middle);
    position: absolute;
    left: 25px;
    top: 0;
}

.header__logo-image {
    margin-bottom: 33px;
}

.header__small-value {
    display: block;
    margin-top: 3px;
    font-size: var(--fz-small);
}

.header__list {
    display: flex;
    gap: 14.5px;
    font-size: 15px;
}

.header__link.active {
    color: var(--green);
    position: relative;
}

.header__link.active::after {
    content: '';
    width: 8px;
    height: 8px;
    display: block;
    position: absolute;
    bottom: -4px;
    border-radius: 50%;
    background-color: var(--green);
    left: 50%;
    transform: translate(-50%, 100%);
}

.header__telephone {
    font-size: var(--fz-bigger);
}

.top {
    padding: 0 0 93px;
    background: var(--top-background) url(../assets/images/right.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.top__content {
    display: flex;
    padding-left: 90px;
    gap: 10px;
    align-items: center;
}

.top__image img {
    height: 1017px;
}

.top__about {
    max-width: 587px;
    padding-top: 15px;
}

.top__title {
    max-width: 415px;
    line-height: 1;
    font-size: 60px;
    font-weight: 400;
}

.top__subtitle {
    margin-top: 20px;
    font-size: 45px;
    font-weight: 200;
}

.top__text {
    margin-top: 30px;
    line-height: 1.75;
}

.top__button {
    width: 250px;
    font-size: var(--fz-middle);
    margin: 59px 0 0 auto;
}

.top__cards {
    margin-top: 40px;
    display: flex;
    gap: 40px 24px;
}

.top__card {
    width: calc(50% - 12px);
    padding: 40px 10px 40px 40px;
    background-color: var(--white);
    border-radius: 20px;
    display: grid;
    grid-template-columns: auto minmax(auto, 211px);
    align-items: center;
}

.top__card-img {
    min-width: 213px;
    grid-column: 2 / 3;
    grid-row: 1 / 4;
    margin-left: auto;
}

.top__card-name {
    font-size: var(--fz-larg);
}

.top__card-text {
    max-width: 400px;
    margin-top: 24px;
    line-height: 1.5;
    margin-bottom: auto;
}

.top__card-buttons {
    margin-top: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top__card-button {
    height: 40px;
}

.services {
    overflow: hidden;
}

.services__inner {
    position: relative;
}

.services__circle {
    position: absolute;
    top: -121px;
    right: 105px;
    z-index: -1;
}

.services__list {
    display: flex;
    gap: 40px 24px;
    margin-top: 60px;
}

.services__item {
    width: 25%;
}

.services__item {
    padding: 39px 20px 32px 40px;
    border-radius: 20px;
    background: var(--gradient);
    line-height: 1.4;
}

.services__item-text {
    margin-top: 30px;
    font-size: 18px;
    line-height: 1.66;
}

.services__item-button {
    width: auto;
    padding: 0 22px;
    height: 40px;
    margin: 40px 0 0 auto;
    gap: 10px;
}

.tariffs {
    margin-top: 170px;
    padding: 80px 0 60px;
    position: relative;
    z-index: 10;
    /*background: linear-gradient(-45.00deg, rgba(241, 215, 255, 0.26) -0.4%, rgba(251, 237, 255, 0.3) 99.644%);*/
    background: linear-gradient(180.00deg, rgba(241, 215, 255, 0.85), rgb(251, 237, 255) 100%);
}

.tariffs__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 120px;
    gap: 20px;
}

.tariffs__text {
    max-width: 320px;
    font-size: 30px;
    line-height: 1.6;
}


.tariffs__text-b {
    max-width: 600px;
    font-size: 50px;
    margin-top: 25px;
    line-height: 1.2;
}

.tariffs__bottom {
    display: flex;
    justify-content: end;
    padding-right: 120px;
    gap: 22px;
    margin-top: 60px;
}

.tariffs__bottom-text {
    max-width: 397px;
    margin-right: 37px;
    font-size: var(--fz-bigger);
    align-self: center;
    line-height: 1.66;
}


.tariffs__box {
    padding: 24px 24px 24px 50px;
    max-width: 363px;
    flex-shrink: 0;
    flex-grow: 1;
    /*background: linear-gradient(180.00deg, rgba(241, 215, 255, 0.85), rgb(251, 237, 255) 100%);*/
    background-color: #fff;
    border-radius: 20px;
    font-size: 18px;
}

.tariffs__box-text {
    line-height: 1.66;
    margin-top: 17px;
}

.tariffs__percent {
    font-size: 80px;
    position: relative;
}

.tariffs__percent::before {
    content: '≤';
    top: 0;
    left: 0;
    position: absolute;
    font-size: 18px;
    transform: translate(-100%, 50%);
}

.quiz {
    background-color: var(--white);
    padding: 64px 24px 24px 40px;
    border-radius: 30px;
    max-width: 748px;
    height: 405px;
    position: relative;
    flex-grow: 1;
    margin-bottom: 30px;
    display: flex;
}

.quiz .quiz__send {
    display: none;
}

.quiz-for-send .quiz__send {
    display: block;
}

.quiz-for-send .quiz__form {
    display: none;
}

.quiz__img {
    position: absolute;
    left: 0;
    top: -80px;
    z-index: -1;
    left: -340px;
}

.quiz__tablet {
    padding: 8px 23.5px;
    position: absolute;
    right: 24px;
    top: 24px;
}

.quiz__title {
    font-size: var(--fz-bigger);
}

.quiz__answers {
    margin-top: 53px;
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
    margin-bottom: auto;
}

.quiz__answers-item {
    height: 80px;
    width: calc(50% - 10px);
}

.qiuz__answers-item-c {
    height: 45px;
    width: calc(50% - 10px);
}

.quiz__answers-item span,
.qiuz__answers-item-c span {
    display: block;
    max-width: 250px;
}

.quiz__form {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.quiz__label {
    display: flex;
    line-height: 1.5;
    gap: 24px;
}


.quiz__check,
.quiz__check-box {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    flex-shrink: 0;
    position: relative;
    border: 1px solid var(--green);
    line-height: 0;
}

.quiz__check {
    border-radius: 50%;
}

.quiz__check-box {
    border-radius: 5px;
}

.quiz__input:checked+.quiz__check,
.quiz__input:checked+.quiz__check-box {
    background-color: var(--green);
    border: 1px solid transparent;
}

.quiz__input:checked+.quiz__check::after,
.quiz__input:checked+.quiz__check-box::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.quiz__input:checked+.quiz__check::after {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--white);
}

.quiz__input:checked+.quiz__check-box::after {
    content: url(../assets/images/check.svg);
}

.quiz__input {
    display: none;
}

.quiz__buttons {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    gap: 0 50px;
}

.quiz__button-prev {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    display: none;
    justify-content: center;
}

.quiz__button-next {
    max-width: 120px;
    height: 42px;
}

.quiz__text .medium {
    display: block;
}

.quiz__text {
    margin-top: 24px;
    line-height: 1.5;
}

.quiz__send-form {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 33px 0 8px;
}

.quiz__send-button {
    flex-shrink: 0;
    height: 40px;
    margin-left: 12px;
}

.products__top {
    display: flex;
    align-items: center;
    gap: 35px;
}

.products__top-list {
    display: flex;
    gap: 40px 20px;
    justify-content: space-between;
    padding: 30px 10px;
    border: 1px solid #D9D9D9;
    border-radius: 20px;
    font-size: 16px;
}

.products__top-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.products__business {
    margin-top: 90px;
}

.products__store {
    margin-top: 170px;
}

.products__item {
    flex-grow: 1;
    padding: 40px 24px 24px;
    border: 1px solid #D9D9D9;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.products__item.dn {
    display: none;
}

.products__item.row {
    gap: 0 40px;
    display: grid;
    grid-template-columns: minmax(auto, 250px) auto;
}

.products__item.gradient {
    background: var(--gradient);
    border: 1px solid transparent;
}

.products__item.cdek {
    padding: 12px 26px;
    grid-row: 4 / 6;
    grid-column: 3 / 4;
}

.products__item.cdek .products__item-name {
    margin-top: 12.5px;
}


.products__item.letters {
    grid-row: 2 / 4;
}

.products__item.row .products__item-img {
    grid-row: 1 / 5;
}

.products__business .products__item:nth-child(9) {
    padding: 10px 15px 20px 24px;
}

.products__business .products__item:nth-child(10) .products__flex {
    gap: 0 10px;
}

.products__business .products__item.row {
    grid-column: 2 / 4;
}

.products__business .products__item.row .products__item-text {
    max-width: 465px;
}

.products__wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.products__flex-center,
.products__flex {
    display: flex;
    gap: 36px;
    align-items: flex-start;
}

.products__flex-center {
    align-items: center;
}

.products__mt-7 {
    margin-top: 60px;
}

.products__mt-6 {
    margin-top: 42px;
}

.products__mt-5 {
    margin-top: 30px;
}

.products__mt-4 {
    margin-top: 24px;
}

.products__mt-3 {
    margin-top: 16px;
}


.products__mt-2 {
    margin-top: 10px;
}

.products__mt-1 {
    margin-top: 6px;
}


.products__bottom {
    margin-top: auto;
}


.products__list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 16px;
}

.products__list.nowrap {
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 0 50px;
}


.products__list-item {
    width: calc(50% - 8px);
    position: relative;
    padding-left: 30px;
    font-size: 18px;
}

.products__list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    background-color: var(--green);
    border-radius: 50%;
}

.products__list-item span {
    display: block;
    margin-bottom: 12px;
}


.products__list.nowrap .products__list-item {
    max-width: 120px;
    width: auto;
}

.products__store .products__item.gradient.row {
    padding: 11px 20px 0 39px;
}

.products__store .products__item.gradient.row .products__bottom {
    padding-bottom: 20px;
}

.products__store .products__item.gradient.row .products__item-name {
    padding-top: 18px;
}

.products__store .products__item:nth-child(5) {
    padding: 40px 20px 20px 18px;
}

.products__item-name {
    font-size: var(--fz-bigger);
    font-weight: 500;
}

.products__button {
    height: 50px;
    margin-left: auto;
}

.products__item-text {
    line-height: 1.6;
}

.products__item-text.fz-s {
    font-size: var(--fz-middle);
}

.products__mw {
    max-width: 550px;
}

.products__inner-col {
    display: flex;
    flex-direction: column;
}

.products__inner-col>.products__item-img {
    align-self: center;
}

.products__views {
    margin: 40px 0 50px;
    display: flex;
    gap: 40px;
    font-size: 18px;
}

.products__views-item span {
    display: block;
    margin-bottom: 20px;
    font-size: 40px;
    text-wrap: nowrap;
    font-weight: 400;
}

.products__business .products__for {
    grid-column: 1 / 4;
    margin-bottom: 26px;
}

.products__store .products__for {
    grid-column: 1 / 3;
}

.products__for {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 30px;
    line-height: 1.7;
}

.products__all-height {
    grid-row: 1 / 5;
    grid-column: 3 / 4;
    display: flex;
    gap: 24px;
    flex-direction: column;
}

.products__all-height .products__list-item,
.products__item.dn .products__list-item {
    width: 100%;
}

.products__store .row {
    grid-column: 1 / 3;
}

.products__sells {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.products__sells-item {
    display: flex;
    gap: 14px;
    font-size: 18px;
    align-items: center;
    position: relative;
}

.products__sells-item span {
    font-weight: 400;
    display: block;
    width: 121px;
    font-size: 60px;
}


.products__item-precent {
    display: flex;
    gap: 20px;
    font-size: 18px;
}

.products__item-precent span {
    font-size: 40px;
    font-weight: 400;
    line-height: normal;
}

.products__sells-item:first-child:after {
    content: '<';
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-50%);
}

.partners__list {
    margin-top: 51px;
    display: flex;
    gap: 26px 24px;
    flex-wrap: wrap;
}

.partners__item {
    width: calc((100% / 6) - 20px);
    padding: 5px 42px;
    border: 1px solid #EFEAEA;
    border-radius: 20px;
}

.partners__text {
    font-size: var(--fz-middle);
    text-align: center;
    margin-top: 48px;
}


.calc__inner {
    display: flex;
    justify-content: space-between;
    gap: 22px;
}

.calc__box {
    min-width: 876px;
    background: var(--gradient);
    border-radius: 20px;
    padding: 40px 99px 40px 40px;
    flex-grow: 1;
}

.calc__title {
    font-size: 40px;
}

.calc__form {
    margin-top: 40px;
}

.calc__form-top {
    display: flex;
    gap: 8px;
}

.calc__form-item {
    width: 33%;
    position: relative;
}

.calc__select-button {
    position: relative;
}

.calc__countries {
    width: 100%;
    margin-top: 5px;
    line-height: 35px;
    color: #626262;
    font-size: 12px;
}

.calc__country {
    text-decoration: underline;
}

.input {
    width: 100%;
    border: 1px solid #B3B0B0;
    height: 50px;
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 16px;
}

.input.error {
    border: 1px solid red;
}

.input.error::placeholder {
    color: red;
}

.input::placeholder {
    color: #626262;
}

.calc__select-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #626262;
}

.calc__switcher {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}

.calc__switcher-button {
    width: 41px;
    height: 21px;
    background-color: #EFEAEA;
    border-radius: 50px;
    position: relative;
}

.calc__switcher-button::after {
    content: '';
    position: absolute;
    width: 14.95px;
    height: 14.95px;
    border-radius: 50%;
    background-color: var(--green);
    right: 3.7px;
    top: 50%;
    transform: translateY(-50%);
}

.calc__button {
    width: 250px;
    font-size: var(--fz-middle);
    margin: 30px 0 0 auto;
}

.about-block {
    display: grid;
    grid-template-columns: auto auto;
    gap: 26px;
}

.about-block__item {
    display: flex;
    align-items: center;
    padding: 8px 20px 30px;
    border: 1px solid #EFEAEA;
    border-radius: 20px;
}

.about-block__item:first-child {
    max-width: 230px;
    flex-direction: column;
    grid-row: 1/ 3;
}

.about-block__text {
    margin-top: 20px;
}

.reviews__content {
    display: flex;
    gap: 24px;
    margin-top: 41px;
}

.reviews__box {
    width: calc(50% - 12px);
    background-color: #FBFBFB;
    border-radius: 20px;
    padding: 16px 20px;
}

.reviews__videos .swiper-slide {
    max-width: 351px;
}

.reviews__photos .swiper-slide {
    max-width: 220px;
}

.reviews__photos .swiper-slide img {
    cursor: pointer;
}

.reviews__buttons {
    text-align: end;
    margin-top: 50px;
}

.reviews__button.prev {
    margin-right: 24px;
}

.video-container {
    position: relative;
}

.video {
    max-width: 351px;
    height: 317px;
    background-color: #000;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
}

.questions__list {
    display: flex;
    margin-top: 61px;
    flex-wrap: wrap;
    gap: 24px;
}

.questions__item {
    width: calc(33% - 11px);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    line-height: 1.66;
}

.questions__box {
    padding: 30px;
    border: 1px solid #EFEAEA;
    border-radius: 20px;
    flex-grow: 1;
}

.questions__box.gradient {
    background: var(--gradient);
    border: 1px solid transparent;
}

.questions__item-text {
    margin-top: 30px;
    font-size: var(--fz-middle);
}

.questions__point {
    padding-left: 27px;
    position: relative;
    font-size: 18px;
}

.questions__point::before {
    content: '';
    width: 4px;
    height: 4px;
    display: block;
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 50%;
    left: 13.5px;
    top: 50%;
    transform: translateY(-50%);
}

.contact {
    padding: 80px 0;
    background: linear-gradient(225.58deg, rgba(241, 215, 255, 0.77) 0.538%, rgba(251, 237, 255, 0.77) 99.547%);
    margin-top: 170px;
    margin-bottom: 100px;
}

.contact__inner {
    display: flex;
    gap: 50px 20px;
    justify-content: space-between;
    align-items: flex-end;
}

.contact__box {
    flex-grow: 1;
    max-width: 620px;
}

.contact__text {
    margin-top: 40px;
}

.contact__form {
    display: flex;
    margin-top: 50px;
    gap: 30px 20px;
    flex-wrap: wrap;
}

.contact__form-item {
    width: calc(50% - 10px);
}

.contact__form-full {
    width: 100%;
}

.contact__form-textarea {
    resize: none;
    min-height: 90px;
}

.contact__form-textarea:focus {
    outline: none;
}

.contact__button {
    width: 250px;
    height: 60px;
    margin: 30px 0 0 auto;
}

.contact__about-block {
    max-width: 600px;
    position: relative;
    gap: 24px 22px;
    display: grid;
    grid-template-columns: auto auto;
}

.contact__about-item {
    padding: 25px 20px;
    border-radius: 20px;
    gap: 39px 13px;
    font-size: 18px;
    align-items: center;
    display: flex;
    background: linear-gradient(-42.95deg, rgba(232, 189, 255, 0.85) 5.935%, rgb(249, 227, 255) 91.317%);
}

.contact__about-img {
    max-width: 80px;
}

.contact__about-item:first-child {
    max-width: 234px;
    grid-row: 1 / 3;
    flex-direction: column;
}

.contact__about-item:first-child .contact__about-img {
    max-width: 144px;
}

.contact__person {
    position: absolute;
    left: 40px;
    transform: translateX(-100%);
    bottom: -120px;
}

.footer {
    padding: 40px 0 29px;
    background-color: #000;
    color: var(--white);
}

.footer__inner {
    display: grid;
    grid-template-columns: 50% 50%;
}



.footer__link {
    color: #18A0FB;
    text-decoration: underline;
    font-size: 14px;
    width: max-content;
    line-height: 1;
}

.footer__link:link {
    text-decoration: underline;
}

.footer__cdek-m {
    display: none;
}

.footer__rights {
    font-size: 16px;
    line-height: 1.875;
    margin-bottom: 20px;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    grid-row: 1 / 5;
    grid-column: 2 /3;
    padding-top: 13px;
}

.footer__telephone {
    font-size: var(--fz-bigger);
    line-height: 100%;
}

.footer__mail {
    font-size: 16px;
    margin-top: 4.5px;
    line-height: 1.875;
}

.footer__socials {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.footer__cdek {
    margin-top: 10px;
}


.cdek-services__calculator[data-v-c96ee509] {
    --padding-top: 48px;
    --padding-bottom: 32px;
    --padding-top-lg: 0px;
    --padding-bottom-lg: 0px;
    box-shadow: 0 4px 12px #0000000a;
    padding: 32px;
    background: #fff;
    border-radius: 16px;
    z-index: 9;
    width: 100%;
    max-width: 792px;
}

.ow-container__title[data-v-5ffaf6b1] {
    font-weight: 500;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 24px;
    line-height: 32px;
}

.cdek-autocomplete[data-v-b2c0b829] {
    position: relative;
}

.autocomplete-city__custom[data-v-25608aa9] {
    margin-top: 8px;
    position: relative;
    display: flex;
    gap: 6px;
}

.cdek-input[data-v-5bc56505] {
    width: 100%;
}

.cdek-input__control[data-v-5bc56505] {
    position: relative;
    display: flex;
    align-items: center;
    height: 56px;
    outline: solid 2px transparent;
    outline-offset: -2px;
    padding-inline: 14px;
    padding-block: 6px;
    box-sizing: border-box;
    background: var(--Surface_Neutral, rgba(51, 85, 104, .05));
    box-shadow: inset 0 1px 2px #0021340d;
    border-radius: 8px;
    transition: background-color .3s ease, outline-color .3s ease;
    cursor: text;
}

.cdek-input__tip {
    display: none;
}

.cdek-input__tip[data-v-5bc56505] {
 
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    padding-left: 16px;
    margin-top: 4px;
    color: var(--Bottom_66, rgba(0, 0, 0, .66));
    min-height: 16px;
}

.cdek-input__label[data-v-5bc56505] {
 
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--Bottom_60, rgba(0, 0, 0, .6));
    transition: all .3s ease;
}

.cdek-input__input[data-v-5bc56505] {
 
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    background: unset;
    border: unset;
    outline: unset;
    width: 100%;
    flex-grow: 1;
    color: var(--Bottom, #000000);
    caret-color: var(--Primary, #1ab248);
    align-self: flex-end;
}


.autocomplete-city__cities-item[data-v-25608aa9] {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}


.order-widget[data-v-8fbad1ad] .cdek-input__tip:empty {
    display: none;
}


[data-v-8fbad1ad] .ow-container__title+.order-widget-grid,
[data-v-8fbad1ad] .ow-container__legal+.order-widget-grid {
    margin-top: 20px;
}


.order-widget-grid[data-v-8fbad1ad] {
    display: grid;
    gap: 24px;
    grid-template-rows: auto;
}

.order-widget--small .order-widget-grid[data-v-8fbad1ad] {
    gap: 16px;
    grid-template-columns: repeat(3, 32%);
}

.order-widget--small .order-widget-grid[data-v-8fbad1ad] {
    grid-template-rows: auto;
}

.cdek-dropdown-trigger[data-v-632dd444] {
    position: relative;
}

.autocomplete-city__cities-item[data-v-25608aa9] {
    text-decoration: underline;
    color: var(--Bottom_60, rgba(0, 0, 0, .6));
    font-size: 10px;
}



.cdek-dropdown-trigger__control[data-v-632dd444] {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    height: 56px;
    width: 100%;
    border: none;
    outline: solid 2px transparent;
    padding-inline: 14px;
    padding-block: 6px;
    box-sizing: border-box;
    background: var(--Surface_Neutral, rgba(51, 85, 104, .05));
    box-shadow: inset 0 1px 2px #0021340d;
    border-radius: 8px;
    transition: background-color .3s ease, outline-color .3s ease;
}

.cdek-dropdown-trigger__tip[data-v-632dd444] {
 
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    padding-left: 16px;
    margin-top: 4px;
    color: var(--Bottom_66, rgba(0, 0, 0, .66));
    min-height: 16px;
}

.cdek-dropdown-trigger__label[data-v-632dd444] {
 
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--Bottom_60, rgba(0, 0, 0, .6));
    transition: all .3s ease;
}

.cdek-dropdown-trigger__value[data-v-632dd444] {
 
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    background: unset;
    border: unset;
    outline: unset;
    flex-grow: 1;
    color: var(--Bottom, #000000);
    caret-color: var(--Primary, #1ab248);
    align-self: flex-end;
    transition: color .3s ease;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.cdek-dropdown-trigger__arrow[data-v-632dd444] {
    stroke: var(--Primary, #1ab248);
    margin-right: 6px;
    transform: rotate(180deg);
    transition: transform .2s ease;
}

.cdek-dropdown-trigger__tip[data-v-632dd444] {
 
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    padding-left: 16px;
    margin-top: 4px;
    color: var(--Bottom_66, rgba(0, 0, 0, .66));
    min-height: 16px;
}

.order-widget__alerts {
    margin-top: 20px;
    flex-direction: row;
}

.order-widget__alerts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-widget-options__switchers[data-v-8fbad1ad] {
    display: flex;
    gap: 20px;
}

.cdek-switch[data-v-ee92f573] {
    display: inline-flex;
    align-items: center;
}

.cdek-switch[data-v-ee92f573] .cdek-switch__bg_small {
    width: 40px;
    height: 24px;
    background: var(--Tertiary_40, rgba(98, 119, 144, .4));
    border-radius: 36.5px;
    outline: none;
    border: none;
    position: relative;
    cursor: pointer;
    transition: background-color ease .1s;
}


.cdek-switch[data-v-ee92f573] .cdek-switch__label {
 
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    padding-left: 16px;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

.cdek-switch[data-v-ee92f573] .cdek-switch__label_small {
 
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.cdek-switch__circle[data-v-ee92f573] {
    --size: 20px;
    display: inline-block;
    width: var(--size);
    height: var(--size);
    box-shadow: 0 3px 8px #0000001a, 0 1px 1px #00000003, 0 3px 1px #00000008;
    border-radius: 100px;
    background: var(--Peak, #fff);
    position: absolute;
    top: 2px;
    left: 2px;
    transition: left ease .1s;
}


.cdek-button.primary[data-v-12337b30] {
    background: var(--Primary, #1ab248);
    color: var(--Peak, #fff);
}

.cdek-button[data-v-12337b30] {
 
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: .03em;
    text-transform: uppercase;
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    gap: 8px;
    height: 48px;
    border-radius: 10px;
    box-sizing: border-box;
    cursor: pointer;
    border: unset;
    transition: all .2s ease-in-out;
}

.ow-container__btn[data-v-5ffaf6b1] {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    letter-spacing: .4px;
    text-transform: uppercase;
    display: block;
    width: 100%;
    max-width: 236px;
}

.ow-container__footer[data-v-5ffaf6b1] .cdek-button {
    min-width: unset;
    width: 236px;
}

.ow-container__footer[data-v-5ffaf6b1] {
    margin-top: 28px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.cdek-input__input::placeholder {
    color: transparent;
}

.popup-image {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.popup-image__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.popup-image__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
}

.popup-image__img {
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 8px;
}

.popup-image__close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  background: none;
  border: none;
  color: #000;
  cursor: pointer;
}

.grecaptcha-badge {
 visibility: hidden;
 opacity: 0;
 pointer-events: none;
}

/* */

.language-switcher {
    position: relative;
    display: inline-block;
}

.language-switcher .lang-button {
    padding: 10px 35px 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
    position: relative;
}

.language-switcher .lang-button::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #333;
    transition: transform 0.3s ease;
}

.language-switcher .lang-button.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.language-switcher .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.language-switcher .dropdown.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.language-switcher .dropdown a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    transition: background 0.3s ease;
    font-size: 16px;
    font-weight: 500;
}

.language-switcher .dropdown a:hover {
    background: #f0f0f0;
}

@media (max-width:1550px) {

    .button-up {
        right: 16px;
    }

    .top {
        padding-top: 60px;
    }

    .top__image img {
        height: auto;
    }

    .services__list {
        flex-wrap: wrap;
    }

    .services__item {
        width: calc(50% - 12px);
    }

    .services__circle {
        right: -160px;
        top: -160px;
    }

    .tariffs__content,
    .tariffs__bottom {
        padding-right: 0;
    }

    .products__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .products__top-list {
        flex-wrap: wrap;
    }

    .calc__inner {
        flex-direction: column;
        align-items: center;
    }

    .contact__person {
        display: none;
    }

}


@media (max-width:1300px) {

    .products__grid {
        grid-template-columns: calc(50% - 12px) calc(50% - 12px);
        ;
    }


    .products__business .products__for {
        grid-column: 1/ 3;
    }

    .products__business .products__item.row {
        grid-column: 2 / 3;
        grid-row: 2 / 4;
    }


    .products__store .products__item.row {
        grid-column: auto;
    }

    .products__item.row {
        grid-template-columns: 100%;
    }

    .products__item.row .products__item-img {
        grid-row: 1/ 2;
        text-align: center;
        margin: 0 auto;
    }

    .products__item.cdek {
        grid-column: 2 / 3;
    }

    .products__all-height {
        flex-direction: row;
        grid-row: 4 /5;
        grid-column: 1 / 3;
    }

    .products__all-height .products__item {
        width: calc(50% - 12px);
    }

    .products__list.nowrap {
        gap: 27px;
    }

}

@media (max-width:1200px) {

    :root {
        --fz-larg: 30px;
        --fz-base: 18px;
        --fz-bigger: 20px;
    }

    .header__inner {
        padding-top: 15px;
        justify-content: space-between;
        gap: 20px;
    }

    .header__logo {
        background-color: transparent;
        position: static;
        padding: 0;
    }

    .header__logo-wrapper {
        display: none;
    }

    .header__logo-image {
        margin-bottom: 0;
    }

    .top {
        background-size: 100% 60%;
    }

    .top__content {
        padding-left: 0;
    }

    .top__title {
        font-size: 40px;
    }

    .top__subtitle {
        font-size: 30px;
    }

    .top__cards {
        padding: 0;
        flex-direction: column;
    }

    .top__card {
        width: 100%;
    }

    .top__card-img {
        grid-row: 1 / 3;
    }

    .top__card-buttons {
        grid-row: 3 / 4;
        grid-column: 1/ 3;
    }

    .tariffs__content {
        flex-direction: column;
        gap: 22px;
    }

    .tariffs__bottom {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tariffs__bottom-text {
        min-width: 100%;
        text-align: center;
    }

    .quiz__img {
        display: none;
    }

    .partners__item {
        width: calc((100% / 4) - 20px);
    }

    .calc__title {
        font-size: 30px;
    }

}


@media (max-width:960px) {
    .header__nav {
        display: none;
    }


    .products__item.letters {
        grid-row: 2 / 3;
    }

    .products__grid {
        grid-template-columns: 100%;
        gap: 40px;
    }

    .products__item {
        padding: 24px;
    }

    .products__business .products__item.row {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .products__inner-col {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    .products__flex-center {
        gap: 18px;
    }

    .products__business .products__item:nth-child(5) .products__item-text {
        padding-left: 151px;
    }

    .products__list {
        gap: 16px 12px;
    }

    .products__list-item {
        width: calc(50% - 6px)
    }

    .products__item-img {
        max-width: 150px;
    }


    .products__item.row {
        grid-template-columns: 150px auto;
        gap: 0 8px;
        align-items: center;
    }

    .products__item-name {
        margin-top: 0;
    }

    .products__business .products__for,
    .products__store .products__for {
        grid-column: 1/ 2;
    }

    .products__item.row .products__item-text,
    .products__item.row .products__list {
        grid-column: 1 / 3;
    }

    .products__business .products__item.row .products__list {
        flex-direction: column;
        gap: 24px;
    }

    .products__item.row .products__bottom {
        grid-column: 2/ 3;
    }

    .products__views {
        margin: 40px 0 34px;
    }

    .products__item.cdek {
        padding: 15px 5px;
        grid-column: 1 / 2;
        grid-row: 9/ 10;
    }

    .products__for {
        gap: 24px;
        font-size: 25px;
    }

    .products__business .products__for br {
        display: none;
    }

    .products__store {
        margin-top: 80px;
    }

    .products__store .products__item.row {
        grid-column: 1 /2;
    }

    .products__store .products__item-img {
        width: 100px;
    }

    .products__for img {
        width: 70px;
    }

    .products__store .products__for img {
        width: 100px;
    }

    .products__all-height {
        flex-direction: column;
        grid-column: 1 / 2;
        grid-row: 4 /5;
    }

    .products__all-height .products__item {
        width: 100%
    }

    .products__sells {
        gap: 33px 0;
    }

    .products__store .products__item.gradient.row {
        padding: 11px 11px 0;
    }

    .products__all-height .products__item:last-child {
        display: none;
    }

    .products__item.dn {
        display: block;
    }

    .calc__box {
        padding: 24px;
        width: 100%;
        min-width: auto;
    }

    .calc__form-top {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .calc__switcher {
        justify-content: center;
        margin-top: 16px;
    }

    .calc__form-item {
        min-width: 240px;
    }

    .calc__button {
        margin: 40px auto 0;
    }

    .about-block {
        gap: 24px 17px;
    }


    .about-block {
        grid-template-columns: calc(50% - 8px) calc(50% - 8px);
    }

    .about-block__item:first-child {

        max-width: 100%;
    }

    .about-block__item:nth-child(2) {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        flex-direction: column;
    }

    .about-block__item:last-child {
        grid-column: 1 / 3;
    }

    .about-block__img {
        max-width: 100px;
    }

    .reviews__content {
        flex-direction: column;
        margin-top: 30px;
    }

    .reviews__box {
        width: 100%;
        background-color: var(--white);
        padding: 0;
    }

    .reviews__buttons {
        display: none;
    }


    .questions__item {
        width: calc(50% - 12px);
    }

    .contact__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact__box {
        max-width: 100%;
    }

    .contact__about-block,
    .contact__about-item:first-child {
        width: 100%;
        max-width: 100%;
    }

    .order-widget--small .order-widget-grid[data-v-8fbad1ad] {
        grid-template-columns: 100%;
    }

}


@media (max-width:768px) {


    section {
        padding-top: 80px;
    }

    h3 {
        font-size: 30px;
    }

    .input {
        width: 240px;
    }

    .title span {
        font-size: 18px;
    }

    .header__logo-image {
        width: 98px;
        margin-bottom: 0;
    }

    .header__telephone {
        font-size: 18px;
    }

    .top {
        background: var(--top-background) url(../assets/images/right-s.png);
        background-size: 100% 60%;
        background-repeat: no-repeat;
        padding: 96px 0 47px;
    }

    .top__title {
        max-width: 176px;
        font-size: 30px;
    }

    .top__subtitle {
        margin-top: 20px;
        font-size: 20px;
    }

    .top__text {
        font-size: 16px;
        margin-top: 20px;
    }

    .top__button {
        margin-top: 32px;
    }

    .top__card-buttons {
        margin-top: 12px;
    }

    .top__cards {
        margin-top: 60px;
    }

    .services__title {
        max-width: 400px;
    }

    .services__circle {
        width: 220px;
        right: -60px;
        top: -70px;
    }

    .services__list {
        margin-top: 40px;
    }

    .services__item {
        width: 100%;
    }

    .tariffs {
        margin-top: 80px;
        padding: 29px 0 45px;
    }

    .tariffs__content {
        align-items: flex-start;
    }

    .tariffs__text {
        font-size: 18px;
        max-width: 100%;
    }

    .tariffs__text-b {
        font-size: 30px;
    }

    .tariffs__bottom {
        max-width: 363px;
        margin: 50px auto 0;
    }

    .tariffs__bottom-text {
        margin-left: 18px;
        margin-right: 0;
        text-align: start;
    }

    .tariffs__box {
        padding-left: 80px;
    }

    .quiz {
        min-width: 100%;
        min-height: 398px;
        margin-bottom: 0;
        height: auto;
        padding: 60px 10px 30px 20px;
    }

    .quiz__label {
        font-size: 16px;
    }

    .quiz__tablet {
        border: 0;
        top: 18px;
        right: 18px;
    }

    .quiz__answers {
        margin-top: 32px;
        gap: 20px;
    }

    .quiz__answers-item,
    .qiuz__answers-item-c {
        width: 100%;
        height: auto;
    }

    .quiz__answers-item span,
    .qiuz__answers-item-c span {
        max-width: 100%;
    }

    .quiz__send-form {
        flex-direction: column;
    }

    .quiz__label {
        gap: 15px;
    }

    .quiz__send-button {
        width: 240px;
        margin: 0;
    }

    .quiz__text {
        font-size: 16px;
    }

    .quiz__buttons {
        margin-top: 52px;
    }

    .products__top-item {
        width: calc(50% - 10px);
    }

    .products__item.row .products__bottom {
        grid-column: 1 / 3;
    }

    .partners__list {
        gap: 25px 15px;
    }

    .partners__item {
        width: calc(50% - 7.5px);
        text-align: center;
    }

    .partners__item:nth-child(n+5) {
        display: none;
    }

    .partners__text {
        text-align: start;
    }

    .questions__item {
        width: 100%;
    }

    .questions__box.gradient {
        order: -1;
    }

    .contact {
        margin-top: 80px;
    }

    .contact__form {
        gap: 14px 10px;
    }


    .contact__form-item {
        width: calc(50% - 5px);
    }

    .contact__form-item .input,
    .contact__form-textarea {
        width: 100%;
    }

    .contact__button {
        margin-left: auto;
        margin-top: 0;
    }

    .contact__about-block {
        grid-template-columns: 100%;
    }

    .contact__about-item:first-child {
        flex-direction: row;
        gap: 0;
    }

    .contact__about-item:first-child img {
        width: 100px;
        transform: translateX(-20px);
    }


    .contact {
        margin-bottom: 0;
    }

    .footer {
        padding: 40px 0 29px;
    }

    .footer__inner {
        grid-template-columns: 100%;
    }

    .footer__contacts {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 10px 33px;
        grid-column: 1 / 2;
        grid-row: 2 /3;
    }

    .footer__mail {
        margin-left: auto;
    }

    .footer__contacts .footer__cdek {
        display: none;
    }

    .footer__socials {
        width: 100%;
        justify-content: flex-end;
        margin-top: 0;
    }

    .footer__rights {
        max-width: 400px;
        line-height: 30px;

    }

    .footer__cdek-m {
        display: block;
    }

    .footer__link {
        order: 1;
        margin-top: 44px;
        text-align: end;
    }

    .footer__cdek-m {
        margin-top: 13px;
    }
}


@media (max-width:480px) {

    .header__telephone {
        font-size: 14px;
        font-weight: 500;
    }

    .top {
        background-size: 100% 580px;
    }

    .top__about {
        padding-right: 0;
    }

    .top__content {
        align-items: flex-start;
    }

    .top__card {
        grid-template-columns: auto 160px;
    }

    .top__card:last-child .top__card-name {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .top__card:last-child .top__card-img {
        grid-row: 2 / 3;
    }

    .top__card-text {
        margin-top: 30px;
    }

    .top__card-img {
        min-width: 160px;
        width: 160px;
        display: block;
    }

    .services__title {
        max-width: 300px;
    }
}


@media (max-width:440px) {
    .products__list.nowrap {
        flex-wrap: wrap;
    }
}