@import url('https://fonts.googleapis.com/css?family=Roboto:200,300,400,500,600,700&lang=en&display=swap');
@import url('href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

:root {
    --font-family-base: 'Roboto', sans-serif;
    --font-weight-base: 900;
    --background-color-base: #ffd900;
    --background-color-button: #1a1a1a;
    --background-color-active: #1a1a1a;
    --background-color-hover: #ffee88;
    --background-color: #ffee88;
    --color-text-light: #f6f6f6;
    --color-text-dark: #1a1a1a;
    --border-radius-base: 25px;
    --color-link: #0004ee;

}





* {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
}

ul,
ol {
    padding: 0;
    list-style: none;
}


h1,
h2,
h3,
h4,
p,
ul,
ol,
body {
    margin: 0;
}

a {
    text-decoration: none;
}

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





.content {
    max-width: 876px;
    margin: 0 auto;
    ;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    background-color: #edeff1;
    z-index: 99;
    box-shadow: 0 5px 21px rgb(0 0 0 / 15%);
}


.navbar__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*   height: 100%; */
}

.hamb {
    display: none;
}

.popup {
    display: none;
}

.logo {
    max-width: 180px;
    display: flex;
    align-items: center;
}

.logo img {
    width: 100%;
}

.menu>li>a {
    text-decoration: none;
}

.navbar__wrap .menu {
    display: flex;
}

.navbar__wrap .menu>li {
    display: flex;
    align-items: stretch;
}

.navbar__wrap .menu>li>a {
    display: flex;
    align-items: center;
    padding: 0 10px;
    color: rgba(0, 0, 0, 0.75);
    transition: all .2s ease-in-out;
}

.navbar__wrap .menu li:last-child a {

    padding: 10px 20px;
    background-color: var(--background-color-base);
    border-radius: 25px;
    font-size: 18px;
    font-weight: 900;
    transition: all .2s ease-in-out;

}

.navbar__wrap .menu li:last-child a:hover {


    background-color: var(--background-color-button);
    color: var(--color-text-light);
    transition: all .2s ease-in-out;


}

.navbar__wrap .menu>li>a:hover {
    color: rgba(241, 213, 32, 1);
    transition: all .2s ease-in-out;
}

.button_fixed {
    opacity: 0;
    /* Скрываем элемент через прозрачность */
    pointer-events: none;
    /* Гарантирует, что кнопка некликабельна, пока скрыта */

    /* Добавляем плавный переход для ОПЕРАЦИЙ */
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    /* Сдвигаем кнопку вниз на 100% ее высоты (прячем за нижним краем) */
    transform: translateY(100%);
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    z-index: 25;
    background-color: var(--background-color-base);
    padding: 20px 30px;
    width: 100%;
    border-radius: 25px 25px 0 0;
    max-height: 105px;
}

/* Новый класс для показа кнопки */
.button_fixed.is-visible {
    opacity: 1;
    /* Полная видимость */
    pointer-events: auto;
    /* Делаем элемент снова кликабельным */
    /* Возвращаем кнопку в исходное положение (выезжает) */
    transform: translateY(0);
}

.button_fixed .btn {
    width: 100%;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}





.button {
    text-align: center;
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid #1d1d1d;
    background-color: #1d1d1d;
    color: #eeeeee;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    transition: all .3s ease-in-out;
}

.button a {
    color: #eeeeee;
    transition: all .3s ease-in-out;
}

.button:hover {
    background-color: var(--background-color-hover);
    color: var(--color-text-dark);
    transition: all .3s ease-in-out;
}

.button:active {
    background-color: var(--background-color-button);
    color: var(--color-text-light);
    transition: all .3s ease-in-out;
}

.button:hover a {
    color: #1d1d1d;
    transition: all .3s ease-in-out;
}

.top23 {
    /* height: 100vh; */
    background-color: var(--background-color-base);
    margin-bottom: 40px;
}

.top_inner {
    background-color: #edeff2;
}





.top23-item {
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.top23-text {
    padding: 0 55px;
    width: 60%;
}

.top23-text__title {
    font-size: 52px;
    line-height: 1.2;
    /* text-transform: uppercase; */
    margin-bottom: 25px;
    /* font-style: italic; */
    font-weight: 900;
}

.intro-title {
    font-size: 38px;
}

.title-product {
    font-size: 56px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    font-style: italic;
}

.subtitle-product {
    font-size: 28px;
    line-height: 1.1;
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    font-weight: 400;
}




.top23-text__subtitle {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2px;
}

.text-typing {
    font-size: 24px;
    margin-bottom: 50px;
}

.btn {
    padding: 15px 35px;
    border-radius: 15px;
}

.top23-img {
    height: 100vh;
    width: 40%;
    position: relative;
}

.top23-img img {
    width: 100%;
    position: absolute;
    bottom: 0;
}

.group-title {
    font-size: 32px;
    margin-bottom: 25px;
}

.group-block1 {
    width: 100%;
    background-color: #ffed80;
    padding: 25px 15px 25px 15px;
    border-radius: 15px;
    margin-bottom: 15px;

}

.item__title {
    font-size: 24px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.item__subtitle {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.group-block2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    margin-bottom: 35px;
}

.block2-item1 {
    grid-area: 1 / 1 / 2 / 2;
}

.block2-item2 {
    grid-area: 1 / 2 / 2 / 3;
}

.block2-item3 {
    grid-area: 1 / 3 / 2 / 4;
}

.block2-item4 {
    grid-area: 2 / 2 / 3 / 4;
}

.block2-item5 {
    grid-area: 2 / 1 / 4 / 2;
}

.block2-item6 {
    grid-area: 3 / 2 / 4 / 4;
}

.block2-item7 {
    grid-area: 4 / 1 / 5 / 3;
}

.block2-item8 {
    grid-area: 4 / 3 / 5 / 4;
}

.block2-item9 {
    grid-area: 5 / 1 / 6 / 4;
    display: flex;
    align-items: center;
    min-height: 150px;
}

.block2-item {
    padding: 25px 15px 35px 15px;
    border-radius: 15px;
    background-color: #edeff1;
    position: relative;
    overflow: hidden;

}

.block2-item6 .block_item_headtext {
    width: 80%;
}

.block2-item7 .block_item_headtext {
    width: 65%;
}

.block2-item6 .block_item_img {
    width: 150px;
}

.block2-item7 .block_item_img {
    width: 215px;
}

.block2-item9 .block_item_img {
    bottom: -5px;
    width: 215px;
}

.block_item_headtext {
    position: relative;
    z-index: 9;
    display: block;
}

.block2-item4 .block_item_headtext .item__subtitle {
    width: 75%;
}

.block_item_img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 130px;
}

.block2-item5 .block_item_img {

    width: 175px;
    bottom: 0;
    right: 0;
}

.block_item_img img {
    width: 100%;
    height: auto;
}

.section-3-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
}

.section-3-block .btn2 {
    margin-left: 35px;
}

.group-block4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 35px;
}

.block4-item {
    width: 100%;

}

.block4-item img {
    width: 100%;
    opacity: 0.9;
}

.content-form {
    background: #edeff2;
    border-radius: 30px;
    padding: 35px 15px;
    margin-bottom: 35px;
}

.product-form {
    background-color: #edeff1;
    padding: 25px 15px;
    margin-bottom: 25px;
    border-radius: 25px;
    border: 1px solid #8f8f8f;
}

.form-name {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-style: italic;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 18px;
    margin: 0 0 4px 2px;
}

.form-control {
    width: 100%;
    max-width: 375px;
    font-size: 15px;
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px solid #8f8f8f;
    margin-bottom: 20px;
}

.product-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eeeeee;
    background-color: #1d1d1d;
    cursor: pointer;
    font-size: 16px;
    padding: 6px 18px;
    border-radius: 10px;
    border: 1px solid #1d1d1d;
    transition: all .3s ease-in-out;
}

.product-form button:hover {
    color: #1d1d1d;
    background-color: #eeeeee;
    transition: all .3s ease-in-out;
}

.productspasib {
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.productspasib h1 {
    text-align: center;
    text-transform: uppercase;
    color: #3b3b3b;
    font-style: italic;
    line-height: 1.2;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    font-size: 56px;
    margin-bottom: 50px;
}

.productspasib a {
    color: #eeeeee;
    background-color: #1d1d1d;
    cursor: pointer;
    font-size: 20px;
    padding: 10px 30px;
    border-radius: 30px;
    border: 1px solid #1d1d1d;
    transition: all .3s ease-in-out;
}

.productspasib a:hover {
    color: #1d1d1d;
    background-color: #eeeeee;
    transition: all .3s ease-in-out;
}




.privacy {
    margin: 90px 0 25px 0;
}

.privacy h2 {
    margin: 0 0 15px 0;
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    line-height: 1.2;
}

.privacy p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    margin: 0 0 15px 0;
}








.accord-block {
    margin-bottom: 35px;
    padding: 35px 15px;
    background-color: #edeff1;
    border-radius: 15px;
}

.accordion-item {
    margin-bottom: 20px;
    border-radius: 5px;
    line-height: 24px;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ababab;
    padding: 12px 15px;
    position: relative;
    border-radius: 5px;
    color: #212121;
    cursor: pointer;
    transition: all .2s ease-out;
}

.accordion-title h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    padding-right: 10px;
}

.accordion-title:hover {
    background-color: #edeff1;
    transition: all .2s ease-out;
}

.accordion-title .down {
    content: "";
    width: 10px;
    height: 10px;
    background-image: url(../image/download.svg);
    padding-left: 10px;
    transition: all .2s ease-out;
}

.accordion-input {
    width: 0;
    height: 0;

    -webkit-appearance: none;
    appearance: none;

    position: absolute;
}

.accordion-input:checked~.accordion-title {
    background-color: #edeff1;
}

.accordion-input:checked~.accordion-title .down {
    transform: rotate(-180deg);
    transition: all .2s ease-out;
}

.accordion-input:checked~.accordion-text {
    display: block;
    transition: display .3s ease-out;
}

.accordion-text {
    display: none;
    padding: 15px 15px 0 15px;
    color: #212121;
    font-size: 16px;
}

.block-url {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.block-url .url-item {
    margin-bottom: 25px;
    margin-right: 15px;
}

.block-url .url-item:last-child {
    margin-right: 0;
}

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

.sitemap_item {
    margin-bottom: 10px;
}

.sitemap_link {
    display: inline-block;
    padding: 5px 0;
    color: rgb(32 58 241);
    font-size: 18px;
    line-height: 1.2;
    transition: 0.2s;
}

.sitemap_link:hover {
    color: rgba(241, 213, 32, 1);
    transition: 0.2s;
}

.url-item a {
    padding: 3px 8px;
    border-radius: 25px;
    background-color: #FEE334;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e7dc5a;
    transition: 0.2s;
}

.url-item a:hover {
    background-color: #fdff00;
    transition: 0.2s;
}

.footer {
    background-color: #edeff1;
    padding-bottom: 80px;
}

.footer-block {
    display: flex;
    padding: 50px 0;
}

.footer-logo {
    margin-right: 25px;
}



.footer-btn {
    display: flex;
    flex-wrap: wrap;
}

.footer-link {
    color: #6d5cff;
    transition: 0.2s;
}

.footer-link:hover {
    color: #1b00ff;
    transition: 0.2s;
}

.btn-item {
    padding: 3px 15px;
    border-radius: 25px;
    background-color: #FEE334;
    color: #000;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid #e7dc5a;
    margin-bottom: 10px;
    margin-right: 10px;
    transition: 0.2s;
}

.btn-item2 {
    border: 1px solid #000;
    background-color: #000;
    color: #fff;
    transition: 0.2s;
}

.btn-item:hover {
    background-color: #fdff00;
    transition: 0.2s;
}

.btn-item2:hover {
    border: 1px solid #fff;
    background-color: #fff;
    color: #000;
    transition: 0.2s;
}

.footer-title {
    line-height: 22px;
    font-size: 14px;
}

.footer .logo img {
    width: 180px;
}

.cities-block {
    margin-bottom: 30px;
}

.cities-block h2 {
    margin-bottom: 20px;
    font-size: 32px;
}

.cities-item ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    /* color: #000; */
}

.city_name {
    display: flex;
    color: rgba(0, 0, 0, 0.75);
    transition: all .2s ease-in-out;
    padding: 5px 0;
    font-size: 22px;
}

.city_name:hover {
    color: rgba(241, 213, 32, 1);
    transition: all .2s ease-in-out;
}

.all-cities {
    max-width: 140px;
    border-radius: 15px;
    background-color: #ffed80;
    padding-left: 10px;
    margin-left: -10px;
    transition: .3s;
}

.courier_city {
    margin-top: 150px;
    margin-bottom: 50px;
}

.courier_block {
    width: 75%;
}

.courier_block h2 {
    font-size: 40px;
    margin-bottom: 50px;
    font-weight: 400;
}

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

.courier_item {
    display: flex;
    flex-wrap: wrap;

}

.courier_link {
    color: #000;
    padding: 10px 20px;
    margin-bottom: 15px;
    font-size: 18px;
    border-radius: 12px;
    border: 1px solid #989898;
    margin-right: 15px;
    transition: all .2s ease-in-out;
}

.courier_link:hover {
    color: #fff;
    background-color: #383838;
    transition: all .2s ease-in-out;
}

.top23_inner {
    background-color: #edeff2;
}









.wrapper-carousel {
    background-color: var(--background-color-base);
    padding: 25px 0 35px 0;
    margin-bottom: 25px;

}

.wrapper {
    /* max-width: 1100px; */
    width: 100%;
    position: relative;
}

.wrapper-text {
    max-width: 600px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.wrapper-title {
    font-size: 34px;
}

.wrapper-subtitle {
    font-size: 18px;
}

.wrapper i {
    top: 50%;
    height: 50px;
    width: 50px;
    cursor: pointer;
    font-size: 1.25rem;
    position: absolute;
    text-align: center;
    line-height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
    transform: translateY(-50%);
    transition: transform 0.1s linear;
}

.wrapper i:active {
    transform: translateY(-50%) scale(0.85);
}

.wrapper i:first-child {
    left: -22px;
}

.wrapper i:last-child {
    right: -22px;
}

.wrapper .carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 1) + -10px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    /* border-radius: 8px; */
    padding: 0 15px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel.no-transition {
    scroll-behavior: auto;
}

.carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.carousel.dragging .card {
    cursor: grab;
    user-select: none;
}

.carousel :where(.card, .img) {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel .card {
    scroll-snap-align: start;
    /* list-style: none; */
    cursor: pointer;
    flex-direction: column;
}

.carousel .card .img {

    /* min-height: 200px; */
    /* width: 100%; */
    border-radius: 20px;
}

.card .img img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}












.error {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
}

.error h2 {
    font-size: 80px;
    font-weight: 400;
    color: #000;
}

.error h1 {
    font-size: 170px;
    font-weight: 400;
    color: #000;
}

.error h3 {
    margin: 30px 0px;
    font-size: 28px;
    font-weight: 400;
    color: #000;
    text-align: center;
}

.error .back {
    display: inline-block;
    font-size: 22px;
    color: #fff;
    background: #1b1b1b;
    border: 1px solid #363636;
    border-radius: 15px;
    padding: 8px 20px 10px 20px;
    margin: 40px 0;
    transition: all 0.5s ease-in-out;
}

.error .back:hover {
    background: #fff;
    color: #272727;
    border: 1px solid #eaeaea;
    transition: all 0.5s ease-in-out;
}















.subscreen {
    padding: 100px 15px 100px 250px;
    background: url(../image/bg_1.jpg) no-repeat center;
    background-size: cover;
    background-color: #ef9825;
    border-radius: 30px;
    position: relative;
    margin-bottom: 35px;
}

.subscreen__img {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 300px
}

.subscreen__img img {
    border: none;
    max-width: 100%;
    height: auto;
    opacity: 0.8;
}

.subscreen__text {
    display: flex;
    align-items: center;
}

.subscreen__title {
    font-weight: 700;
    font-size: 65px;
    line-height: 1;
    color: #FFFFFF;
}

.subscreen__info {
    padding-left: 35px;
    margin-left: 34px;
    border-left: 1px solid rgba(255, 255, 255, 0.26);
}

.subscreen__info p {
    font-weight: 400;
    font-size: 26px;
    line-height: 32px;
    color: #FFFFFF;
    /* margin-bottom: 24px; */
}



.advantages {
    margin-bottom: 35px;
}

.advantages__wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: -11px;
}

.advantages__item {
    width: calc(33.3% - 22px);
    margin: 11px;
    background: #FBF8ED;
    border-radius: 30px;
    padding: 35px 20px;
    text-align: center;
}

.advantages__icon {
    width: 60px;
    margin: 0 auto 20px auto;
}

.advantages__icon img {
    max-width: 100%;
    max-height: 100%;
}

.advantages__text h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    color: #0F1123;
    margin-bottom: 20px;
}

.advantages__text p {
    font-weight: 400;
    font-size: 17px;
    line-height: 21px;
    text-align: center;
    color: #555769;
}

.props {
    margin-bottom: 35px;
    background-color: var(--background-color-base);
    border-radius: 30px;
    padding: 25px 0;
}

.props__text {
    padding: 0 20px;
    text-align: center;
    width: 100%;
    margin-bottom: 25px;
}

.props__text h2 {
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    color: #0F1123;
    margin-bottom: 10px;
}

.props__text p {
    font-weight: 400;
    font-size: 20px;
    line-height: 127%;
    margin-bottom: 10px;
    color: #000000;
}

.props-block {
    display: flex;
    overflow-x: auto;
    padding: 0 10px 10px 10px;
}

.props-item {
    display: block;
    width: 100%;
    min-width: 225px;
    padding: 15px 10px;
    border-radius: 15px;
    margin-right: 15px;
    background-color: #fff;
}

.block-product {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 20px;
}

.item-product {
    display: block;
    width: 100%;
    padding: 15px 10px;
    border-radius: 15px;
    background-color: #fff;
}

.item-product_vacancy {
    /* Центрируем содержимое по вертикали (кроме кнопки) */
    justify-content: space-between;
    align-items: center;
    text-align: center;
    border: 2px dashed #f79632;
    /* Добавляем пунктирную рамку для акцента */
}

.vacancy-content {
    flex-grow: 1;
    /* Занимает все доступное место между заголовком и кнопкой */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.vacancy-icon {
    font-size: 3em;
    /* Увеличенный размер символа */
    color: #f79632;
    /* Цвет акцента */
    margin-bottom: 10px;
}

.vacancy-title {
    font-size: 1.5em;
    font-weight: 800;
    color: #333;
    margin-top: 0;
    margin-bottom: 5px;
}

.vacancy-subtitle {
    font-size: 1.1em;
    color: #555;
    margin: 0 0 20px 0;
}

.props-item:last-child {
    margin-right: 0;
}

.props-img {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 65px;
    width: 100%;
    max-width: 150px;
    margin: 0 auto 15px auto;
}

.props-img img {
    width: 100%;
}

.props-name {
    line-height: 1.2;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.props-infos {
    margin-bottom: 10px;
    color: #000000;
    padding: 0 10px;
}

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

.props-info p {
    font-size: 12px;
    margin-bottom: 10px;
    opacity: 0.8;
    line-height: 1.2;
    font-weight: 400;
}

.props-info span {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 10px;
}

.props-btn {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    justify-content: space-between;
    background-color: #eb8d29;
    border-radius: 10px;
    color: #fff;
    transition: 0.3s;
}

.props-btn:hover {
    background-color: var(--background-color-base);
    transition: 0.3s;
}














.navbar__wrap .menumarket>li>a {
    transition: all .2s ease-in-out;
}

.navbar__wrap .menumarket>li>a:hover {
    color: #00e600;
    transition: all .2s ease-in-out;
}

.top23market {
    background-color: #00e600;
}

.group-block1market {
    background-color: #4bff4b;
}

.wrapper-carouselmarket {
    background-color: #00e600;
}

.city_namemarket {
    transition: all .2s ease-in-out;
}

.city_namemarket:hover {
    color: #00e600;
    transition: all .2s ease-in-out;
}

.all-citiesmarket {
    background-color: #00e600;
    transition: .3s;
}

.all-citiesmarket:hover {
    color: #fff;
    transition: .3s;
}

.propsmarket {
    background-color: #00e600;
}

.url-itemmarket a {
    border: 1px solid #1da91d;
    background-color: #00e600;
}

.url-itemmarket a:hover {
    background-color: #4efe4e;
}

.btn-itemmarket {
    border: 1px solid #1da91d;
    background-color: #00e600;
}

.btn-itemmarket:hover {
    background-color: #4efe4e;
}

.buttonmarket:hover {
    background-color: #4efe4e;
}

.courier_linkmarket:hover {
    background-color: #4efe4e;
    transition: .3s;
}



/* Добавляем отступ сверху, равный высоте шапки (navbar) + небольшой запас.
       Установите значение чуть больше высоты вашего .navbar.
       Я устанавливаю 100px для надежности. */
#question,
#cities,
#category,
#needs,
#pros-cons,
#etape-1,
#etape-2,
#faq-section,
#question-age,
#question-salary,
#question-payouts,
#documents-list {

    scroll-margin-top: 75px;
}





/* ========================================================= */
/* СТИЛИ МОДАЛЬНОГО ОКНА */
/* ========================================================= */

/* 1. Область затемнения */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}

/* 2. Контейнер окна: Скругление 15px */
.modal-window {
    background-color: #edeff1;
    border-radius: 25px;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.visible .modal-window {
    transform: scale(1);
}

/* Кнопка закрытия (Крестик) */
.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #333;
    line-height: 1;
}

/* Текстовые элементы */
.modal-title {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
}

.modal-text {
    font-size: 15px;
    color: #555;
    margin-bottom: 25px;
    text-align: center;
    line-height: 18px;
}

.modal-text.small-text {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

/* Разделитель */
.modal-divider {
    border: 0;
    border-top: 1px solid #c6c6c6;
    margin: 25px 0 15px 0;
}

/* 3. Кнопки */
.modal-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 13px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: opacity 0.2s;
}

/* ГЛАВНАЯ КНОПКА (Стиль "Задать вопрос") */
.main-action-button {
    background-color: #00E600;
    /* Ярко-зеленый цвет */
    color: #000;
    font-weight: 600;
    margin-bottom: 15px;
}

.main-action-button:hover {
    background-color: #00cc00;
}

/* Кнопки мессенджеров (ФОН БЕЛЫЙ, ОБВОДКА СЕРАЯ, как на скриншоте) */
.secondary-button {
    background-color: #fff;
    color: #333;
    border: 1px solid #c6c6c6;
    font-weight: 400;
}

.secondary-button:hover {
    background-color: #f8f8f8;
}

/* WhatsApp (фирменный цвет текста) */
.whatsapp-button {
    color: #25d366;
}

/* Telegram (фирменный цвет текста) */
.telegram-button {
    color: #0088cc;
}

/* Иконки мессенджеров */
.modal-button i {
    font-size: 18px;
    margin-right: 10px;
}

/* Управление видимостью */
.modal-step {
    display: block;
}




/* Стили категории инструкция */

.instruksiya_yandex_eda {

    margin: 80px 0;

}

.instruksiya_yandex_eda h1 {

    margin-bottom: 20px;
    font-size: 28px;

}

.instruksiya_yandex_eda h2 {

    margin: 10px 0;
    font-size: 22px;

}

.instruksiya_yandex_eda h3 {

    margin-bottom: 10px;
    font-size: 20px;

}

.instruksiya_yandex_eda h4 {

    margin-bottom: 10px;
    font-size: 18px;

}

.instruksiya_yandex_eda p {

    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.3;

}

.instruksiya_yandex_eda ul {

    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 18px;

}

.instruksiya_yandex_eda a {

    color: var(--color-link);

}

.instruksiya_yandex_eda a:hover {

    color: var(--color-link);

}

.instruksiya_yandex_eda a:active {

    color: var(--color-link);

}

.content-toc {

    padding: 10px 15px 15px 15px;
    border: 1px solid #eee;
    border-radius: 20px;
    margin-bottom: 30px;

}

.content-toc h2 {}

.content-toc nav {}

.content-toc ol {}

.content-toc ol li {}

.content-toc ol li a {}






.needs {

    margin-bottom: 30px;

}

.needs h3 {}

.needs ul {

    line-height: 1.6;
    font-size: 18px;

}

.needs li {

    list-style: auto;
    margin-left: 30px;

}

.pros-cons {

    border: 1px solid #eee;
    padding: 20px;
    border-radius: 25px;
    background-color: #FFFCEE;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 35px;

}

.content-table {

    font-size: 18px;
    line-height: 1.5;

}

.content-table ol {

    line-height: 2;

}

.content-table ol li {

    list-style: auto;
    margin-left: 20px;

}

.content-table ol li a {}

.instruksiya_yandex_eda ol {}

.instruksiya_yandex_eda ol li {}

.instruksiya_yandex_eda ol li p {}

.instruksiya_yandex_eda img {

    width: 100%;
    margin-bottom: 10px;
    border-radius: 25px;
    border: 1px solid #eee;

}








.instruksiya_steps {

    border: 1px solid #eee;
    padding: 20px 20px 50px 20px;
    border-radius: 30px 30px 0 0;
    background-color: #f0f8ff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);

    margin: 0 -20px;

}

.instruksiya_faq {

    border: 1px solid #eee;
    padding: 20px 20px 50px 20px;
    border-radius: 30px 30px 0 0;
    background-color: #e6edf4;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin: -30px -20px 0 -20px;

}

.instruksiya_documents {

    border: 1px solid #eee;
    padding: 15px;
    border-radius: 30px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);

    margin: -30px -20px 0 -20px;

}

.instruksiya_documents h2 {}

.instruksiya_documents h3 {

    margin-bottom: 5px;

}

.instruksiya_documents p {

    margin-bottom: 5px;

}

.instruksiya_documents ul {

    margin-bottom: 5px;

}

.instruksiya_documents ul li {


    list-style: initial;
    margin-left: 35px;
    line-height: 1.5;
}









@media screen and (max-width: 900px) {
    .wrapper .carousel {
        grid-auto-columns: calc((100% / 1) + -10px);
    }

    .subscreen {
        padding: 100px 40px 100px 250px;
    }
}





@media screen and (max-width: 768px) {

    .navbar__wrap .menu {
        display: none;
    }

    .logo {
        max-width: 150px;
    }

    .hamb {
        display: flex;
        align-items: center;
    }

    .hamb__field {
        padding: 5px 10px;
        cursor: pointer;
    }

    .bar {
        display: block;
        width: 30px;
        height: 2px;
        margin: 6px auto;
        background-color: #000;
        transition: 0.2s;
    }

    .popup {
        position: fixed;
        top: -100%;
        width: 100%;
        height: 100%;
        background-color: #fff;
        z-index: 80;
        display: flex;
        transition: 0.3s;
    }

    .popup.open {
        top: 0;
    }

    .popup .menu {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding: 50px 0;
        overflow: auto;
    }

    .popup .menu>li {
        width: 100%;
    }

    .popup .menu>li>a {
        width: 100%;
        display: flex;
        padding: 10px 20px;
        font-size: 20px;
        font-weight: bold;
        color: #3f3f3f;
    }

    .popup .menu>li:first-child {
        margin-top: 20px;
    }

    .popup .menu>li>a:hover {
        background-color: rgba(122, 82, 179, 0.1);
    }

    .hamb__field.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamb__field.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamb__field.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    body.noscroll {
        overflow: hidden;
    }

    .top23-item {
        position: relative;
    }

    .top23-text {
        width: 100%;
        z-index: 1;
        padding: 0
    }

    .top23-text__title {
        font-size: 36px;
    }

    .top23-text__subtitle {
        font-size: 22px;
    }

    .title-product {
        font-size: 38px;
    }

    .subtitle-product {
        font-size: 28px;
    }

    .text-typing {
        font-size: 22px;
    }

    .top23-img {
        display: flex;
        justify-content: center;
        width: 100%;
        position: absolute;
        bottom: 0;
        opacity: 0.5;
    }

    .top23-img img {
        width: 75%;
    }

    .group-block2 {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(1, 1fr);
    }

    .block2-item1 {
        grid-area: 1 / 1 / 2 / 3;
    }

    .block2-item2 {
        grid-area: 2 / 1 / 3 / 3;
    }

    .block2-item3 {
        grid-area: 3 / 1 / 4 / 3;
    }

    .block2-item4 {
        grid-area: 4 / 1 / 5 / 3;
    }

    .block2-item5 {
        grid-area: 5 / 1 / 7 / 2;
        min-height: 320px;
    }

    .block2-item6 {
        grid-area: 5 / 2 / 7 / 3;
    }

    .block2-item7 {
        grid-area: 7 / 1 / 8 / 3;
    }

    .block2-item8 {
        grid-area: 8 / 1 / 9 / 3;
    }

    .block2-item9 {
        grid-area: 9 / 1 / 10 / 3;
    }

    .block2-item5 .block_item_img {
        width: 145px;
        bottom: 0;
        right: 0;
    }

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

    .block2-item2 .block_item_headtext .item__subtitle {
        width: 63%;
    }

    .block2-item6 .block_item_headtext {
        width: 100%;
    }

    .block2-item6 .block_item_img {
        bottom: -45px;
    }

    .block2-item7 .block_item_img,
    .block2-item6 .block_item_img,
    .block2-item9 .block_item_img {
        width: 130px;
    }

    .block2-item9 .block_item_headtext .item__subtitle {
        width: 80%;
    }



    .item__subtitle {
        font-size: 16px;
        line-height: 1.2;
    }

    .section-3-block .btn {
        padding: 15px 20px;
    }

    .section-3-block .btn2 {
        margin-left: 15px;
    }

    .footer-block {
        flex-wrap: wrap;
    }

    .footer-logo {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .footer .logo img {
        width: 150px;
    }

    .cities-item ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-form {
        margin: 0 -20px 35px -20px;
    }

    .productspasib h1 {
        font-size: 46px;
    }

    .error h1 {
        font-size: 120px;
    }

    .error h2 {
        font-size: 65px;
    }

    .error h3 {
        font-size: 24px;
        margin: 20px 0;
    }

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



    .subscreen__title {
        font-size: 52px;
        margin-bottom: 15px;
    }

    .subscreen__text {
        display: block;
        margin-left: auto;
        max-width: 50%;
    }


    .subscreen__info {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        max-width: 200px;
    }


    .advantages__item {
        width: calc(50% - 22px);
    }

    .advantages__wrapper {
        justify-content: center;
    }

    .advantages__text h3 {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 10px;
    }

    .advantages__text p {
        font-size: 14px;
        line-height: 17px;
    }

    .block-product {
        grid-template-columns: repeat(2, 1fr);
    }

    .button_fixed {
        display: flex;

    }



}

@media screen and (max-width: 600px) {
    .wrapper .carousel {
        grid-auto-columns: calc((100% / 1) + -10px);
    }

    .wrapper-title {
        font-size: 24px;
    }

    .wrapper-subtitle {
        font-size: 12px;
    }

    .wrapper i {
        display: none;
    }
}

@media screen and (max-width: 475px) {
    .subscreen {
        padding: 35px 20px 100px 20px;
        border-radius: 15px;
        margin: 0 -20px 30px -20px;
    }

    .subscreen__img {
        width: 185px;
    }

    .subscreen__text {
        /* display: block; */
        max-width: 100%;
    }

    .subscreen__title {
        max-width: 300px;
        margin-bottom: 15px;
        font-size: 45px;
    }

    .subscreen__info {
        margin-left: auto;
        padding-left: 0;
        border-left: none;
        max-width: 140px;
    }

    .advantages__item {
        width: 100%;
        margin: 0 0 10px 0;
        padding: 25px 20px 34px 20px;
    }

    .advantages__item:last-child {
        margin-bottom: 0;
    }

    .advantages__icon {
        width: 40px;
        margin: 0 auto 10px auto;
    }

    .advantages__wrapper {
        margin: 0;
        display: block;
    }

    .props {
        margin: 0 -20px 35px -20px;
        border-radius: 15px;
        padding: 15px 0 0 0;
    }

    .props-block {
        padding-bottom: 5px;
    }

    .props-block::-webkit-scrollbar {
        width: 0;
    }

    .block-product {
        grid-template-columns: 100%;
        padding: 0 20px 20px 20px;
    }

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




@media screen and (max-width: 435px) {

    /* .header-item .logo img {
		width: 115px;
	} */

    .sitemap_link {
        font-size: 16px;
    }

    .top23-img img {
        width: 100%;
    }

    .buttons {
        display: flex;
        justify-content: center;
    }

    .intro-title {
        font-size: 26px;
        line-height: 1.2;
    }

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

    .group-title {
        font-size: 26px;
    }

    .section-3-block .btn {
        width: 100%;
    }

    .section-3-block .btn2 {
        margin-left: 0;
        margin-top: 15px;
    }

    .group-block4 {
        grid-template-columns: repeat(1, 1fr);
    }

    .block-url {
        margin-bottom: 20px;
    }

    .block-url .url-item {
        margin-bottom: 15px;
        margin-right: 5px;
    }

    .url-item a {
        padding: 3px 3px;
        font-size: 12px;
    }

    .btn-item {
        padding: 3px 12px;
        font-size: 12px;
    }

    .footer-title {
        font-size: 12px;
    }

    .cities-item ul {
        grid-template-columns: repeat(1, 1fr);
    }

    .cities-block h2 {
        font-size: 26px;
    }

    .city_name {
        font-size: 18px;
    }

    .courier_city {
        margin-top: 150px;
    }

    .courier_block {
        width: 100%;
    }

    .courier_block h2 {
        font-size: 30px;
        margin-bottom: 50px;
        font-weight: 400;
    }









    .courier_link {
        padding: 8px 12px;
        margin-bottom: 15px;
        font-size: 14px;
        margin-right: 10px;
    }

    .productspasib h1 {
        font-size: 33px;
    }

    .productspasib a {
        font-size: 18px;
    }

    .wrapper .carousel {
        grid-auto-columns: calc((100% / 1) + -10px);
    }


}


@media screen and (max-width:400px) {
    .error h1 {
        font-size: 85px;
    }

    .error h2 {
        font-size: 55px;
    }
}