@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');

body{
    direction: ltr;
    font-family: 'Ubuntu', sans-serif !important;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

header {
    overflow: hidden;
}

    .site-map-navlink {
        font-size: 17px;
        font-weight: 400;
        color: #000;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0px;
        padding: 0 20px;
        display: inline-block;
        position: relative;
        overflow: hidden;
        transition-duration: .3s;
    }

    .site-map-navlink::before {
        height: 35px;
        width: 100%;
        position: absolute;
        content: "";
        background-color: #000;
        left: -100%;
        top: 0;
        transition-duration: .3s;
    }

    .site-map-navlink:hover::before {
        transition-duration: .3s;
        transform: translate(100%);
        border-radius: 0;
    }

    .site-map-navlink span {
        position: relative;
        z-index: 1;
    }

    .site-map-navlink:hover span {
        color: #fff;
    }

    .dropdown {
            float: left;
    }
        
    .dropdown .dropbtn {
        border: none;
        background-color: #fff;
        transition: all .3s ease;
        font-size: 17px;
        font-weight: 400;
        color: #000;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0px;
        padding: 0 20px;
        display: inline-block;
        position: relative;
        overflow: hidden;
    }

    .dropbtn::before {
        height: 35px;
        width: 100%;
        position: absolute;
        content: "";
        background-color: #000;
        left: -100%;
        top: 0;
        transition-duration: .3s;
    }

    .dropbtn:hover::before {
        transition-duration: .3s;
        transform: translate(100%);
        border-radius: 0;
    }

    .dropbtn span {
        position: relative;
        z-index: 1;
    }

    .dropbtn:hover span {
        color: #fff;
    }
        
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f9f9f9;
        min-width: 160px;
        box-shadow: 0px 9px 15px 0px rgba(0,0,0,0.2);
        z-index: 3;
    }
        
    .dropdown-content a {
        float: none;
        color: black;
        padding: 10px 15px;
        text-decoration: none;
        display: block;
        text-align: left;
        width: 370px;
    }
        
    .dropdown-content a:hover {
        background-color: #000;
        color: #fff;
    }
        
    .dropdown:hover .dropdown-content {
        display: block;
    }

    .header-centr {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .logo-centr-link {
        display: flex;
        flex-direction: row;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }

    .logo-centr-img {
        width: 74px;
        height: 74px;
    }

    .logo-centr-name {
        font-size:  40px;
        font-weight:  400;
        letter-spacing:  2px;
        margin: 0;
    }

    .header-centr-nav {
        display: flex;
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
    }

    .animbanner {
        width: 98vw;
        align-items: center;
        justify-content: center;
        height: 382px;
        display: flex;
    }

    .animbanner-left {
        width: 33%;
        height: 100%;
        border: 10px solid #fff;
        overflow: hidden;
    }

    .animbanner-left-img {
        width: 100%;
        height: 110%;
        object-fit: cover;
        position: relative;
        top: 0;
        animation: move;
        animation-duration: 5s;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
        animation-fill-mode: forwards;
        animation-direction: alternate;
    }

    @keyframes move {
        0% {
          top: 0px; 
        }
        25% {
          top: -500px;
        }
        50% {
          top: -1000px;
        }
        75% {
          top: -1470px;
        }
        100% {
          top: -1400px;
        }
}

    .animbanner-center {
        width: 33%;
        height: 100%;
        background-color: #1597BB;
        border-top: 10px solid #fff;
        border-bottom: 10px solid #fff;
    }

    .animbanner-center-overlay {
        width: 100%;
        height: 100%;
        background-image: url(assets/images/dark-overlay-2025-05-18_09-490.png);
        background-position: center;
        background-size: cover;
        display: flex;
        justify-content: center;
        align-items: end;
        padding-bottom:  29px;
    }

    .animbanner-greetings {
        width: 80%;
        background-color: #fff;
        padding: 20px 10px;
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
        font-size: 18px;
        font-weight: 400;
        text-align: center;
        line-height: 1.3;
    }

    .animbanner-right {
        width: 33%;
        height: 100%;
        border: 10px solid #fff;
        overflow: hidden;
    }

    .animbanner-right-img {
        width: 100%;
        height: 110%;
        object-fit: cover;
        position: relative;
        top: 0;
        animation: move-revers;
        animation-duration: 5s;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
        animation-fill-mode: forwards;
        animation-direction: alternate;
    }

    @keyframes move-revers {
        0% {
          top: -1400px ; 
        }
        25% {
          top: -1470px;
        }
        50% {
          top: -1000px;
        }
        75% {
          top: -500px;
        }
        100% {
          top: 0px;
        }
}

    .company-info {
        padding-top: 43px;
        padding-bottom: 43px;
        display: flex;
        flex-direction: row-reverse;
        gap: 29px;
        justify-content: center;
        align-items: center;
    }

    .company-info-media {
        width: 70%;
        display: flex;
        gap: 29px;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .company-info-media-imgfirst {
        width: 50%;
        height: auto;
        border: 10px solid #fff;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .company-info-media-imgfirst img {
        width: 100%;
        object-fit: cover;
        transition: all 400ms ease-in-out 0s;
    }

    .company-info-media-imgfirst img:hover {
        transform: scale(1.1);
    }

    .company-info-media-imgfirst::after {
        background: #1597BB;
        content: "";
        height: 95%;
        margin: auto;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        left: 0;
        width: 25%;
        z-index: -1;
        transition: all 400ms ease-in-out 0s;
    }

    .company-info-media-imgsecond {
        width: 45%;
        border: 10px solid #fff;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .company-info-media-imgsecond img {
        width: 100%;
        height: 215px;
        object-fit: cover;
        transition: all 400ms ease-in-out 0s;
    }

    .company-info-media-imgsecond img:hover {
        transform: scale(1.1);
    }

    .company-info-media:hover .company-info-media-imgfirst::after {
        right: -35px;
    }

    .company-info-text {
        width: 30%;
        padding: 29px 20px;
    }

    .company-info-title {
        font-size: 40px;
        margin: 0 0 20px;
        padding: 0 0 20px;
        text-transform: uppercase;
        position: relative;
    }

    .company-info-title::after {
        position: absolute;
        left: 0;
        height: 2px;
        width: 29px;
        top: auto;
        bottom: 0;
        margin: 0 auto;
        content: "";
        background-color: #1597BB;
    }

    .company-info-txt {
        font-size: 17px;
        font-style: italic;
        line-height: 1.3;
    }

    .benefitblock {
        padding-top: 43px;
        padding-bottom: 43px;
        display: flex;
        flex-direction: row;
        gap: 43px;
        align-items: center;
    }

    .benefitblock-text {
        width: 50%;

    }

    .benefitblock-title {
        font-size: 40px;
        margin: 0 0 20px;
        padding: 0 0 20px;
        text-transform:  uppercase;
        position: relative;
    }

    .benefitblock-title::after {
        position: absolute;
        left: 0;
        height: 2px;
        width: 29px;
        top: auto;
        bottom: 0;
        margin: 0 auto;
        content: "";
        background-color: #1597BB;
    }

    .benefitblock-intro, .benefitblock-outro {
        font-size: 17px;
        line-height: 1.3;
        margin-bottom:  43px;
    }

    .benefitlist-item {
        display: flex;
        flex-direction: row;
        gap: 20px;
        align-items: center;
        margin-bottom: 20px;
    }

    .benefitlist-text h4 {
        font-size:  18px;
        text-transform:  uppercase;
        letter-spacing: 1px;
    }
    
    .benefitlist-text p {
        font-size: 17px;
        font-style: italic;
    }

    .benefitblock-media {
        width: 50%;
    }

    .benefitblock-video video {
        display: flex;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .benefitlist-img {
        width: 135px;
    }

    .benefitlist-img img {
        width: 115px;
        object-fit: contain;
        transition: all 400ms ease-in-out 0s;;
    }

    .benefitlist-item:hover .benefitlist-img img {
        transform: rotateY(-180deg);
    }

    .benefitlist-item:hover .benefitlist-text h4 {
        color: #1597BB;
    }

    .bloki-dlya-mp-bg {
        padding-top: 29px;
        padding-bottom: 29px;
        background-color: #00000008;

    }
    
    .marketplace-title {
        font-size: 40px;
        margin: 0 0 20px;
        padding: 0 0 20px;
        text-transform: uppercase;
        position: relative;
        text-align: center;
    }

    .marketplace-title::after {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        height: 2px;
        width: 30%;
        top: auto;
        bottom: 0;
        margin: 0 auto;
        content: "";
        background-color: #1597BB;
    }

    .bloki-dlya-mp-wrap {
        padding: 20px 0;
        display: flex;
        flex-direction: column;
        gap:  29px;
        justify-content: center;
    }

    .marketplace-card {
        width: 30%;
        border: 3px solid #f1f1f1;
        background-color: #fff;
        padding: 20px;
    }

    .mp-card-img {
        position: relative;
    }

    .mp-card-imglink img {
        width: 100%;
        height: 245px;
        object-fit: contain;
    }

    .mp-card-stat {
        position: absolute;
        left: 50%;
        bottom: 10%;
        transform: translateX(-50%);
        z-index: 1;   
    }

   .mp-card-stat-wrap {
        opacity: 0;
        transform: scale(0.1);
        border-radius: 29px;
        transition: all .5s;
   }

    .marketplace-card:hover  .mp-card-stat-wrap {
        display: flex;
        flex-direction: row;
        gap: 10px;
        transform: scale(1);
        opacity: 1;
        border-radius: 0;
    }

    .mp-card-statitem {
        width: 74px;
        padding: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 9px;
        font-size:  14px;
        background: rgba(255,255,255,0.9); color: #222;
    }

    .mp-card-text {
        padding-top: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    :root {
        --star-size: 20px;
        --star-color: #292929;
        --star-background: #1597BB ;
    }
    .Stars {
        display: flex;
        justify-content: center;
        --percent: calc(var(--rating) / 5 * 100%);
        font-size: var(--star-size);
        line-height: 1.3;
        margin-bottom: 15px;
    }
    .Stars::before {
        content: '✸✸✸✸✸';
        letter-spacing: 3px;
        background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .mp-card-title {
        font-size: 18px;
        font-weight: 400;
        text-transform:  uppercase;
    }

    .mp-card-content {
        font-size: 14px;
    }

    .mp-card-infoblock {
        margin-top: 20px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
  
    .mp-card-btnblock {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .rund-qa-form-part-bg {
        background: #1597BB;
        background: radial-gradient(circle, #1597BB 50%, rgba(24,23,23,1) 100%);
    }

    .rund-qa-form-part {
        padding: 29px;
        display: flex;
        flex-direction: row;
        gap: 74px;
        align-items: center;
    }

    .rund-qa {
        width: 50%;
    }

    .rund-qa-title {
        color: #fff;
        font-size: 40px;
        margin: 0 0 15px;
        padding: 0 0 15px;
        text-transform: uppercase;
        position: relative;
    }

    .rund-qa-title::after {
        position: absolute;
        left: 0;
        height: 2px;
        width: 60px;
        top: auto;
        bottom: 0;
        margin: 0 auto;
        content: "";
        background-color: #fff;
    }

    .accordion-flush .accordion-button {
        border-radius: 0;
        background: #a4a4a4;
        font-size: 18px;
        color: #000;
    }

    .accordion-flush .accordion-item:last-of-type .accordion-button.collapsed {
        border-bottom-width: 0;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .accordion-flush .accordion-item:first-of-type .accordion-button {
        border-top-width: 0;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .accordion-item {
        padding: 10px 0 10px;
    }

    .accordion-button:not(.collapsed) {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;   
    }

    .accordion-body {
        border-bottom-right-radius: 20px;
        border-bottom-left-radius: 20px; 
        background-color: #fff;
    }


    .rund-form-part {
        width: 50%;
    }

    .r-f-body {
        margin-top: 15px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        background: linear-gradient(to right ,grey,silver);
        padding:  43px;
        border-radius: 10px;

    }

    .input-group__area__control {
        height: 45px;
        outline: none;
        padding: 15px;
        border-radius: 10px;
        border: none;
        font-weight: 800;
        font-size: 14px;
        box-shadow: 2px 2px 10px inset black;
      }
      
    .textarea-group__area__control {
        outline: none;
        padding: 15px;
        border-radius: 10px;
        border: none;
        font-weight: 800;
        font-size: 14px;
        box-shadow: 2px 2px 10px inset black; 
    }

    .r-f-body label {
        color: #fff;
        font-size: 17px;
        font-weight: 400;
        margin-bottom: 0;
    }
      
    .r-f-body  label a {
       color: #fff;
       font-size: 17px;
       margin-bottom: 0;
      }
      
      label a:hover {
        color: #fff;
        text-decoration: underline;
      }

      .form-check {
        display: flex;
        gap: 10px;
        align-items: center;
      }

      .r-f-intro {
        color: #fff;
        margin-bottom: 28px;
        font-weight: 400;
      }

      .rund-part-bg {
        width: 100%;
        height: 545px;
        display: none;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .rund-part .rund-part-outer {
        display: none;
        align-items: center;
        justify-content: center;
    }

    .rund-part .rund-part-card{
        background: #a4a4a4;
        width: 80%;
        display: flex;
        padding: 20px;
        opacity: 0;
        pointer-events: none;
        position: absolute;
        justify-content: space-between;
        border-radius: 103px;
        box-shadow: 0px 10px 15px rgba(0,0,0,0.1);
        animation: animate 15s linear infinite;
        animation-delay: calc(3s * var(--delay));
    }

    .rund-part-outer:hover .rund-part-card{
        animation-play-state: paused;
    }

    .rund-part .rund-part-card:last-child{
        animation-delay: calc(-3s * var(--delay));
    }
    @keyframes animate {
        0%{
            opacity: 0;
            transform: translateY(100%) scale(0.5);
        }
        5%, 20%{
            opacity: 0.4;
            transform: translateY(100%) scale(0.7);
        }
        25%, 40%{
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0%) scale(1);
        }
        45%, 60%{
            opacity: 0.4;
            transform: translateY(-100%) scale(0.7);
        }
        65%, 100%{
            opacity: 0;
            transform: translateY(-100%) scale(0.5);
        }
    }

    .rund-part  .rund-part-card img {
        height: 115px;
        width: 100%;
        object-fit: contain;
        padding: 9px;
    }

    .order-stages-block {
        padding-top: 20px;
        padding-bottom: 20px;
        background-color: #00000008;
    }

    .title-dlya-pokypki {
        font-size: 40px;
        margin: 0 0 43px;
        padding: 0 0 20px;
        text-transform: uppercase;
        position: relative;
        text-align: center;
    }

    .title-dlya-pokypki::after {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        height: 2px;
        width: 30%;
        top: auto;
        bottom: 0;
        margin: 0 auto;
        content: "";
        background-color: #1597BB;
    }

    .dlya-pokypki-boxa {
        display: flex;
        flex-direction: row;
        gap: 43px;
        margin-bottom: 43px;
        justify-content: center;
    }

    .dlya-pokypki-single {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 20px;
        width: 30%;
    }

    .order-stages-pic {
        width: 103px;
        height: 103px;
        border-radius: 50%;
        padding: 10px;
        background-color: #1597BB;
    }

    .order-stages-pic i {
        display: inline-block;
        width: 73px;
        height: 73px;
        font-size: 40px;
        color: #fff;
        border-radius: 50%;
        border: 2px dashed #fff;
        padding: 15px;
    }

    .dlya-pokypki-single p {
        font-size:  18px;
        font-weight: 400;
        text-transform:  uppercase;
    }

    .footer-col-bg {
        padding-top:  43px;
        padding-bottom:  43px;
        background-color: #1597BB;
    }

    .footer-col {
        display: flex;
        flex-direction: row;
        gap:  43px;
        justify-content: center;
    }

    .footer-column {
        width: 30%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap:  15px;
    }

    .footer-column a {
        padding: 9px;
        color: #fff;
        font-size: 17px;
        font-weight: 400;
    }


    .footer-column a:hover {
        background-color: #fff;
        color: #000;
    }

    .footer-col-logo {
        display: flex;
        align-items: center;
        flex-direction: row;
        gap: 10px;
    }

    .footer-col-logo img {
        width: 74px;
        height: 74px;
    }

    .footer-col-logo h3 {
        font-size: 26px;
        color: #fff;
        margin: 0;
    }

    .rund-footer {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer-column div {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .rund-footer h3 {
        font-size:18px;
        color: #fff;
        font-weight: 400;
        margin: 0;
        text-align: center;
    }

    .rund-footer p {
        color: #fff;
        font-size: 17px;
        font-weight: 400;
        margin: 0;
        text-align: center;
    }

    .rund-footer h4 {
        color: #fff;
        margin: 0;
    }

    .footer-col-img {
        width: 100%;
    }

    .footer-col-img img {
        width: 48%;
    }

    .logo-centr-link:hover {
        color: #000;
    }

    .section-wrap {
        display: flex;
        flex-direction: column-reverse;
    }

    .navbar-merch-bg {
        margin-top: 29px;
        margin-bottom: 43px;
        background-image: url( pics/thumbnails_header_6838037843af44.16551281.jpg);
        background-position: center;
        background-size: cover;
    }

    .nav-holder-bg {
        background-image: url( pics/graphics_header_6838037843afa5.26048907.jpg);
        background-position: center;
        background-size: cover;
    }

    .navbar-prod-overlay, .navbar-contt-overlay {
        padding-top: 43px;
        padding-bottom: 43px;
        background-color: #171616a9;
    }

    .navbar-prod-title, .nav-holder-title {
        font-size: 26px;
        font-weight: 400;
        color: #fff;
        text-align: center;
    }

    .navbar-prod-nav, .nav-holder-nav {
        font-size: 17px;
        font-weight: 400;
        color: #fff;
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .navbar-prod-nav a:hover, .nav-holder-nav a:hover {
        color: #fff;
        text-decoration: underline;
    }

    .main-merch-content {
        padding-top: 43px;
        padding-bottom: 43px;
        display: flex;
        flex-direction: column;
        gap: 43px;
    }

    .m-p-mediacontent {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 43px;
    }

    .m-p-mediacontent-img {
        width: 50%;
        object-fit: contain;
        height: auto;
        float: left;
        box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    }

    @media (min-width: 576px){
        .m-p-mediacontent-img{
            height: 181px;
        }
    }
    @media (min-width: 768px){
        .m-p-mediacontent-img{
            height: 321px;
        }
    }
    @media (min-width: 576px){
        .m-p-mediacontent-img{
            height: 370px;
        }
    }

    .m-p-mediacontent-info {
        width: 50%;
    }

    .mpm-title {
        font-size: 18px;
        font-weight: 400;
        margin-bottom: 43px;
        padding-bottom: 15px;
        border-bottom: 2px solid #464646;
    }

    .mpm-info-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .mpm-info-item  {
      background-color: #fff;
      border: 1px solid #1597BB;
      padding: 15px;
      padding-right: 35px;
      position: relative;
      transition: 0.5s;
      font-size: 17px;
      border-radius: 8px;
    }
    
    .mpm-info-item p {
      font-size: 18px;
      font-weight: 400;
      position: relative;
      left: 10px;
      margin: 0;
      padding: 0;
      transition: .5s;
      color: #1597BB;
    }
    
   
    .mpm-info-item:hover p {
      left: 9px;
      color: #fff
    }
    
    .mpm-info-item:hover {
      background-color: #1597BB;
    }

    .mpm-price {
        margin-top:  29px;
        margin-bottom:  29px;
        padding-top: 15px;
        padding-bottom: 15px;
        border-top: 2px solid #464646;
        border-bottom: 2px solid #464646;
        font-size: 18px;
        font-weight: 400;
        text-align: center;
        color: #1597BB;
    }

    .similar-article-block {
        padding-top: 43px;
        padding-bottom: 43px;
    }

    .similar-article-title {
        text-align: center;
        margin: auto;
        font-size: 18px;
        font-weight: 400;
        margin-bottom: 43px;
        padding-bottom: 15px;
        border-bottom: 2px solid #464646;
        width: 80%;
    }

    .similar-article-list {
        display: flex;
        flex-direction: row;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }

    .similar-article-card {
        width: 25%;
        display: flex;
        flex-direction: column-reverse;
        gap: 15px;
        border-radius: 0;
        overflow: hidden;
        box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    }

    .similar-article-img {
        width: 100%;
        height: 345px;
        position: relative;
    }

    .similar-article-img::before {
        content: '';
        position: absolute;
        display: block;
        width: 100%;
        height: 100%;
        background: #1597BB;
        opacity: 0.4;
        transition: all 350ms cubic-bezier(0, 0.5, 0.5, 1);
    }
    
    .similar-article-card:hover .similar-article-img::before  {
        background: transparent;
    }
   
    .similar-article-img img {
        width: 100%;
        height: 345px;
        object-fit: contain;
    }

    .similar-article-like {
        --bg-color: #fff;
        --main-color: #323232;
        width: 35px;
        height: 35px;
        border-radius: 100%;
        border: 2px solid var(--main-color);
        background-color: var(--bg-color);
        box-shadow: 9px 9px var(--main-color);
        font-size: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.2s; 
        cursor: default !important;
      }
      
      .similar-article-like:active {
        box-shadow: 0px 0px var(--main-color);
        transform: translate(3px, 3px);
      }
      
      .similar-article-like i {
        width: 20px;
        height: 20px;
        fill: var(--main-color);
      }

      .similar-article-text {
        padding: 20px 15px;
        display: flex;
        flex-direction: column;
        gap: 15px;
      }

      .similar-article-card-title {
        font-size: 18px;
        font-weight: 400;
        text-transform: capitalize;
        color: #000;
        margin: 0;
      }

      .similar-article-card-title:hover {
        color: #000;
        text-decoration: underline;
      }

      .similar-article-content {
        font-size: 14px;
        font-style: italic;
        margin: 0;
      }

      .similar-article-btnwrap {
        display: flex;
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: space-around;
      }

      .m-p-textcontent-title {
        font-size: 18px;
        font-weight: 400;
        text-align: center;
        letter-spacing: 1px;
        text-transform: uppercase;
      }

      .m-p-textcontent-txt {
        font-size: 17px;
        line-height: 1.3;
      }

      .cont-blanck {
        display: flex;
        flex-direction: column;
        gap:  29px;
        margin-top: 74px;
        padding:  43px  29px;
        border: 2px #a4a4a4;
        box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
        background-color: #cecdcd;
      }

      .cb-formbody {
        margin-top: 35px;
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      
      .cb-form-input {
        width: 80%;
        height: 60px;
        border-radius: 8px;
        background: white;
        margin-bottom: 15px;
        border: none;
        padding: 0 15px;
        font-weight: 400;
        font-size: 14px;
        color: #000;
        box-shadow: rgb(204, 219, 232) 3px 3px 9px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 9px 1px inset;
      }

      .cont-blanck-form .form-check {
        display: flex;
        flex-direction: row;
        align-items: center;
      }

      .cont-blanck-form .form-check .form-check-label {
        color: #000;
      }

      .cont-blanck-form .form-check .form-check-label a {
        color: #000;
      }

      .cont-blanck-form .form-check .form-check-label a:hover {
        color: #000;
        text-decoration: underline;
      }

      .cont-blanck-list {
        display: flex;
        gap: 15px;
        justify-content: center;
      }

      .order-stages-pic i::before, .cont-blanck-pic i::before, .similar-article-like i::before  {
        vertical-align: 0.875em;
      }

      .cont-blanck-item {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 15px;
        width: 30%;
    }

    .cont-blanck-item a{
        word-break: break-all;
    }

    .cont-blanck-pic {
        width: 103px;
        height: 103px;
        border-radius: 50%;
        padding: 10px;
        background-color: #000;
    }

    .cont-blanck-pic i {
        display: inline-block;
        width: 73px;
        height: 73px;
        font-size: 40px;
        color: #fff;
        border-radius: 50%;
        border: 2px dashed #fff;
        padding:  15px;
    }

    .cont-blanck-item p, .cont-blanck-item h4 {
        font-size: 18px;
        font-weight: 400;
        text-transform:  uppercase;
        text-align: center;
    }
    .animbanner-greetings p {
        font-size: 14px;
    }
    .mp-card-infoblock div {
        font-weight: 800;
    }
    @media (max-width: 768px){
        .header-centr-nav {
            flex-wrap: wrap !important;
        }
        .bloki-dlya-mp-wrap{
            flex-direction: column !important;
        }

        .marketplace-card{
            width: 100% !important;
        }
    }
        


    .button-1 {
        border-radius: 29px;
        text-transform: uppercase;
        font-style: normal;
        font-weight: 400;
        padding-left: 20px;
        padding-right: 20px;
        color: #fff;
        -webkit-clip-path: polygon(0 0,0 0,100% 0,100% 0,100% calc(100% - 15px),calc(100% - 15px) 100%,15px 100%,0 100%);
        clip-path: polygon(0 0,0 0,100% 0,100% 0,100% calc(100% - 15px),calc(100% - 15px) 100%,15px 100%,0 100%);
        height: 35px;
        font-size: 14px;
        line-height: 12px;
        letter-spacing: 1.2px;
        transition: .2s .1s;
        background-image: linear-gradient(90deg,#1c1c1c,#6220fb);
        border: 0 solid;
        overflow: hidden;
      }
      
      .button-1:hover {
        cursor: pointer;
        transition: all .3s ease-in;
        padding-right: 29px;
        padding-left: 29px;
      }
      
      .button-2 {
       padding: 15px 35px;
       border-radius: 60px;
       border: 0;
       background-color: white;
       box-shadow: rgba(136, 165, 191, 0.48) 6px 2px  10px 0px, rgba(255, 255, 255, 0.8) -6px -2px  10px 0px;
       letter-spacing: 1.5px;
       text-transform: uppercase;
       font-size: 14px;
       transition: all .5s ease;
      }
      
      .button-2:hover {
       letter-spacing: 3px;
       background-color: hsl(261deg 80% 48%);
       color: hsl(0, 0%, 100%);
       box-shadow: rgb(93 24 220) 0px 7px 29px 0px;
      }
      
      .button-2:active {
       letter-spacing: 3px;
       background-color: hsl(261deg 80% 48%);
       color: hsl(0, 0%, 100%);
       box-shadow: rgb(93 24 220) 0px 0px 0px 0px;
       transform: translateY(9px);
       transition: 100ms;
      }
      
      .button-3 {
        --border-color: linear-gradient(-45deg, #ffae00, #7e03aa, #00fffb);
        --border-width: .125em;
        --curve-size: .5em;
        --blur: 29px;
        --bg: #080312;
        --color: #afffff;
        color: var(--color);
        position: relative;
        isolation: isolate;
        display: inline-grid;
        place-content: center;
        padding: 10px 15px;
        font-size: 17px;
        border: 0;
        text-transform: uppercase;
        box-shadow: 10px 10px 15px rgba(0, 0, 0, .6);
        clip-path: polygon(
            0% var(--curve-size),
            var(--curve-size) 0,
            100% 0,
            100% calc(100% - var(--curve-size)),
            calc(100% - var(--curve-size)) 100%,
            0 100%);
        transition: color 250ms;
      }
      
      .button-3::after,
      .button-3::before {
        content: '';
        position: absolute;
        inset: 0;
      }
      
      .button-3::before {
        background: var(--border-color);
        background-size: 300% 300%;
        animation: move-bg7234 5s ease infinite;
        z-index: -2;
      }
      
      @keyframes move-bg7234 {
        0% {
          background-position: 31% 0%
        }
      
        50% {
          background-position: 70% 100%
        }
      
        100% {
          background-position: 31% 0%
        }
      }
      
      .button-3::after {
        background: var(--bg);
        z-index: -1;
        clip-path: polygon(
                  var(--border-width) 
                  calc(var(--curve-size) + var(--border-width) * .5),
                  calc(var(--curve-size) + var(--border-width) * .5) var(--border-width),
                  calc(100% - var(--border-width)) 
                  var(--border-width),
                  calc(100% - var(--border-width)) 
                  calc(100% - calc(var(--curve-size) + var(--border-width) * .5)),
                  calc(100% - calc(var(--curve-size) + var(--border-width) * .5)) calc(100% - var(--border-width)),
                  var(--border-width) calc(100% - var(--border-width)));
        transition: clip-path 500ms;
      }
      
      .button-3:where(:hover, :focus)::after {
        clip-path: polygon(
                      calc(100% - var(--border-width)) 
                      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
                      calc(100% - var(--border-width))
                      var(--border-width),
                      calc(100% - var(--border-width))
                       var(--border-width),
                      calc(100% - var(--border-width)) 
                      calc(100% - calc(var(--curve-size) + var(--border-width) * .5)),
                      calc(100% - calc(var(--curve-size) + var(--border-width) * .5)) 
                      calc(100% - var(--border-width)),
                      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
                      calc(100% - var(--border-width)));
        transition: 200ms;
      }
      
      .button-3:where(:hover, :focus) {
        color: #fff;
      }
      
      .button-4 {
        height: 35px;
        font-size: 14px;
        cursor: pointer;
        background-color: #171717;
        color: #fff;
        border: none;
        border-radius: 8px;
        transition: all .4s;
       }
       
       .button-4:hover {
        border-radius: 8px;
        transform: translateY(-10px);
        box-shadow: 0 7px 0 -2px #f85959,
         0 15px 0 -4px #39a2db,
         0 15px 10px -3px #39a2db;
       }
       
       .button-4:active {
        transition: all 0.2s;
        transform: translateY(-9px);
        box-shadow: 0 2px 0 -2px #f85959,
         0 8px 0 -4px #39a2db,
         0 10px 10px -3px #39a2db;
       }
      
       .button-5 {
        align-items: center;
        appearance: none;
        background-color: #EEF2FF;
        border-radius: 9px;
        border-width: 2px;
        border-color: #536DFE;
        box-shadow: rgba(83, 109, 254, 0.2) 0 2px 4px, rgba(83, 109, 254, 0.15) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
        box-sizing: border-box;
        color: #536DFE;
        cursor: pointer;
        display: inline-flex;
        height: 60px;
        justify-content: center;
        line-height: 1.3;
        list-style: none;
        overflow: hidden;
        padding-left: 20px;
        padding-right: 20px;
        position: relative;
        text-align: center;
        text-decoration: none;
        transition: box-shadow 0.15s, transform 0.15s;
        user-select: none;
        -webkit-user-select: none;
        touch-action: manipulation;
        white-space: nowrap;
        will-change: box-shadow, transform;
        font-size: 18px;
      }
      
      .button-5:focus {
        outline: none;
        box-shadow: #D6D6E7 0 0 0 1.5px inset, rgba(83, 109, 254, 0.4) 0 2px 4px, rgba(83, 109, 254, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
      }
      
      .button-5:hover {
        box-shadow: rgba(83, 109, 254, 0.3) 0 4px 8px, rgba(83, 109, 254, 0.2) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
        transform: translateY(-2px);
      }
      
      .button-5:active {
        box-shadow: #D6D6E7 0 3px 7px inset;
        transform: translateY(2px);
      }
    
      @media (max-width: 1200px){
        .benefitblock {
            flex-direction: column !important;
        }
    
        .benefitblock-text, .benefitblock-media {
            width: 100%;
        }
    
        .company-info {
            flex-direction: column-reverse;
        }
    
        .company-info-media, .company-info-text {
            width: 100%;
        }
    }
    

    @media (max-width: 992px){
        .site-map-navlink, .dropdown .dropbtn {
            font-size: 14px;
            padding: 0px 10px;
        }
    
        .site-map-navlink::before, .dropbtn::before {
            height: 20px;
        }
    
        .marketplace-block-wrap {
            flex-direction: column !important;
        }
    
        .marketplace-block {
            flex-direction: column;
        }
    
        .marketplace-block-wrap {
            width: 100% !important;
        }
    
        .rund-qa-form-part {
            flex-direction: column !important;
        }
    
        .rund-qa, .rund-form-part {
            width: 100%;
        }
    
        .order-stages-item {
            flex-direction: column !important;
        }
    
        .order-stages-item p {
            font-size: 14px;
        }
    
        .animbanner {
            height: 900px;
            flex-direction: column;
        }
    
        .animbanner-left, .animbanner-right, .animbanner-center {
            width: 100%;
            height: 321px;
        }
    
        @keyframes move {
            0% {
              top: 0px; 
            }
            25% {
              top: -300px;
            }
            50% {
              top: -600px;
            }
            75% {
              top: -890px;
            }
            100% {
              top: -870px;
            }
    }
    
        @keyframes move-revers {
            0% {
              top: -870px ; 
            }
            25% {
              top: -890px;
            }
            50% {
              top: -600px;
            }
            75% {
              top: -300px;
            }
            100% {
              top: 0px;
            }
    }
    
        .footer-col {
            flex-direction: column;
        }
    
        .footer-column {
            width: 100%;
            flex-direction: row;
            justify-content: space-between;
        }
    
        .rund-footer, .footer-column div, .footer-col-img {
            width: 50%;
        }
    
        .similar-article-list {
            flex-wrap: wrap;
            gap: 15px;
        }
    
        .similar-article-card {
            width: 48%;
            flex-direction: column !important;
        }
    
        .bloki-dlya-mp, .dlya-pokypki-boxa{
            flex-direction: column !important;
        }
    
        .bloki-dlya-mp-wrap, .dlya-pokypki-single{
            width: 100% !important;
        }
    
    }
    
    
    @media(max-width: 768px){
        .header-centr-nav {
            gap: 0;
        }
    
        .site-map-navlink, .dropdown .dropbtn {
            font-size: 12px;
        }
    
        .animbanner-greetings p {
            font-size: 14px;
            margin: 0;
        }
    
        .order-stages-list {
            flex-direction: column;
        }
    
        .order-stages-item {
            width: 100% !important;
        }
    
        .mpm-info-item p {
            font-size: 12px;
        }
    
        .mpm-title {
            margin-bottom: 20px;
        }
    
        .m-p-mediacontent {
            flex-direction: column-reverse;
        }
    
        .m-p-mediacontent-info {
            width: 100%;
        } 
    
        .cont-blanck-list {
            flex-direction: column;
        }
    
        .cont-blanck-item {
            width: 100%;
        }
    }
    
    @media(max-width: 576px){
    
        .header-centr-nav {
            gap: 10px;
            flex-wrap: wrap;
        } 
        
        .animbanner-center-overlay {
            padding-bottom: 10px;
        }
    
        .animbanner-greetings {
            padding: 10px 15px;
        }
    
        .animbanner-greetings p {
            font-size: 12px;
            font-weight: 400;
        }
    
    
        .company-info-title, .benefitblock-title, .marketplace-title, .rund-qa-title, .order-stages-title {
            font-size: 26px;
        }
    
        .benefitlist-item {
            flex-direction: column;
        }
    
        .marketplace-card {
            flex-direction: column;
        }
    
        .mp-card-img {
            width: 100% !important;
        }
    
        .mp-card-text {
            padding-top: 0;
            width: 100% !important;
        }
    
        .mp-card-infoblock {
            flex-direction: column;
            align-items: center;
            margin-bottom: 15px;
        }
    
        .r-f-body {
            padding: 15px;
        }
    
        .rund-qa-form-part {
            padding: 0;
            padding-top: 29px;
            padding-bottom: 29px;
        }
    
        label, label a {
            font-size: 12px;
        }
    
        .footer-column {
            flex-direction: column !important;
        }
    
        .rund-footer, .footer-column div, .footer-col-img {
            width: 100%;
        }
    
        .button-2 {
            padding: 17px 18px !important;
        }
    
        .navbar-prod-title, .nav-holder-title {
            font-size: 24px;
        }
    
        .similar-article-card {
            width: 90%;
        }
    
        .dropdown-content {
            right: 0;
            width: 240px;
        }
    
        .dropdown-content a {
            width: 240px;
        }
    }
    

.prvc-container{
    padding: 103px 20px; 
    overflow: hidden;
}


.map{
    iframe{
        border: none;
    }
}

    
.header{
    overflow: hidden;
}

  

   