@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600&display=swap');
html {
    scroll-behavior: smooth !important;
    font-size: 17px;
}
.sluchawki-spec{
    text-align: center;
    list-style: none;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Nunito', sans-serif;
}

.xlp.container {
    border: 0;
    border-radius: 0;
}

.xlp .container {
    position: relative;
    z-index: 4 !important;
}

.xlp .container-fluid {
    position: relative;
    z-index: 4 !important;
}

.xlp .row {
    position: relative;
    z-index: 3;
}

.xlp .link {
    color: #000;
    font-weight: 600;
}

.xlp img {
    /* user-drag: none; */
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.xlp .text-semi {
    font-weight: 600;
}

.xlp .text-small {
    font-size: .8rem;
}

.xlp h1 {
    font-size: 2rem;
}

.xlp h2 {
    font-size: 2rem;
}

.xlp h3 {
    font-size: 1.8rem;
}

.xlp h4 {
    font-size: 1.6rem;
}

.xlp h5 {
    font-size: 1.4rem;
}

.xlp h6 {
    font-size: 1.2rem;
}

.xlp p {
    font-size: 1rem;
    color: #808080;
}

.xlp section {
    padding: 5rem 0;
}

.hero {
    /* background: linear-gradient(90deg, rgba(0, 105, 60, 1) 0%, rgba(91, 143, 34, 1) 70%, rgba(0, 105, 60, 1) 100%); */
    background: #08580d;
    color: #fff;
    padding:  0 !important;
}

.btn.btn-orange {
    background: #ec7b1e;
    color: #fff;
    border: none;
    padding: 8px 20px;
}

.btn.btn-orange:hover {
    background: #e46700;
    color: #fff;
    border: none;
}

.btn.btn-orange i {
    font-size: 12px;
}

.hero h2 {
    font-size: 50px;
    font-weight: 300;
    padding: 0;
    margin: 0;
}

.hero h3 {
    font-size: 2rem;
    font-weight: 300;
    padding: 0;
    margin: 0;
}

.running {
    position: relative;
    background: url("../img/running-bg.jpg") no-repeat center center;
    height: 305px;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.running .dot {
    position: relative;
}

.running .dot:before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: -40px;
    background: #ec7b1e;
    border-radius: 100%;
}

.steps .step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.steps .step.arrow:after {
    content: url("../img/steps-arrow.png");
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    right: -55%;
    width: 100%;
}

.bg-gradient {
    padding: 3rem 0 !important;
    background: linear-gradient(90deg, rgba(0, 105, 60, 1) 0%, rgba(91, 143, 34, 1) 70%, rgba(0, 105, 60, 1) 100%);
    color: #fff;
}

.products .product {
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 20px;
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0);
    transition: all 250ms ease-in-out;
}

.products .product:hover {
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.05);
}

.products .thumb {
    display: flex;
    position: relative;
    width: 100%;
    padding-top: 100%;
}

.products .thumb img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.products .product .old-price {
    text-decoration: line-through;
    font-size: .8rem;
    margin-right: 10px;
    color: rgba(0, 0, 0, .6) !important;
}

.app {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.xlp .color-white {
    color: white;
}

@media (min-width: 1280px) {
    .app {
        height: 300px;
    }
}

@media (max-width: 991px) {
    .running:after {
        content: '';
        background: rgba(255, 255, 255, .8);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(5px);
    }
    .running .dot:before {
        display: none;
    }
    .steps .step.arrow:after {
        display: none;
    }
}

@media (max-width: 768px) {
    .steps .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .products .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}