@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');


* {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Manrope;
    line-height: 1.6;
    margin: 0;
}

::-webkit-scrollbar {
    width: 6px;
    /* Ширина вертикального скроллбара */
    height: 6px;
    /* Высота горизонтального скроллбара */
}

::-webkit-scrollbar-track {
    background: #ffffff;
    /* Цвет трека */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #B2D235;
    /* Цвет ползунка */
    border-radius: 30px;
    border: 0px;
    /* Граница вокруг ползунка */
}

::-webkit-scrollbar-thumb:hover {
    background: #d9ff41;
    /* Цвет ползунка при наведении */
}

.callback-btn {
    position: sticky;
    right: 0;
    top: 50%;
    margin-top: -212px;
    transform: translateY(-50%);
    background-color: #B2D235;
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer !important;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    border-radius: 10px 0 0 10px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    z-index: 800;
    font-weight: bold;
    font-size: 18px;
    float: right;
    z-index: 100;
    opacity: 0;
    transition: 1s;
    animation: show 3s 1;
    animation-fill-mode: forwards;
    animation-delay: 3s;
}

@keyframes show {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 100%;
    }
}



.callback-btn:hover {
    background-color: #b3d235d9;
}

.callback-overlay {
    display: none;
    position: fixed;
    right: 0;
    top: 0;
    width: 30%;
    height: 100%;
    background-color: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    padding: 20px;
    box-sizing: border-box;

}

.callback-overlay h2 {
    font-size: 30px;
    padding-top: 100px;
    padding-bottom: 10px;
}

.callback-overlay p {
    font-size: 18px;
    padding-bottom: 30px;
}

.callback-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.callback-form input,
.callback-form button {
    padding: 10px;
    font-size: 18px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
}

.callback-form input[type="date"],
.callback-form input[type="time"] {
    color: #757575;
}


.callback-form button {
    background-color: #B2D235;
    padding: 15px;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    font-weight: bold;
}

.callback-form button:hover,
.footer .obrat button:hover {
    background-color: #b3d235d9;
}



.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
    color: #B2D235;
}

@media (max-width: 768px) {
    .callback-overlay {
        width: 80%;
    }
}

.container {
    width: 1200px;
    margin: auto;
}

.header {
    height: 100vh;
}

.about {
    height: 450px;
}


.header,
.about,
.contacts,
.footer {
    position: relative;
}

.header h1 {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}


.about h1,
.product h1,
.contacts h1,
.oblast h1 {
    font-size: 30px;
    margin-top: 90px;
    margin-bottom: 30px;
    text-align: left;
}

.about h1 {
    margin-top: 140px;
}

.footer {
    height: 225px;
    background-color: var(--primary);
}

.header h1 {
    text-align: center;
}

.header {
    background-image: url(/img/1.png);
    width: 100%;
    background-size: cover;
}

.header h1 {
    color: white;

}

.navbar {
    padding-top: .5em;
    padding-bottom: .5em;
    background-color: #FFFFFF;
    -webkit-box-shadow: 0 14px 14px -14px rgba(0, 0, 0, .75);
    -moz-box-shadow: 0 14px 14px -14px rgba(0, 0, 0, .75);
    box-shadow: 0 14px 14px -14px rgba(0, 0, 0, .75);
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.hidden {
    display: none;
}

.display__logo {
    font-size: 2.5rem;
    margin-bottom: .5rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
}

.nav__items {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav__link {
    color: var(--shades);
    text-decoration: none;
}


.brand {
    margin: 0;
    font-size: 1.45em;
}

.brand a {
    padding: 10px 15px;
    text-align: center;
    display: block;
}

.logo {
    display: inline-block;
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    line-height: inherit;
}

.logo::before {
    display: inline-block;
    vertical-align: top;
    padding-top: 10px;
    content: url("/img/logo2.png");
}

.nav__items {
    margin-top: 5px;
}

.brand .nav__link,
.nav__items .nav__link {
    padding: 10px 15px;
    text-align: center;
    display: block;
}

.nav__items .nav__link {
    color: black;
    font-size: 18px;
    padding-right: 30px;
}

.nav__items .nav__link:hover {
    color: #B2D235;
}



@media (min-width: 800px) {

    .navbar,
    .nav__items {
        display: flex;
    }

    .navbar {
        flex-direction: column;
        align-items: center;
    }

    .navbar {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* О компании */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.box {
    position: relative;
    font-size: 18px;
    background: #e6e6e6;
    border-radius: 12px;
    padding: 30px 30px;

}


/*Области применения нашей продукции */



.oblast {
    position: relative;
    height: 350px;
}


.oblast ul {
    width: 500px;
}


.oblast li {
    font-size: 18px;
    padding: 5px;
    margin-left: 20px;
    width: 500px;
    line-height: 40px;
}

.swiper {
    position: absolute;
    top: -345px;
    left: 320px;
    width: 525px;
    height: 350px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper .swiper-pagination-bullet-active {
    background-color: #B2D235;
}

.swiper .swiper-button-next,
.swiper .swiper-button-prev {
    color: #B2D235;
}

.swiper-slide img {
    max-width: 700px;
    max-height: 350px;
    cursor: pointer;
    border-radius: 30px;
}

/* Продукция */

/* Вкладки */

/* Стили для вкладок */

.tabs-container {
    width: 1170px;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

}

.tab-buttons {
    display: flex;
    background: #e6e6e6;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
}

.tab-btn {
    flex: 1;
    padding: 15px 0;
    text-align: center;
    background: #e6e6e6;
    border: none;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
    outline: none;
    border-right: 1px solid #ccc;
}

.tab-btn:last-child {
    border-right: none;
}

.tab-btn:hover {
    background: #d0d0d0;
}

.tab-btn.active {
    font-size: 22px;
    background: #B2D235;
    color: white;
    font-weight: bold;
}

.tab-content {
    background: white;
    padding: 25px;
    border-radius: 0 0 5px 5px;
    min-height: 300px;
    border: 1px solid #ddd;
    border-top: none;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s;
}

.tab-pane.active {
    display: block;

}


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.product {
    margin-top: 200px;
    margin-bottom: 150px;
}

.tab-content p {
    text-align: center;
    font-size: 20px;
    line-height: 40px;
    padding-top: 15px;
}



.product .swiper {
    position: relative;
    left: 0;
    top: 0px;
    width: 425px;
    height: 380px;
    margin-top: 10px;
}

.no-slider img {
    border-radius: 30px;
    width: 280px;
    height: 400px;
    flex: 1;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


#tab3 .no-slider img {
    border-radius: 30px;
    width: 280px;
    height: 400px;
    flex: 1;
    display: block;
    margin-left: auto;
    margin-right: auto;
}



.no-slider p {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.product .flakoni img {
    width: 425px;
    height: 370px;
}

.product .krishki {
    width: 280px;
    height: 400px;
}

.product .krishki {
    padding-bottom: 20px;
}

.product .krishki img {
    width: 280px;
    height: 400px;
    border-radius: 30px;
}

.product .applikatori {
    position: relative;
    left: 0;
    top: 0px;
    width: 425px;
    height: 380px;
    margin-top: 10px;
}

.product .applikatori img {
    width: 300px;
    height: 400px;
    margin-top: 0px;
}

.product .applikatori p {
    margin-top: 20px;
    padding-bottom: 20px;
}


/* Контакты */
.contacts {
    height: 1050px;
}

.table {
    width: 50%;
    border: none;
    margin-bottom: 20px;
    border-collapse: separate;
}

.table thead th {
    font-weight: normal;
    text-align: left;
    border: none;
    padding: 10px 15px;
    background: #e6e6e67a;
    font-size: 18px;
    border-top: 1px solid #ddd;
}

.table tr th:first-child,
.table tr td:first-child {
    border-left: 1px solid #ddd;
}

.table tr th:last-child,
.table tr td:last-child {
    border-right: 1px solid #ddd;
}

.table thead tr th:first-child {
    border-radius: 10px 0 0 0;
}

.table thead tr th:last-child {
    border-radius: 0 0 0 0;
}

.table tbody td {
    text-align: left;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    vertical-align: top;
}

.table tbody tr:nth-child(even) {
    background: #e6e6e67a;
}

.table tbody tr:last-child td {
    border-bottom: 1px solid #ddd;
}

.table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 10px;
}

.table tbody tr:last-child td:last-child {
    border-radius: 0 0 0 0;
}

.map-container {
    padding-top: 1px;
    width: 50%;
    height: 823px;
}


.footer {
    padding: 40px;
    background-color: #e6e6e6;
}

.footer img {
    padding-bottom: 20px;
}

.footer p {
    font-size: 18px;
}

.footer #pochta {
    color: #B2D235;
}

.footer .obrat {
    align-items: right;
}

.footer .obrat button {
    float: right;
    background-color: #B2D235;
    color: white;
    border: none;
    margin-top: 50px;
    padding: 15px;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    z-index: 800;
    font-weight: bold;
    font-size: 18px;
    float: right;
}

.footer .obrat p {
    float: right;
    font-size: 25px;
    margin-top: -3px;
}