@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

html {
    min-height: 100%;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    font-size: 14px;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
    flex: auto;
    color: #565656;
    position: relative;
    width: 100%;
    overflow-x: hidden;
    font-weight: 500;
    font-family: Inter, sans-serif;
}
/*Обводка*/
a.active.focus,
a.active:focus,
a.focus,
a:active.focus,
a:active:focus,
a:focus,
button,
button.active.focus,
button.active:focus,
button.focus,
button:active.focus,
button:active:focus,
button:focus,
input.active.focus,
input.active:focus,
input.focus,
input:active.focus,
input:active:focus,
input:focus,
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus,
textarea:active,
textarea:focus
{
    outline: 0!important;
    outline-color: transparent!important;
    outline-width: 0!important;
    outline-style: none!important;
    box-shadow: 0 0 0 0 rgba(0,123,255,0)!important;
    outline-offset: 0 !important;
}
button::-moz-focus-inner {
    border: 0 !important;
}
.noselect {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
img {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.pointer {
    cursor: pointer;
}
a {
    text-decoration: none;
}
/*VAR*/
:root {
    --orange: #FF6800;
    --green: #139D4D;
    --red: #cd0d1f;
    --gray-dark: #333;
    --gray: #565656;
    --gray-light: #ededed;
}
/*TEXT*/
.bold {
    font-weight: 700;
}
.semibold {
    font-weight: 600;
}
.extrabold {
    font-weight: 800;
}
.medium {
    font-weight: 400;
}
.spacing {
    letter-spacing: -0.01em;
}
.spacing-2 {
    letter-spacing: -0.02em;
}
.h1 {
    font-size: 2.25rem;
}
.h3 {
    font-size: 1.25rem;
}
.fs-7 {
    font-size: 0.75rem;
}
.text-gradient {
    background: linear-gradient(90deg, #ff4201 0%, #ff8401 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/*COLOR*/
.orange {
    color: var(--orange);
}
.green {
    color: var(--green);
}
.red {
    color: var(--red);
}
/*BG*/
.bg-gradient-orange {
    background: linear-gradient(48deg, #ff4701 0%, #ff8501 100%);
}
.bg-orange {
    background: var(--orange);
}
.bg-green {
    background: var(--green);
}
.bg-red {
    background: var(--red);
}
/*Radius*/
.br-10 {
    border-radius: 10px !important;
}
.br-t-10 {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.br-b-10 {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
/*BORDER*/
.hr-orange {
    border-color: var(--orange);
    opacity: 1;
}
.hr-green {
    border-color: var(--green);
    opacity: 1;
}
.hr-red {
    border-color: var(--red);
    opacity: 1;
}
.b-1 {
    border: 1px solid #ebebeb;
}
/*Header*/
.nav-link {
    color: #000;
}
.nav-link:hover, .navbar-nav .nav-link.active {
    color: var(--orange);
}
header .navbar-brand svg {
    height: 60px;
}
header {
    z-index: 99999;
    /*position: fixed;*/
    position: absolute;
    transition: opacity 200ms linear;
}
header.hide {
    /*margin-top: 200%;*/
    opacity: 0;
    visibility: hidden;
}
#MobileMenu {
    background: linear-gradient(43deg, #e00134 0%, #ff8302 100%);
    /*transform: translateY(-100%);*/
    z-index: -1;
    opacity: 0;
    transition-property: opacity, z-index;
    transition-timing-function: linear, step-end;
    transition-duration: 100ms;
}
#MobileMenu.active {
    /*transform: translateY(0);*/
    z-index: 99998;
    opacity: 1;
    transition-property: opacity, z-index;
    transition-timing-function: linear, step-start;
}
#MobileMenu .nav-link {
    color: #fff;
}
/*Burger*/
.navbar-toggler {
    display: block;
    height: 50px;
    width: 30px;
    position: relative;
    padding: 0;
    border: 0;
    cursor: pointer;
}
.navbar-toggler span, .navbar-toggler span:before, .navbar-toggler span:after {
    cursor: pointer;
    width: 25px;
    position: absolute;
    display: block;
    content: '';
    background: url('data:image/svg+xml,%3Csvg width="25" height="2" viewBox="0 0 25 2" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M1 1H23.6274" stroke="%23FF6800" stroke-width="2" stroke-linecap="round" /%3E%3Cpath d="M1 1H23.6274" stroke="%23FF6800" stroke-width="2" stroke-linecap="round" /%3E%3Cpath d="M1 1H23.6274" stroke="%23FF6800" stroke-width="2" stroke-linecap="round" /%3E%3C/svg%3E');
}
.navbar-toggler span:before {
    top: -5px;
    height: 2px;
}
.navbar-toggler span:after {
    bottom: -5px;
    height: 2px;
}
.navbar-toggler span, .navbar-toggler span:before, .navbar-toggler span:after {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.navbar-toggler.active span {
    background-color: transparent;
}
.navbar-toggler.active span:before, .navbar-toggler.active span:after {
    top: 0;
}
.navbar-toggler.active span:before {
    transform: rotate(45deg);
}
.navbar-toggler.active span:after {
    transform: rotate(-45deg);
}
/*Footer*/
footer {
    /*background-image: url('data:image/svg+xml,%3Csvg fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 9.99999C0 4.47714 4.47715 0 10 0H1910C1915.52 0 1920 4.47715 1920 10V318H0V9.99999Z" fill="url(%23paint0_linear_387_797)" /%3E%3Cdefs%3E%3ClinearGradient id="paint0_linear_387_797" x1="955" y1="318" x2="977.148" y2="1.55016" gradientUnits="userSpaceOnUse"%3E%3Cstop offset="0.236831" stop-color="%23E00034" /%3E%3Cstop offset="1" stop-color="%23FF8501" /%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E');*/
    background: linear-gradient(0deg, #e00034 0%, #ff8501 100%);
}
footer .nav-link:hover, footer .nav-link.active {
    color: var(--red);
}
footer .navbar-brand svg:first-child {
    height: 47px;
}
footer .navbar-brand svg:last-child {
    height: 18px;
}
/*FORM*/
.btn-orange {
    padding: 18px 44px;
    color: var(--orange);
    border: 1px solid var(--orange);
    line-height: 1;
    background: none;
}
.btn-orange:hover {
    background: linear-gradient(90deg, #ff4901 0%, #ff7f01 100%);
    color: #fff;
}
.btn-gray-dark {
    padding: 18px 44px;
    color: #fff;
    border: 1px solid var(--gray-dark);
    line-height: 1;
    background: var(--gray-dark);
}
.btn-gray-dark:hover {
    background: var(--gray);
    color: #fff;
}
/*KORM*/
.nav.nav-pills button {
    padding: 12px 15px 12px 12px;
    color: var(--orange);
    border: 1px solid var(--orange);
    box-sizing: border-box;
}
.nav.nav-pills button>svg {
    fill: var(--orange);
}
.nav.nav-pills button.active {
    background: linear-gradient(90deg, #ff4901 0%, #ff7f01 100%);
    color: #fff;
}
.nav.nav-pills button.active>svg {
    fill: #fff;
}
.tab-content .fade {
    transition: opacity 0.1s linear;
}
.kvadrat {
    aspect-ratio: 1 / 1;
}
.korm-ug {
    background: url('data:image/svg+xml,%3Csvg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M14 1L1 1L1 14" stroke="white" stroke-width="2" stroke-linecap="round" /%3E%3C/svg%3E');
    width: 15px;
    height: 15px;
    border: none;
    transition: all linear 100ms;
}
.korm-ug.active {
    transform: rotate(180deg);
}
.img-collapse {
    transition: height linear 500ms;
}
.text-collapse, .text-plashka {
    transition: top linear 500ms;
    margin-top: -10px;
    padding: 26px 16px;
}
/*Carousel*/
.carousel-indicators {
    margin-bottom: .5rem;
    align-items: center;
}
.carousel-indicators [data-bs-target] {
    opacity: 1;
    width: 10px;
    height: 10px;
    background: none;
    border: 1px solid #fff;
    border-radius: 50%;
}
.carousel-indicators .active {
    width: 13px;
    height: 13px;
    background-color: #fff;
}
/*Advice*/
.advice .bg-gradient-orange.text-white {
    margin-top: -10px;
    padding: 26px 16px 16px 16px;
}
.advice img {
    cursor: pointer;
    transition: all 300ms linear;
}
.advice img:hover {
    transform: scale(1.05);
}
/*Dressing*/
.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
    opacity: 1;
}
.carousel-control-next-icon {
    background-image: url('data:image/svg+xml,%3Csvg width="10" height="15" viewBox="0 0 10 15" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M1.5 13.5L7.5 7.5L1.5 1.5" stroke="white" stroke-width="3" stroke-linecap="round" /%3E%3C/svg%3E');
    width: 10px;
    height: 15px;
}
.carousel-control-prev-icon {
    background-image: url('data:image/svg+xml,%3Csvg width="10" height="15" viewBox="0 0 10 15" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M8.12109 1.5L2.12109 7.5L8.12109 13.5" stroke="white" stroke-width="3" stroke-linecap="round" /%3E%3C/svg%3E');
    width: 10px;
    height: 15px;
}
#topdressing+div .carousel-inner {
    padding-left: 1rem;
    padding-right: 1rem;
}
/*VideoCarousel*/
.splide-all .splide__arrows {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.75rem;
    z-index: 10;
}
.splide-all .splide__slide:last-child {
    /*padding-right: 3rem;*/
     padding-right: 0;
}
.splide-all .splide__arrows>.splide__arrow--prev,
.splide-all .splide__arrows>.splide__arrow--next
{
    width: 10px;
    height: 15px;
    background: url('data:image/svg+xml,%3Csvg width="10" height="15" viewBox="0 0 10 15" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M1.5 13.5L7.5 7.5L1.5 1.5" stroke="white" stroke-width="3" stroke-linecap="round" /%3E%3C/svg%3E');
    border: 0;
    padding: 0;
}
.splide-all.advice .splide__arrows>.splide__arrow--prev,
.splide-all.advice .splide__arrows>.splide__arrow--next,
.splide-collapse .splide__arrows>.splide__arrow--prev,
.splide-collapse .splide__arrows>.splide__arrow--next
{
    background: url('data:image/svg+xml,%3Csvg width="10" height="15" viewBox="0 0 10 15" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M1.5 13.5L7.5 7.5L1.5 1.5" stroke="%23FF6800" stroke-width="3" stroke-linecap="round" /%3E%3C/svg%3E');
}
.splide-all .splide__arrows>.splide__arrow--prev {
    transform: rotate(180deg);
}
.splide-all .splide__arrows>.splide__arrow--prev>svg,
.splide-all .splide__arrows>.splide__arrow--next>svg
{
    display: none;
}
.splide-all .splide__arrows>.splide__arrow--prev:disabled,
.splide-all .splide__arrows>.splide__arrow--next:disabled
{
    opacity: 0.5;
}
.splide__slide img {
    width: 100%;
}
.splide-video li a>div, .splide-advice li a>div {
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
}

.splide-video li a>div:first-child::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gray-dark);
    opacity: 0.2;
    z-index: 2;
    transition: opacity 300ms;
    border-radius: 10px;
    overflow: hidden;
}
.splide-video li a>div:first-child::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: url("../img/play-button.png"), linear-gradient(rgba(255,255,255,0.65), rgba(255,255,255,0.65));
    background-repeat: no-repeat !important;
    background-position: 55% 50% !important;
    border-radius: 50%;
    z-index: 3;
    transition: all 300ms;
}
.splide-video li a:hover>div:first-child::before {
    opacity: 0;
}
.splide-video li a:hover>div:first-child::after {
    background: url("../img/play-button.png"), linear-gradient(rgba(255,255,255,1), rgba(255,255,255,1));
    background-repeat: no-repeat;
}
/*.splide__slide {*/
/*    width: calc(100% - 4rem);*/
/*}*/
/*Form*/
#InputSearch {
    background-image: url('data:image/svg+xml,%3Csvg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M4.0625 0C6.30616 0 8.125 1.81884 8.125 4.0625C8.125 4.98883 7.81496 5.84275 7.29299 6.52614L9.04968 8.28365C9.26122 8.49518 9.26122 8.83815 9.04968 9.04968C8.85442 9.24494 8.54717 9.25996 8.33468 9.09474L8.28365 9.04968L6.52614 7.29299C5.84275 7.81496 4.98883 8.125 4.0625 8.125C1.81884 8.125 0 6.30616 0 4.0625C0 1.81884 1.81884 0 4.0625 0ZM4.0625 1.08333C2.41715 1.08333 1.08333 2.41715 1.08333 4.0625C1.08333 5.70785 2.41715 7.04167 4.0625 7.04167C4.79437 7.04167 5.46459 6.77776 5.98322 6.33993C6.00764 6.25822 6.05248 6.18149 6.11698 6.11698C6.18149 6.05248 6.25822 6.00764 6.33971 5.98248C6.77776 5.46459 7.04167 4.79437 7.04167 4.0625C7.04167 2.41715 5.70785 1.08333 4.0625 1.08333Z" fill="white" /%3E%3C/svg%3E');
    background-position: center right;
    background-color: transparent;
    background-repeat: no-repeat;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #fff;
    padding: 8px 18px 8px 0;
}
#InputSearch::placeholder {
    color: #fff;
    opacity: 0.7;
}
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Количество строк */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/*btn-top*/
.btn-top {
    position: fixed;
    display: none;
    overflow: hidden;
    z-index: 99999999;
    right: 20px;
    bottom: 50px;
}