﻿:root {
    --green-main: #56A050;
    --white: #fff;
    --blue-main: #386DD3;
    --green-middlegray: #ECECEC;
    --green-gray: #8A8A8A;
    --blue-dark: #13314D;
    --green-light: #96CC6B;
}

html {
    font-family: -apple-system, BlinkMacSystemFont, Inter, Roboto, Helvetica, Arial, sans-serif;
}

a {
    text-decoration: none !important;
}

.notfoundOfferOrCompany {
    grid-column: 1 / -1; /* Растягиваем на все колонки сетки */
    display: flex; /* Используем flexbox для выравнивания элементов */
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.modal {
    /* top: 15% !important; */
    z-index: 9999 !important;
}

#photo-preview {
    height: 250px;
    object-fit: cover;
}

@keyframes square-spin {
    25% {
        transform: perspective(100px) rotateX(180deg) rotateY(0deg);
    }

    50% {
        transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    }

    75% {
        transform: perspective(100px) rotateX(0deg) rotateY(180deg);
    }

    100% {
        transform: perspective(100px) rotateX(0deg) rotateY(0deg);
    }
}

.square-spin {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

    .square-spin > div {
        width: 100px;
        height: 100px;
        border-radius: 15px;
        background: url("/images/justlogo.svg");
        animation: 3s cubic-bezier(0.09, 0.57, 0.49, 0.9) 0s infinite normal none running square-spin;
    }

.roboto-thin {
    font-family: Roboto, sans-serif;
    font-weight: 100;
    font-style: normal;
}

.roboto-light {
    font-family: Roboto, sans-serif;
    font-weight: 300;
    font-style: normal;
}

.roboto-regular {
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.roboto-medium {
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-style: normal;
}

.roboto-bold {
    font-family: Roboto, sans-serif;
    font-weight: 700;
    font-style: normal;
}

.roboto-black {
    font-family: Roboto, sans-serif;
    font-weight: 900;
    font-style: normal;
}

.roboto-thin-italic {
    font-family: Roboto, sans-serif;
    font-weight: 100;
    font-style: italic;
}

.roboto-light-italic {
    font-family: Roboto, sans-serif;
    font-weight: 300;
    font-style: italic;
}

.roboto-regular-italic {
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-style: italic;
}

.roboto-medium-italic {
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-style: italic;
}

.roboto-bold-italic {
    font-family: Roboto, sans-serif;
    font-weight: 700;
    font-style: italic;
}

.roboto-black-italic {
    font-family: Roboto, sans-serif;
    font-weight: 900;
    font-style: italic;
}

.text-blue {
    color: rgb(56, 109, 211);
}

.fs16 {
    font-size: 16px;
}

.fs20 {
    font-size: 20px;
}

.f-bold {
    font-weight: bold;
}

.f-light {
    font-weight: 300;
    font-size: 12px;
    line-height: 200%;
    color: #444;
}

.mb-25px {
    margin-bottom: 25px;
}

@media (max-width: 767px) {

    
.shiny::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  background: linear-gradient(to bottom, rgba(229, 172, 142, 0), rgba(255,255,255,0.5) 50%, rgba(229, 172, 142, 0));
  transform: rotateZ(60deg) translate(-5em, 7.5em);
}

.shiny:after, .shiny:after { 
  animation: sheen 2s forwards;
  animation-iteration-count:infinite;
   animation-fill-mode: forwards; 
}

@keyframes sheen {
  100% {
    transform: rotateZ(60deg) translate(1em, -9em);
  }
}
.shiny {
  background: #ffffff;
  color: #4b7fe4;
  font-size: 14px;
  border-radius: 0.7em;
  padding: 0.5em 1em;
  overflow: hidden;
  line-height: 32px;
  position: absolute;
  bottom: 70px;
  width: 92%;
  text-align: center;
}

    
    .modal-information-auth {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        text-align: center;
        padding: 30px;
    }
    .app-container {
        margin-top: 64px;
    }

    .agentCard.post {
        height: 183px;
        width: 793px;
        padding: 0px;
        border: 0px;
        border-radius: 20px;
    }

        .agentCard.post .line {
            float: left;
            height: 423px;
            border-radius: 15px;
            background-image: linear-gradient(90deg, rgb(238, 238, 238) 0px, rgb(233, 233, 233) 40px, rgb(238, 238, 238) 80px);
            background-size: 793px;
            animation: 2.6s linear 0s infinite normal none running shine-lines-agent;
        }

        .agentCard.post .avatar + .line {
            width: 800px;
        }

        .agentCard.post .line ~ .line {
            background-color: rgb(221, 221, 221);
        }

    .programmOffer.post {
        height: 277px;
        width: auto;
    }

        .programmOffer.post .line {
            float: left;
            height: 277px;
            border-radius: 15px;
            background-image: linear-gradient(90deg, rgb(238, 238, 238) 0px, rgb(233, 233, 233) 40px, rgb(238, 238, 238) 80px);
            background-size: 600px;
            animation: 1.6s linear 0s infinite normal none running shine-lines;
        }

        .programmOffer.post .avatar + .line {
            width: 100px;
        }

        .programmOffer.post .line ~ .line {
            background-color: rgb(221, 221, 221);
        }

    @keyframes shine-lines-agent {
        0% {
            background-position: -100px center;
        }

        40%, 100% {
            background-position: 800px center;
        }
    }

    @keyframes shine-lines {
        0% {
            background-position: -100px center;
        }

        40%, 100% {
            background-position: 400px center;
        }
    }

    @keyframes shine-avatar {
        0% {
            background-position: -32px center;
        }

        40%, 100% {
            background-position: 408px center;
        }
    }

    .bg-blue-gradient-v1 {
        background: linear-gradient(95deg, rgb(60, 116, 229) 0%, rgb(116, 162, 255) 100%) !important;
    }

    .bg-green-gradient-v1 {
        background: linear-gradient(rgb(131, 206, 147) 0%, rgb(9, 76, 59) 100%) !important;
    }

    body {
        background: rgb(245, 245, 245) !important;
        color: rgb(68, 68, 68) !important;
        font-family: -apple-system, BlinkMacSystemFont, Inter, Roboto, Helvetica, Arial, sans-serif !important;
    }

    hr {
        margin-top: 1rem;
        margin-bottom: 1rem;
        border-width: 1px 0px 0px;
        border-right-style: initial;
        border-bottom-style: initial;
        border-left-style: initial;
        border-right-color: initial;
        border-bottom-color: initial;
        border-left-color: initial;
        border-image: initial;
        border-top-style: solid;
        border-top-color: rgba(0, 0, 0, 0.1);
    }

    input[type="checkbox"] {
        display: none;
    }

        input[type="checkbox"] + label {
            position: relative;
            padding-left: 30px;
            cursor: pointer;
            font-size: 12px;
            line-height: 25px;
            font-weight: 400;
        }

            input[type="checkbox"] + label::before {
                content: "";
                position: absolute;
                left: 0px;
                top: 0px;
                width: 24px;
                height: 24px;
                border-radius: 5px;
                background: rgb(245, 245, 245);
            }

        input[type="checkbox"]:checked + label::before {
            content: "✓";
            font-size: 16px;
            line-height: 24px;
            text-align: center;
            color: rgb(152, 152, 152);
        }

    .mob-catalog-subblock-checks input[type="checkbox"] + label::before {
        background: rgb(255 255 255);
        border-radius: 5px;
        border: 1px solid var(--green-gray);
    }

    .headerMenu {
        background: rgb(245 245 245);
        border-radius: 0;
        height: 64px;
        display: flex;
        align-items: center;
        margin-bottom: 8px;
        position: fixed;
        width: 100%;
        margin-top: -64px;
        z-index: 9999;
        /* box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 13px 0px; */
        justify-content: space-between;
    }

    .headerMenu-logo {
        display: flex;
        justify-content: flex-start;
        align-items: start;
        text-align: left;
    }

    .headerMenuContainer {
        width: 100%;
        display: none;
        margin: 0px auto;
        flex-flow: row;
        justify-content: space-between;
        align-items: center;
    }

    .headerMenu-logo img {
        width: 170px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
    }

    .headerMenu-items-container {
        display: none;
        position: relative;
    }

    .headerMenu-items {
        z-index: 9;
        position: relative;
        display: flex;
    }

        .headerMenu-items .switch {
            position: relative;
            width: 350px;
            display: flex;
            border: 1px solid rgba(255, 255, 255, 0.063);
            border-radius: 10px;
            justify-content: center;
            align-items: center;
            font-size: 14px;
            line-height: 8.75px;
            background: rgb(106, 155, 251);
            box-shadow: rgba(0, 0, 0, 0.12) 0px 0px 10px inset;
            overflow: hidden;
        }

            .headerMenu-items .switch::before {
                content: "  ";
                position: absolute;
                left: 0px;
                z-index: -1;
                width: 100%;
                height: 3rem;
                background: rgb(255, 255, 255);
                border-radius: 30px;
            }

        .headerMenu-items .switch__label {
            display: inline-block;
            width: 120px;
            cursor: pointer;
            transition: color 200ms ease-out 0s;
            text-align: center;
            padding: 15px;
            position: relative;
            z-index: 1;
            font-weight: 400;
            color: rgb(255, 255, 255);
        }

        .headerMenu-items .switch input[type="radio"]:checked + .switch__label {
            color: rgb(56, 109, 211);
            font-weight: 500;
            transition: all 0.3s ease 0s;
        }

        .headerMenu-items .switch__label:hover {
            color: white;
            transition: all 0.3s ease 0s;
        }

        .headerMenu-items .switch__indicator_top {
            height: 38.5px;
            line-height: 8.75px;
            position: absolute;
            top: 0px;
            left: 0px;
            background: rgb(7, 7, 7);
            border-radius: 8px;
            transition: transform 600ms cubic-bezier(0.02, 0.94, 0.09, 0.97) 0s, background 300ms cubic-bezier(0.17, 0.67, 0.14, 1.03) 0s;
            transform: translate3d(1rem, 0px, 0px);
        }

        .headerMenu-items .switch input#h_isonce2:checked ~ .switch__indicator_top {
            background: rgb(255, 255, 255);
            transform: translate3d(0rem, 0px, 0px);
            width: 115px;
            box-shadow: rgba(0, 0, 0, 0.28) 0px 0px 10px;
        }

        .headerMenu-items .switch input#h_ismany2:checked ~ .switch__indicator_top {
            background: rgb(255, 255, 255);
            width: 115px;
            box-shadow: rgba(0, 0, 0, 0.28) 0px 0px 10px;
            transform: translate3d(118px, 0px, 0px) !important;
        }

        .headerMenu-items .switch input#h_isinterval2:checked ~ .switch__indicator_top {
            background: rgb(255, 255, 255);
            width: 110px;
            box-shadow: rgba(0, 0, 0, 0.28) 0px 0px 10px;
            transform: translate3d(238px, 0px, 0px) !important;
        }

        .headerMenu-items .switch input[type="radio"]:not(:checked),
        .switch input[type="radio"]:checked {
            display: none;
        }

        .headerMenu-items .swiper-container-category-parent {
            overflow: hidden;
            padding-left: 0px;
            margin-right: 40px;
            margin-bottom: 48px;
        }

        .headerMenu-items .btn-accent {
            background: rgb(150, 204, 107);
            margin-left: 8px;
            padding: 8px 15px;
            border-radius: 10px;
            color: rgb(255, 255, 255);
            text-decoration: none;
            display: flex;
            align-items: center;
            font-size: 14px;
        }

    .headerMenu-rightmenu {
        display: flex;
        font-size: 24px;
        align-items: center;
        margin-right: 5px;
    }

        .headerMenu-rightmenu ul {
            display: flex;
            align-items: center;
            flex-direction: row;
            list-style: none;
            margin-bottom: 0px;
        }

            .headerMenu-rightmenu ul li {
                line-height: 16.59px;
                font-size: 14px;
                font-weight: 400;
                display: flex;
                align-items: center;
                margin-left: 20px;
            }

                .headerMenu-rightmenu ul li a {
                    color: rgb(68, 68, 68);
                    text-decoration: none;
                    display: flex;
                    align-items: center;
                }

                    .headerMenu-rightmenu ul li a i {
                        margin-right: 0px;
                        font-size: 20px;
                    }

                        .headerMenu-rightmenu ul li a i.iconoir-profile-circle {
                            margin-right: 8px;
                            font-size: 20px;
                        }

    .headerAvatar {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        margin-right: 8px;
        border: 1.5px solid rgb(68, 68, 68);
        object-fit: cover;
    }

    .headerMenuContainerMob {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 0 16px;
        justify-content: space-between;
    }

        .headerMenuContainerMob .headerMobButton {
            display: flex;
            color: var(--bs-dark);
            width: 40px;
            height: 40px;
            background: #fff;
            border-radius: 10px;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-right: 8px;
        }

            .headerMenuContainerMob .headerMobButton:last-child {
                margin-right: 0px
            }

    .headerMobLogo {
        width: 131px;
        padding: 12px 8px;
        flex-grow: 1;
    }

        .headerMobLogo img {
            width: 131px;
        }

    .mobileMenu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: rgb(245 245 245);
        transition: left 0.3s ease;
        z-index: 11;
        padding-top: 90px;
        display: flex;
        flex-direction: column;
    }

        .mobileMenu a {
            border-radius: 10px;
            padding: 12px 16px;
            width: 360px;
            height: 41px;
            font-weight: 500;
            font-size: 16px;
            color: var(--dark);
        }

    .showMenu {
        left: 0;
    }


    .company-offer-filter {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: rgb(255 255 255);
        transition: left 0.3s ease;
        z-index: 11;
        padding: 90px 16px 16px 16px;
        display: flex;
        flex-direction: column;
        border-radius: 15px;
        overflow-y: scroll;
    }

        .company-offer-filter .dropdown {
            width: 100% !important;
            margin-bottom: 8px;
            border-radius: 10px;
            background: var(--green-middlegray);
        }

        .company-offer-filter .form-control {
            background: #ECECEC;
            border-radius: 10px;
        }

            .company-offer-filter .form-control:first-child {
                width: 97%;
            }

        .company-offer-filter .btn-action {
            width: 100%;
            display: flex;
            align-items: center;
            font-weight: 400;
            font-size: 12px;
            text-align: center;
            color: var(--white);
            background: linear-gradient(275deg, #56a050 0%, #96cc6b 94.46%);
        }

        .company-offer-filter .btn-clear-mob-filter {
            display: flex;
            align-items: center;
            font-weight: 400;
            font-size: 12px;
            text-align: center;
            justify-content: center;
            color: var(--green-main);
        }

    .mob-catalog-subblock p {
        margin-bottom: 12px;
    }

    .mob-catalog-subblock-checks {
        display: grid;
        margin-bottom: 12px;
    }

        .mob-catalog-subblock-checks.mob-catalog-subblock-checks-2col {
            grid-template-columns: 1fr 1fr;
        }

        .mob-catalog-subblock-checks.mob-catalog-subblock-checks-3col {
            grid-template-columns: 1fr 1fr 1fr;
        }




    .showMenu {
        left: 0;
    }



    .contactFooter {
        padding: 28px 16px;
        background: rgb(19, 49, 77);
        color: rgb(255, 255, 255);
        border-radius: 12px 12px 0px 0px;
        width: 100%;
        margin: 0px auto;
        font-size: 10px;
    }

    footer .footer-logo {
        margin-bottom: 32px;
        width: 150px;
    }

    .footer-list {
        padding: 0px;
        list-style-type: none;
        margin-bottom: 0px;
    }

        .footer-list li {
            margin-bottom: 24px;
        }

        .footer-list a {
            color: rgb(255, 255, 255);
            text-decoration: none;
            font-size: 12px;
        }

    .writeUsBlock {
        display: flex;
        flex-direction: column;
        font-size: 18px;
        place-content: flex-end center;
        align-items: flex-end;
    }

        .writeUsBlock .btn {
            background: rgb(84, 136, 240);
            color: rgb(255, 255, 255);
            border-radius: 10px;
            padding: 12px 20px;
            width: 136px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px !important;
        }

    .social-block {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        margin-bottom: 25px;
    }

        .social-block .social-icon {
            font-size: 21px;
            border-radius: 100%;
            background: rgb(255, 255, 255);
            height: 32px;
            width: 32px;
            margin: 5px;
            color: rgb(19, 49, 77);
            display: flex;
            align-items: center;
            place-content: center;
            text-decoration: none;
            margin-right: 32px;
        }

    .social-rect {
        border-radius: 25% !important;
    }

    .agreeBlock {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        margin-bottom: 8px;
    }

        .agreeBlock label {
            margin-left: 0px;
        }

    .switch {
        position: relative;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        font-size: 12px;
        line-height: 18.75px;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        width: 100%;
        height: 40px;
    }

        .switch::before {
            content: "  ";
            position: absolute;
            left: 0px;
            z-index: -1;
            width: 100%;
            height: 3rem;
            background: rgb(0, 0, 0);
            border-radius: 30px;
        }

    .switch__label {
        cursor: pointer;
        transition: color 200ms ease-out 0s;
        text-align: center;
        position: relative;
        z-index: 1;
        border-radius: 10px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .switch__label:nth-child(n) {
            width: 85px;
        }

        .switch__label:nth-child(2n) {
            width: 82px;
        }

        .switch__label:nth-child(3n) {
            width: 66px;
        }

    .switch input[type="radio"]:checked + .switch__label {
        color: rgb(56, 109, 211);
        font-weight: 500;
        transition: all 0.3s ease 0s;
    }

    .switch__label:hover {
        color: white;
        transition: all 0.3s ease 0s;
    }

    .switch__indicator {
        height: 39px;
        line-height: 18.75px;
        position: absolute;
        top: 0px;
        left: 0px;
        background: blue;
        border-radius: 10px;
        transition: transform 600ms cubic-bezier(0.02, 0.94, 0.09, 0.97) 0s, background 300ms cubic-bezier(0.17, 0.67, 0.14, 1.03) 0s;
        transform: translate3d(1rem, 0px, 0px);
    }

    .switch input#isonce2:checked ~ .switch__indicator {
        background: rgb(255, 255, 255);
        transform: translate3d(0rem, 0px, 0px);
        width: 38%;
    }

    .switch input#ismany2:checked ~ .switch__indicator {
        background: rgb(240, 240, 240);
        transform: translate3d(100%, 0px, 0px);
        width: 35%;
    }

    .switch input#isinterval2:checked ~ .switch__indicator {
        background: rgb(240, 240, 240);
        transform: translate3d(203%, 0px, 0px);
        width: 33%;
    }

    .switch input[type="radio"]:not(:checked),
    .switch input[type="radio"]:checked {
        display: none;
    }

    .swiper-container-category-parent {
        overflow: hidden;
        padding-left: 0px;
        margin-right: 40px;
        margin-bottom: 15px;
    }

    .swiper-slidex {
        width: auto !important;
        margin-right: 31px !important;
    }

    .swiper-slide-review {
        width: auto !important;
        margin-right: 20px !important;
    }

    .swiper-container-reviews-parent {
        overflow: hidden;
        padding-left: 0px;
        margin-right: 0px;
        margin-bottom: 48px;
    }

    .btn-pos {
        display: flex;
        justify-content: space-around;
        flex-wrap: nowrap;
        align-items: center;
        white-space: nowrap;
        margin: 5px 5px 5px 0px !important;
        font-weight: 400 !important;
        font-size: 10px !important;
        color: var(--green-gray) !important;
    }

        .btn-pos input {
            visibility: hidden;
            position: absolute;
            clip: rect(0px, 0px, 0px, 0px);
            pointer-events: none;
        }

        .btn-pos.active {
            border: 0.40px solid var(--green-middlegray);
            border-radius: 5px;
            padding: 8px 12px;
            background: var(--green-middlegray);
            font-weight: 600 !important;
            color: var(--blue-dark) !important;
        }

    .swiper-button-prev-unique {
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: center center;
        position: absolute;
        inset: auto 60px -30px auto;
        height: var(--swiper-navigation-size);
        margin-top: calc(-1 * var(--swiper-navigation-size)/ 2);
        z-index: 10;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--swiper-navigation-color, var(--swiper-theme-color));
        width: 45px;
        border: 2px solid rgb(255, 255, 255);
        border-radius: 50px;
        background-image: url("/images/MainPage/Group 31.svg") !important;
    }

    .swiper-button-prev-cat {
        font-weight: bold;
        font-size: 25px;
        border: 2px solid rgba(115, 115, 115, 0.1);
        border-radius: 5px;
        background: rgb(56, 109, 211);
        transform: rotate(45deg);
        top: 103px !important;
        color: rgb(255, 255, 255) !important;
        left: -71px !important;
        width: 40px !important;
        height: 40px !important;
        display: none !important;
    }

    .swiper-button-next.swiper-button-disabled,
    .swiper-button-prev.swiper-button-disabled {
        cursor: auto;
        pointer-events: none;
        opacity: 0 !important;
    }

    .swiper-button-prev-cat i {
        transform: rotate(315deg);
    }

    .swiper-button-prev::after {
        display: none;
    }

    .swiper-button-next-unique {
        rotate: 180deg;
        position: absolute;
        bottom: -30px;
        top: auto;
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: center center;
        height: var(--swiper-navigation-size);
        margin-top: calc(-1 * var(--swiper-navigation-size)/ 2);
        z-index: 10;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--swiper-navigation-color, var(--swiper-theme-color));
        right: 0px;
        width: 45px;
        border: 2px solid rgb(255, 255, 255);
        border-radius: 50px;
        background-image: url("/images/MainPage/Group 31.svg") !important;
    }

    .swiper-button-next-cat {
        font-weight: bold;
        font-size: 25px;
        border: 2px solid rgba(115, 115, 115, 0.1);
        border-radius: 5px;
        background: rgb(56, 109, 211);
        transform: rotate(45deg);
        top: 103px !important;
        color: rgb(255, 255, 255) !important;
        right: -50px !important;
        width: 40px !important;
        height: 40px !important;
        display: none !important;
    }

        .swiper-button-next-cat i {
            transform: rotate(-45deg);
        }

    .swiper-button-next::after {
        display: none;
    }

    .swiper-button-next-rev {
        font-weight: bold;
        font-size: 25px;
        border: 2px solid rgba(115, 115, 115, 0.1);
        border-radius: 5px;
        background: rgb(56, 109, 211);
        transform: rotate(45deg);
        top: 30px !important;
        color: rgb(255, 255, 255) !important;
        right: 15px !important;
        width: 40px !important;
        height: 40px !important;
        display: none !important;
    }

        .swiper-button-next-rev i {
            transform: rotate(-45deg);
        }

    .swiper-button-prev-rev {
        font-weight: bold;
        font-size: 25px;
        border: 2px solid rgba(115, 115, 115, 0.1);
        border-radius: 5px;
        background: rgb(56, 109, 211);
        transform: rotate(45deg);
        left: revert !important;
        top: 30px !important;
        color: rgb(255, 255, 255) !important;
        right: 91px !important;
        width: 40px !important;
        height: 40px !important;
        display: none !important;
    }

        .swiper-button-prev-rev i {
            transform: rotate(315deg);
        }

    .swiper-button-prev,
    .swiper-container-rtl .swiper-button-prev {
        right: auto;
        width: 40px !important;
    }

    .otherSides {
        display: flex;
        position: relative;
        justify-content: space-between;
    }

    .s2d {
        color: rgb(182, 182, 182);
        display: flex;
        align-items: flex-end;
        margin-left: 12px;
    }

    .custom-popover {
        display: none;
        position: absolute;
        background-color: rgb(245, 245, 245);
        box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px;
        z-index: 1000;
        border-radius: 15px;
        padding: 20px;
        width: 300px;
    }

        .custom-popover dl {
            display: flex;
            place-items: flex-start stretch;
            place-content: stretch space-around;
            flex-flow: column;
        }

    .custom-popover-condition {
        margin-bottom: 12px;
        background: linear-gradient(95deg, rgb(60, 116, 229) 0%, rgb(116, 162, 255) 100%);
        color: rgb(255, 255, 255);
        padding: 15px;
        border-radius: 15px;
    }

    .custom-popover a {
        border: none;
        padding: 0px;
        text-decoration: none;
        font-size: 12px;
        text-align: center;
        display: flex;
        justify-content: center;
        font-weight: 500;
    }

    .custom-popover-info {
        display: flex;
        justify-content: space-between;
        margin-bottom: 12px;
    }

        .custom-popover-info b {
            font-weight: 700;
            color: rgb(56, 109, 211);
        }

    h2 {
        font-size: 28px;
        font-weight: 600 !important;
    }

    .mainBlock {
        height: 584px;
        background: url("/images/design/first_image_mob.webp") rgb(166, 166, 166);
        background-size: cover;
        display: flex;
        flex-direction: column;
        border-radius: 30px;
        place-content: center;
        align-items: center;
        color: rgb(255, 255, 255);
        width: 100%;
        padding: 16px;
        margin: 0px auto 20px;
        position: relative;
    }

        .mainBlock .deviz {
            font-size: 14px;
            line-height: 23.7px;
            position: absolute;
            top: 192px;
            text-transform: uppercase;
        }

        .mainBlock h1 {
            font-weight: 700;
            font-size: 32px;
            line-height: 125%;
            text-transform: uppercase;
            text-align: center;
            color: var(--white);
            position: absolute;
            top: 90px;
            left: 14px;
            width: 92%;
        }

    .mainBlockCategory {
        display: flex;
        align-items: center;
        flex-direction: row;
        position: absolute;
        top: 237px;
        left: 16px;
        justify-content: center;
        width: 92%;
    }

        .mainBlockCategory .btn-group-radio {
            width: 100%;
            min-width: 270px;
            background: rgba(241, 244, 246, 0);
            border-radius: 15px;
            border: 1px solid rgb(211, 211, 211);
        }

            .mainBlockCategory .btn-group-radio label {
                padding: 20px 30px;
                font-family: Roboto;
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                letter-spacing: -0.01em;
                color: rgb(255, 255, 255);
                width: 50%;
                margin-bottom: 0rem;
                border-radius: 15px !important;
            }

        .mainBlockCategory .btn-check:checked + .btn {
            transition: all 0.5s ease 0s;
            font-family: Roboto;
            font-style: normal;
            font-weight: 400;
            font-size: 16px;
            letter-spacing: -0.01em;
            border-radius: 15px;
            color: rgb(0, 0, 0);
            box-shadow: rgba(0, 0, 0, 0.07) 0px 4px 12px;
            border: rgba(255, 255, 255, 0);
            background: rgb(255, 255, 255) !important;
        }

        .mainBlockCategory .btn-check + .btn {
            border-radius: 15px;
        }

        .mainBlockCategory .btn-accent {
            background: rgb(150, 204, 107);
            margin-left: 8px;
            display: flex;
            align-items: center;
            border: 1px solid var(--green-light);
            border-radius: 10px;
            padding: 12px 16px;
            width: 78px;
            height: 40px;
            font-weight: 400;
            font-size: 12px;
            color: var(--white);
        }

    .btn-gradient {
        background: linear-gradient(120deg, rgb(60, 128, 229) 0%, rgb(104, 161, 244) 10.76%, rgb(185, 218, 159) 61.17%, rgb(150, 204, 107) 100%);
        color: #fff;
        border-radius: 10px;
        margin-left: 8px;
    }

    .mainBlockFilterMobFormSearch .btn-mob-filter {
        height: 48px;
        min-width: 48px;
        max-width: 48px;
        width: 48px;
        background: linear-gradient(95deg, #3c74e5 0%, #74a2ff 100%);
    }

    .btn-mob-filter {
        min-width: 40px;
        max-width: 40px;
        height: 40px;
        display: flex;
        font-size: 20px;
        align-items: center;
        justify-content: center;
    }

    .catalogBlock .mainBlockFilter {
        margin-bottom: 45px;
    }

    .mainBlockFilter {
        display: grid;
        grid-template-columns: 1fr 1fr;
        flex-flow: column;
        align-items: stretch;
        width: 92%;
        margin: 0px auto;
        z-index: 2;
        position: absolute;
        left: 16px;
        top: 309px;
        justify-items: stretch;
    }

    .mainBlockFilterMobDesk {
        display: none;
    }

    .mainBlockFilterMob {
        display: grid;
        grid-template-columns: 1fr;
        flex-flow: column;
        align-items: stretch;
        width: 100%;
        margin: 0px auto;
        z-index: 2;
        position: absolute;
        justify-items: stretch;
    }

    .mainBlockFilterMobForm {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .mainBlockFilterMobFormSearch {
        display: flex;
        width: 100%;
        margin-bottom: 8px;
    }

        .mainBlockFilterMobFormSearch input {
            border: 1px solid var(--green-lightgray);
            border-radius: 10px;
            padding: 0px 20px;
            width: 100%;
            height: 48px;
        }

        .mainBlockFilterMobFormSearch svg {
            position: absolute;
            color: #444;
            top: 8px;
            right: 17%;
            font-size: 30px;
        }

    .mainBlockFilter .dropdown {
        background-color: var(--white);
        border: 1px solid transparent;
        min-width: 0px;
        max-width: none;
        flex-grow: 1;
        margin: 1px 1px;
        font-size: 14px;
        display: flex;
        align-items: stretch;
        align-content: stretch;
        /* z-index: -1; */
        width: 100% !important;
        height: 48px;
    }

        .mainBlockFilter .dropdown .dropdown-bootstrap-select {
            font-size: 14px;
            font-weight: 400;
            color: rgb(19, 49, 77);
            padding-left: 20px;
            padding-right: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .mainBlockFilter .dropdown .dropdown-bootstrap-select.dropdown-toggle .filter-option {
                display: flex !important;
                align-items: center !important;
            }

        .mainBlockFilter .dropdown:first-child {
            border-top-left-radius: 10px;
            border-bottom-left-radius: 0px;
            border-top-right-radius: 10px;
        }

        .mainBlockFilter .dropdown:nth-child(4) {
            border-bottom-left-radius: 10px;
            margin-bottom: 2px;
        }

        .mainBlockFilter .dropdown:nth-child(5) {
            border-bottom-right-radius: 10px !important;
            margin-bottom: 2px;
        }

    .mainBlockFilterProgramm .dropdown:nth-child(1),
    .mainBlockFilterProgramm .dropdown:nth-child(2),
    .mainBlockFilterProgramm .dropdown:nth-child(3) {
        grid-column: span 2;
    }


    .mainBlockFilterCompany .dropdown:nth-child(1),
    .mainBlockFilterCompany .dropdown:nth-child(2),
    .mainBlockFilterCompany .dropdown:nth-child(3) {
        grid-column: span 2;
    }

    .mainBlockFilterAgent .dropdown:nth-child(1),
    .mainBlockFilterAgent .dropdown:nth-child(2) {
        grid-column: span 2;
    }

    .mainBlockFilterAgent .dropdown:nth-child(3) {
        border-top-left-radius: 0px !important;
        border-bottom-left-radius: 10px !important;
        border-bottom-right-radius: 0px !important;
        margin-bottom: 2px;
    }

    .mainBlockFilterAgent .dropdown:nth-child(4) {
        border-top-right-radius: 0px !important;
        border-bottom-right-radius: 10px !important;
        border-bottom-left-radius: 0px !important;
        margin-bottom: 2px;
    }


    .mainBlockFilter .btn-accent {
        flex-grow: 1;
        border-radius: 10px;
        padding: 12px 20px;
        background: linear-gradient(275deg, rgb(86, 160, 80) 0%, rgb(150, 204, 107) 94.46%);
        color: rgb(255, 255, 255);
        gap: 10px;
        font-size: 16px;
        white-space: nowrap;
        text-align: center;
        width: 100%;
        height: 48px;
        border: 1px solid var(--green-main);
        border-radius: 10px;
        grid-column: span 2;
    }

        .mainBlockFilter .btn-accent:hover {
            background: rgb(56, 109, 211);
        }

    .btn-accent {
        text-decoration: none;
    }

        .btn-accent:hover {
            cursor: pointer;
        }

    .mainBlockFilter.btn-group > .btn-group:not(:last-child) > .btn,
    .btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
        border-top-right-radius: 15px !important;
        border-bottom-right-radius: 15px !important;
    }

    .ADBlock {
        display: flex;
        justify-content: flex-start;
        align-items: stretch;
        flex-flow: row;
        width: 100%;
        margin: 0px auto 20px;
        padding: 0px;
        z-index: 0;
        position: relative;
        overflow-x: scroll;
    }

        .ADBlock .banner {
            display: flex;
            height: 120px;
            align-items: center;
            justify-content: center;
            border-radius: 15px;
            padding: 8px;
            color: rgb(255, 255, 255);
            margin-right: 8px !important;
            position: relative;
            width: 160px !important;
        }

            .ADBlock .banner:hover {
                box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 20px 0px;
                transition: all 0.3s ease 0s;
            }

            .ADBlock .banner:last-child {
                margin-right: 0px;
            }

            .ADBlock .banner img {
                width: 32px;
                height: 32px;
                position: absolute;
                border-radius: 100%;
                object-fit: cover;
                right: 19px;
                top: 18px;
            }

            .ADBlock .banner h3 {
                font-weight: 700;
                font-size: 14px;
                left: 12px;
                top: 12px;
                position: absolute;
                width: 88px;
            }

            .ADBlock .banner p {
                margin: 0px;
                left: 12px;
                top: 66px;
                position: absolute;
                width: 180px;
                font-weight: 400;
                font-size: 12px;
                line-height: 108%;
            }

    .banner.banner-1 {
        background: url("/images/design/banners/redBanner.png") 0% 0% / cover no-repeat;
    }

    .banner.banner-2 {
        background: url("/images/design/banners/greenBanner.png") 0% 0% / cover no-repeat;
    }

    .banner.banner-3 {
        background: url("/images/design/banners/yellowBanner.png") 0% 0% / cover no-repeat;
    }

    .banner.banner-4 {
        background: url("/images/design/banners/greenBanner.png") 0% 0% / cover no-repeat rgb(197, 197, 197);
    }

    .ADBlock2 {
        display: flex;
        justify-content: space-evenly;
        align-items: stretch;
        flex-flow: row;
        width: 92%;
        margin: 0px auto 16px;
    }

        .ADBlock2 .banner {
            background: url("/images/design/banners/ustali_mask_mob.svg");
            display: flex;
            width: 100%;
            height: 322px;
            align-items: center;
            place-content: center;
            border-radius: 15px;
            padding: 16px;
            color: rgb(255, 255, 255);
            margin-right: 20px;
            position: relative;
            background-size: cover;
        }

            .ADBlock2 .banner:last-child {
                margin-right: 0px;
            }

            .ADBlock2 .banner h4 {
                position: absolute;
                left: 20px;
                top: 148px;
                text-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
                font-weight: 700;
                font-size: 20px;
                line-height: 110%;
                width: 67%;
                color: var(--white);
            }

            .ADBlock2 .banner p {
                position: absolute;
                left: 20px;
                top: 200px;
                width: 300px;
                font-weight: 400;
                font-size: 14px;
                line-height: 129%;
                color: var(--white);
            }

            .ADBlock2 .banner a {
                background: var(--white);
                border: 1px solid var(--white);
                border-radius: 10px;
                padding: 11px;
                display: flex;
                width: 90%;
                height: 47px;
                position: absolute;
                bottom: 16px;
                left: 20px;
                align-items: center;
                justify-content: center;
                font-weight: 500;
                color: var(--blue-main);
            }

            .ADBlock2 .banner img {
                position: absolute;
                top: -18px;
                right: 33%;
                width: 131px;
                display: none;
            }

            .ADBlock2 .banner.baner-buh {
                /* background: url(/images/design/banners/buhgalter-285-210.png) 50% 0% no-repeat !important; */
                background: url(/images/design/banners/buhgalter-1200-300.png);
                background-size: cover !important;
                width: 100%;
                height: 140px;
            }

    .headerIndex {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
    }

        .headerIndex a {
            display: flex;
            margin-bottom: 12px;
            font-weight: 900;
            font-size: 19px;
            color: var(--dark);
        }

    .PopularOffer {
        width: 100%;
        margin: 0px auto 20px;
        padding: 0px 16px;
        position: relative;
    }

        .PopularOffer h2 {
            margin-bottom: 12px;
            font-size: 16px;
            font-weight: 400;
        }

        .PopularOffer .swiper-container-category-parent {
            overflow-x: scroll;
        }

            .PopularOffer .swiper-container-category-parent::-webkit-scrollbar {
                display: none;
            }

    .mobcategory-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        margin-bottom: 12px;
        display: none;
    }

        .mobcategory-container .mobcategory-select {
            width: 100% !important;
        }

            .mobcategory-container .mobcategory-select .btn {
                color: rgb(255, 255, 255) !important;
                background: rgb(150, 204, 107) !important;
                border-radius: 10px;
                height: 40px;
                font-size: 12px;
            }

            .mobcategory-container .mobcategory-select .filter-option {
                display: flex;
                align-items: center;
            }

    .programmOffer {
        height: 277px;
        max-width: 98%;
        min-width: 98%;
        width: 98%;
        border-radius: 10px;
        margin-bottom: 20px;
        transition: all 0.3s ease 0s;
        position: relative;
        background: rgb(245, 245, 245);
        box-shadow: #4444446e 0px 0px 6px -2px;
    }

        .programmOffer:hover {
            background: rgb(255, 255, 255);
            box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 20px 0px;
            transition: all 0.3s ease 0s;
        }

            .programmOffer:hover .programmOfferBtn {
                background: linear-gradient(275deg, rgb(86, 160, 80) 0%, rgb(150, 204, 107) 94.46%);
                color: rgb(255, 255, 255);
            }

    .companyCard:hover .programmOfferBtn {
        background: linear-gradient(275deg, rgb(86, 160, 80) 0%, rgb(150, 204, 107) 94.46%);
        color: rgb(255, 255, 255);
    }

    .programmOfferBtn:active {
        background: linear-gradient(95deg, rgb(60, 116, 229) 0%, rgb(116, 162, 255) 100%) !important;
    }

    .programmOfferContent {
        padding: 0px 8px 8px;
    }

    .programmOffer .card-img-top {
        height: 86px;
        object-fit: cover;
        background: rgb(182, 182, 182);
        border-radius: 10px;
        margin-bottom: 16px;
    }

    .programmOfferTypeReward {
        position: absolute;
        z-index: 1;
        left: 8px;
        top: 8px;
        padding: 6px 8px;
        border-radius: 5px;
        width: 101px;
        font-weight: 400;
        font-size: 10px;
        line-height: 100%;
        color: rgb(20 20 20);
        background: rgb(255 255 255);
        box-shadow: #444 0px 0px 6px -2px;
    }

    .likebtnincard {
        position: absolute;
        right: 11px;
        top: 14px;
        color: rgb(255, 255, 255);
        font-size: 20px;
    }

        .likebtnincard:hover {
            position: absolute;
            right: 15px;
            top: 12px;
            color: rgb(255, 255, 255);
            font-size: 24px;
        }

    .programmOfferNameCompany {
        font-size: 10px;
        display: flex;
        align-items: center;
        flex-flow: row;
        margin-bottom: 8px;
        line-height: 14.06px;
        height: 14px;
        color: rgb(68, 68, 68);
        text-overflow: ellipsis;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }

        .programmOfferNameCompany div {
            margin-left: 12px;
            white-space: nowrap;
        }

            .programmOfferNameCompany div i {
                color: rgb(150, 204, 107);
            }

    .programmOfferName {
        color: rgb(68, 68, 68);
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 8px;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        line-height: 11.41px;
        height: 26px;
    }

    .programmOfferCondition {
        font-weight: 300;
        font-size: 10px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        height: 24px;
        line-height: 12.06px;
        margin-bottom: 8px;
    }

    .programmOfferPaymentInfo {
        display: flex;
        font-size: 8px;
        margin-bottom: 8px;
        align-items: flex-start;
        height: 14px;
    }

        .programmOfferPaymentInfo i {
            display: inline-block;
            color: rgb(60, 116, 229);
            font-size: 12px;
        }

        .programmOfferPaymentInfo .icon-container span {
            font-size: 16px;
        }

        .programmOfferPaymentInfo .icon-btn {
            margin-left: 8px;
            color: rgb(56, 109, 211);
        }

    .icon-btn:hover {
        cursor: pointer;
    }

    .programmOfferPaymentSubInfo {
        padding-left: 12px;
        line-height: 13.06px;
        position: relative;
        display: flex;
        font-weight: 300;
        font-size: 10px;
    }

    .programmOfferPaymentSubInfoBold {
        font-weight: 600;
        color: rgb(56, 109, 211);
        position: relative;
        display: flex;
        flex-direction: row;
        margin-left: 4px;
    }

    .popoversignal {
        font-size: 12px;
        position: relative;
    }

    .programmOfferBtn {
        padding: 12px 16px;
        border-radius: 10px;
        color: rgb(56, 109, 211);
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 16.41px;
        background: rgb(255, 255, 255);
        font-size: 14px;
        height: 40px;
        position: absolute;
        bottom: 9px;
        width: 92%;
    }

    .programmOfferShowCatalog {
        padding: 3px 78px;
        color: rgb(56, 109, 211);
        text-decoration: none;
        border-radius: 10px;
        border: 1px solid rgb(56, 109, 211);
        font-size: 16px;
        margin-bottom: 0px;
        background: rgb(255, 255, 255);
        visibility: hidden;
    }

        .programmOfferShowCatalog:hover {
            background: linear-gradient(275deg, rgb(86, 160, 80) 0%, rgb(150, 204, 107) 94.46%);
            border: 1px solid rgba(255, 255, 255, 0);
            color: rgb(255, 255, 255);
        }

        .programmOfferShowCatalog:active {
            background: linear-gradient(95deg, rgb(60, 116, 229) 0%, rgb(116, 162, 255) 100%);
        }

    .companyCategoryTagsBold {
        display: flex;
        width: 227px;
        overflow-x: scroll;
        scrollbar-width: none;
    }

    .companyCategoryTagBold {
        margin-right: 8px;
        border: 1px solid rgb(56, 109, 211);
        border-radius: 15px;
        padding: 6px 8px;
        white-space: nowrap;
        box-shadow: rgba(60, 116, 229, 0.1) 2px 2px 4px 0px;
    }

    #appendServices {
        margin-bottom: 48px;
    }

    .advantageousOffer {
        width: 100%;
        margin: 0px auto 20px;
        padding: 20px 16px 0px;
        position: relative;
        background: linear-gradient(120deg, rgb(60, 128, 229) 0%, rgb(104, 161, 244) 10.76%, rgb(185, 218, 159) 61.17%, rgb(150, 204, 107) 100%);
        border-radius: 15px;
    }

        .advantageousOffer h2 {
            margin-bottom: 16px;
            color: rgb(255, 255, 255);
            font-size: 16px;
            font-weight: 600 !important;
        }

        .advantageousOffer .cards {
            margin: 0px;
        }

    .Compilation {
        width: 100%;
        margin: 0px auto 20px;
        padding: 0px 16px;
        justify-items: stretch;
    }

        .Compilation h2 {
            margin-bottom: 16px;
            font-size: 16px;
            font-weight: 600 !important;
        }

    .CompilationGrid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-right: -8px;
    }

    .Compilation .banner {
        background: linear-gradient(137deg, rgb(142, 194, 101) 26.45%, rgb(193, 232, 161) 99.87%);
        height: 104px;
        border-radius: 15px;
        padding: 16px;
        color: rgb(255, 255, 255);
        margin-right: 8px;
        margin-bottom: 8px;
        position: relative;
        transition: all 0.3s ease 0s;
        width: 96%;
        font-weight: 300;
        font-size: 12px;
    }

        .Compilation .banner:hover {
            box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 20px 0px;
            transition: all 0.3s ease 0s;
        }

        .Compilation .banner .tagName {
            font-weight: 600;
            font-size: 14px;
        }

        .Compilation .banner img {
            position: absolute;
            right: 7px;
            bottom: 19px;
            width: 37px;
        }

    .CompilationGrid a:nth-child(n+5) {
        display: none;
    }

    .RecommendedOffer {
        width: 100%;
        margin: 0px auto 20px;
        padding: 16px;
        position: relative;
        background: rgb(235, 235, 235);
        border-radius: 15px;
    }

        .RecommendedOffer .cards {
            margin: 0px;
        }

        .RecommendedOffer h2 {
            margin-bottom: 16px;
            font-size: 16px;
        }

    .InterestingOffer {
        width: 100%;
        margin: 0px auto 20px;
        padding: 0px 16px;
        position: relative;
    }

        .InterestingOffer h2 {
            margin-bottom: 16px;
            font-size: 16px;
        }

    .FormEmail {
        width: 92%;
        margin: 0px auto 20px;
        padding: 20px 16px;
        position: relative;
        background: rgb(255, 255, 255);
        border-radius: 15px;
        box-shadow: rgba(0, 0, 0, 0.1) 5px 5px 20px 0px;
    }

        .FormEmail h2 {
            margin-bottom: 12px;
            font-size: 16px;
            width: 156px;
            font-weight: 500 !important;
        }

        .FormEmail p {
            color: rgb(68, 68, 68);
            margin-bottom: 20px;
            font-weight: 300;
            font-size: 12px;
            line-height: 133%;
            width: 281px;
        }

        .FormEmail img {
            position: absolute;
            right: 0px;
            top: -6px;
            width: 138px;
        }

    .BigBannerForReg {
        width: 100%;
        margin: 0px auto 20px;
        padding: 0px 16px;
        display: grid;
        grid-template-columns: 1fr;
        place-items: stretch;
        justify-content: space-evenly;
    }

        .BigBannerForReg.BigBannerForRegOne {
            width: 1400px;
            margin: 0px auto 90px;
            padding: 0px 100px;
            display: grid;
            grid-template-columns: 1fr;
            place-items: stretch;
            justify-content: space-evenly;
        }

        .BigBannerForReg .banner {
            background: rgb(152, 152, 152);
            height: 144px;
            border-radius: 15px;
            padding: 30px;
            color: rgb(255, 255, 255);
            margin-right: 0px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            text-align: center;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            width: 100%;
        }

            .BigBannerForReg .banner:last-child {
                margin-right: 0px;
            }

            .BigBannerForReg .banner .bannerSVG {
            }

                .BigBannerForReg .banner .bannerSVG img {
                    position: absolute;
                    width: 100%;
                    height: 144px;
                    top: -6px;
                    left: 0px;
                }

            .BigBannerForReg .banner .bannerHead-1 {
                position: absolute;
                font-family: Roboto;
                line-height: 150%;
                color: rgb(255, 255, 255);
                top: 38px;
                left: 16px;
                text-align: left;
                width: 227px;
                font-weight: 600;
                font-size: 16px;
            }

            .BigBannerForReg .banner .bannerHead-2 {
                position: absolute;
                font-family: Roboto;
                font-weight: 600;
                font-size: 16px;
                line-height: 150%;
                color: rgb(255, 255, 255);
                top: 29px;
                left: 16px;
                text-align: left;
                width: 227px;
            }

        .BigBannerForReg .bg-blue-gradient-v1 a {
            position: absolute;
            background: rgb(85, 137, 241);
            border: 1px solid rgb(255, 255, 255);
            border-radius: 10px;
            padding: 12px 82px;
            width: 135px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgb(255, 255, 255);
            font-weight: 400;
            font-size: 12px;
            top: 92px;
            left: 16px;
        }

            .BigBannerForReg .bg-blue-gradient-v1 a:hover {
                background: rgb(107, 151, 239);
            }

        .BigBannerForReg .bg-green-gradient-v1 a {
            position: absolute;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgb(255, 255, 255);
            font-weight: 400;
            font-size: 12px;
            top: 83px;
            left: 16px;
            border: 1px solid rgb(255, 255, 255);
            border-radius: 10px;
            padding: 12px;
            width: 135px;
            height: 32px;
            background: rgb(67, 138, 101);
        }

            .BigBannerForReg .bg-green-gradient-v1 a:hover {
                background: rgba(255, 255, 255, 0.14);
            }

    .bannerSmallText {
        font-size: 20px;
        font-weight: 300;
        line-height: 28px;
        margin-top: 16px;
        margin-bottom: 32px;
    }

    .MotivationRegBlockAgent {
        height: 369px !important;
    }

    .MotivationRegBlockCompany {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 368px !important;
    }

        .MotivationRegBlockCompany h3 {
            text-align: center;
            color: var(--white);
            font-weight: 500 !important;
            font-size: 28px !important;
            width: 59% !important;
        }

    .MotivationRegBlock a {
        position: absolute;
        z-index: 2;
        left: 16px;
        bottom: 16px;
        border: 1px solid var(--white);
        border-radius: 10px;
        padding: 8px;
        width: 92%;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .MotivationRegBlock {
        width: 92%;
        margin: 0px auto 20px;
        background: linear-gradient(137deg, rgb(86, 160, 80) 0%, rgb(150, 204, 107) 69.29%);
        border-radius: 15px;
        height: 261px;
        overflow: hidden;
        background: url(/images/design/banners/agent_reg_banner.svg);
        display: flex;
        align-items: center;
        place-content: center;
        border-radius: 15px;
        padding: 16px;
        color: rgb(255, 255, 255);
        margin-right: 20px;
        position: relative;
        background-size: cover;
    }

        .MotivationRegBlock h3 {
            color: rgb(255, 255, 255);
            font-weight: 600 !important;
            margin-bottom: 31px;
            position: absolute;
            top: 32px;
            left: 16px;
            width: 296px !important;
            font-size: 16px !important;
            z-index: 1;
            text-align: left;
        }

        .MotivationRegBlock p {
            font-size: 13px;
            line-height: 16px;
            margin-bottom: 44px;
            color: rgb(255, 255, 255);
            width: 54%;
            position: absolute;
            left: 16px;
            top: 83px;
        }

    .offerMotivationRegImg {
        position: absolute;
        top: 57px;
        right: -32px;
        z-index: 1;
        width: 814px;
    }

    .companyMotivationRegImg {
        position: absolute;
        top: 0px;
        right: 0px;
    }

    .agentMotivationRegImg {
        position: absolute;
        top: 0px;
        right: 0px;
    }

    .btn-default {
        background: rgb(255, 255, 255);
        padding: 14px 32px;
        border-radius: 10px;
        font-size: 16px;
        text-decoration: none;
        color: rgb(86, 160, 80) !important;
    }

    .ReviewBlock {
        width: 100%;
        margin: 0px auto 20px;
        padding: 20px 16px;
        position: relative;
    }

        .ReviewBlock h2 {
            margin-bottom: 16px;
            font-weight: 600;
            font-size: 16px;
        }

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

    .FormEmailGroup {
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
    }

        .FormEmailGroup input {
            margin-right: 20px;
            margin-bottom: 20px;
            min-width: 184px;
            color: rgb(255, 255, 255);
        }

        .FormEmailGroup .form-control {
            background: rgb(245, 245, 245);
            padding: 10px 20px;
            border: 0px;
            border-radius: 10px;
            width: auto;
        }

        .FormEmailGroup .btn {
            background: rgb(150, 204, 107);
            border-radius: 10px;
        }

    .companyCard {
        height: 277px;
        width: 98%;
        max-width: 98%;
        min-width: 98%;
        background: rgb(245, 245, 245);
        border-radius: 15px;
        margin-bottom: 20px;
        transition: all 0.3s ease 0s;
        position: relative;
    }

        .companyCard:hover {
            background: rgb(255, 255, 255);
            box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 20px 0px;
            transition: all 0.3s ease 0s;
        }

        .companyCard .card-img-top {
            height: 86px;
            object-fit: cover;
            background: rgb(182, 182, 182);
            border-radius: 10px;
            margin-bottom: 8px;
        }

    .companyCardChecked {
        position: absolute;
        z-index: 1;
        left: 15px;
        top: 12px;
        font-size: 10px;
        padding: 6px 12px;
        color: rgb(245, 245, 245);
        background: rgba(245, 245, 245, 0.3);
        border-radius: 30px;
    }

    .companyCardContent {
        padding: 0px 8px;
    }

    .compNameBlock {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .compRating {
        display: flex;
        flex-wrap: nowrap;
        color: rgb(152, 152, 152);
        font-size: 10px;
        font-weight: 400;
        line-height: 14.06px;
        justify-content: flex-end;
        flex-direction: row;
    }

        .compRating div {
            margin-right: 4px;
            display: flex;
            align-items: center;
            flex-direction: row;
            white-space: nowrap;
        }

            .compRating div i {
                margin-right: 2px;
                margin-top: 0px;
                color: rgb(185, 218, 159);
            }

    .compReviews {
        color: rgb(245, 245, 245);
    }

    .compNameBlock .s2d {
        margin-left: 0px;
        display: flex;
        align-items: center;
        margin-right: 12px;
    }

    .companyCardName {
        display: flex;
        align-items: center;
        flex-flow: row;
        margin-bottom: 8px;
    }

    .compLogo {
        width: 30px;
        height: 30px;
        object-fit: cover;
        border-radius: 10px;
        margin-right: 12px;
    }

    .compName {
        line-height: 16.41px;
        margin-bottom: 4px;
        font-weight: 600;
        font-size: 11px;
        color: var(--dark);
    }

    .companyDescription {
        font-size: 10px;
        line-height: 16.59px;
        font-weight: 300;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        height: 34px;
        margin-bottom: 4px;
    }

    .AgentBlockWithFilter {
        display: flex;
        width: 100%;
        margin: 0px auto 20px;
        flex-direction: row;
        align-items: flex-start;
        padding: 16px;
    }

    .AgentFilter {
        background: linear-gradient(95deg, rgb(60, 116, 229) 0%, rgb(116, 162, 255) 100%);
        padding: 20px 20px 40px;
        border-radius: 10px;
        flex-direction: column;
        width: 387px;
        display: none;
    }

        .AgentFilter .filter-item {
            margin-bottom: 14px;
            padding: 20px;
            background: rgb(255, 255, 255);
            border-radius: 10px;
            border: 0px;
            display: flex;
            justify-content: space-between;
            width: 100% !important;
        }

            .AgentFilter .filter-item:last-child {
                margin-bottom: 0px;
            }

        .AgentFilter a {
            text-decoration: none;
            text-align: center;
            font-size: 14px;
            color: rgb(93, 93, 93);
            line-height: 16.41px;
            font-style: normal;
        }

    a:hover {
        cursor: pointer;
    }

    .AgentFilter .filter-item.btn-action {
        color: rgb(255, 255, 255);
        font-size: 14px;
        line-height: 16.41px;
        font-weight: 400;
        width: 347px;
        height: 60px;
        display: flex;
        align-items: center;
        background: linear-gradient(275deg, rgb(86, 160, 80) 0%, rgb(150, 204, 107) 94.46%) !important;
    }

        .AgentFilter .filter-item.btn-action:active {
            background: linear-gradient(95deg, rgb(60, 116, 229) 0%, rgb(116, 162, 255) 100%) !important;
        }

    .AgentFilter .filter-item.btn-easy {
        color: rgb(255, 255, 255);
        font-size: 14px;
        line-height: 16.41px;
        font-weight: 400;
        padding: 0px;
        background: transparent !important;
        justify-content: center !important;
    }

    .AgentBlockList {
        margin-left: 0px;
        width: 100%;
    }

    .agentCard {
        background: rgb(255, 255, 255);
        border: 1px solid rgb(255, 255, 255);
        padding: 16px 12px;
        width: 100%;
        display: flex;
        border-radius: 10px;
        margin-bottom: 8px;
        transition: all 0.3s ease 0s;
        position: relative;
    }

        .agentCard:hover {
            box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 20px 0px;
            transition: all 0.3s ease 0s;
        }

        .agentCard .card-img-top {
            width: 0;
            height: 0;
            border-radius: 10px;
            margin-right: 0;
            visibility: collapse;
        }

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

    .agentCardContent {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .agentCardContentHeader {
        display: flex;
        justify-content: space-between;
        margin-bottom: 8px;
    }

    .agentCardName {
        line-height: 18.75px;
        margin-right: 16px;
        color: rgb(68, 68, 68);
        font-weight: 500;
        font-size: 12px;
        display: flex;
        justify-content: flex-start;
    }

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

    .avatar-mob img {
        width: 60px;
        height: 60px;
        object-fit: cover;
        margin-right: 12px;
    }

    .AgentCardChecked {
        background: linear-gradient(95deg, rgb(60, 116, 229) 0%, rgb(116, 162, 255) 100%);
        /* padding: 6px 12px; */
        border-radius: 30px;
        line-height: 11.72px;
        align-items: center;
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 10px;
        color: rgb(255, 255, 255);
        display: none;
        width: 0;
    }

    .agentCardDescription {
        margin-bottom: 18px;
        font-weight: 300;
        font-size: 10px;
    }

    .agentCardInterests {
        margin-bottom: 0px;
    }

    .agentCardAction {
        display: flex;
        justify-content: space-between;
    }

        .agentCardAction .btn-action {
            margin-right: 4px;
        }

            .agentCardAction .btn-action:last-child {
                margin-right: 0px;
            }

        .agentCardAction .likebtnincard {
            position: relative;
            right: 0px;
            top: 0px;
            color: var(--green-main);
            font-size: 18px;
        }

    .btn-action {
        color: rgb(68, 68, 68);
        text-decoration: none;
        line-height: 16.59px;
        display: flex;
        border-radius: 10px;
        padding: 8px;
        width: 34px;
        height: 34px;
        justify-content: center !important;
    }

        .btn-action:hover {
            cursor: pointer;
        }

    .sendoffer {
        border-radius: 10px;
        padding: 10px;
        width: 45%;
        height: 34px;
        background: linear-gradient(275deg, rgb(86, 160, 80) 0%, rgb(150, 204, 107) 94.46%);
        font-weight: 400;
        font-size: 12px;
        color: var(--white);
        /* border: 1px solid rgba(86, 160, 80, 0); */
        display: flex;
        align-items: center;
        box-shadow: #444 0px 0px 5px -2px;
    }

        .sendoffer:hover {
            color: var(--white);
        }

        .sendoffer:active {
            color: var(--white);
            background: linear-gradient(95deg, rgb(60, 116, 229) 0%, rgb(116, 162, 255) 100%);
        }

    .getcontacts {
        border: 1px solid var(--green-main);
        border-radius: 10px;
        padding: 7px;
        width: 150px;
        height: 34px;
        font-family: var(--second-family);
        font-weight: 400;
        font-size: 12px;
        color: var(--green-main);
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

        .getcontacts:hover {
            color: var(--green-main);
        }

        .getcontacts:active {
            border: 1px solid rgb(60, 116, 229);
            color: var(--white);
            background: linear-gradient(95deg, rgb(60, 116, 229) 0%, rgb(116, 162, 255) 100%);
        }

    .cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-right: 0px !important;
    }

    .btn-group-radio {
        display: flex;
        overflow: hidden;
        border-radius: 15px;
        border: 1px solid rgb(211, 211, 211);
        width: 100%;
        background: #F5F5F5;
        padding: 3px;
        border-radius: 14px;
        height: 56px;
    }

        .btn-group-radio label {
            flex: 1 1 0%;
            text-align: center;
            padding: 20px 30px;
            cursor: pointer;
            transition: transform 0.3s ease 0s;
            transform: translateX(0px);
            transition: .5s;
            font-family: 'Roboto';
            font-style: normal;
            font-weight: 400;
            font-size: 16px;
            letter-spacing: -0.01em;
            border-radius: 12px;
            color: #000000;
            background: #FFFFFF !important;
            box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.07);
            border: #fff0;
        }

        .btn-group-radio input[type="radio"] {
            display: none;
        }

            .btn-group-radio input[type="radio"]:checked + label {
                background-color: rgb(255, 255, 255);
                color: rgb(0, 0, 0);
                transform: translateX(-100%);
            }

    .catalogBlock {
        display: flex;
        flex-direction: column;
        border-radius: 30px;
        place-content: center;
        align-items: center;
        width: 100%;
        margin: 0px auto;
    }

        .catalogBlock .deviz {
            font-size: 20px;
            line-height: 23.7px;
            margin-bottom: 65px;
        }

        .catalogBlock h1 {
            margin-bottom: 16px;
            margin-top: 24px;
            color: rgb(68, 68, 68);
            font-weight: 500;
            font-size: 16px;
        }

    .catalogBlockCategory {
        display: flex;
        align-items: center;
        flex-direction: row;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: center;
        width: 92%;
    }

        .catalogBlockCategory .btn-group-radio {
            width: 100%;
            min-width: 270px;
            background: rgba(241, 244, 246, 0);
            border-radius: 15px;
            border: 1px solid rgb(211, 211, 211);
        }

            .catalogBlockCategory .btn-group-radio label {
                padding: 20px 30px;
                font-family: Roboto;
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                letter-spacing: -0.01em;
                color: rgb(255, 255, 255);
                width: 50%;
                margin-bottom: 0rem;
                border-radius: 15px !important;
            }

        .catalogBlockCategory .btn-check:checked + .btn {
            transition: all 0.5s ease 0s;
            font-family: Roboto;
            font-style: normal;
            font-weight: 400;
            font-size: 16px;
            letter-spacing: -0.01em;
            border-radius: 15px;
            color: rgb(0, 0, 0);
            box-shadow: rgba(0, 0, 0, 0.07) 0px 4px 12px;
            border: rgba(255, 255, 255, 0);
            background: rgb(255, 255, 255) !important;
        }

        .catalogBlockCategory .btn-check + .btn {
            border-radius: 15px;
        }

        .catalogBlockCategory .btn-accent {
            background: rgb(182, 182, 182);
            margin-left: 8px;
            padding: 20px;
            border-radius: 10px;
            color: rgb(255, 255, 255);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .catalogBlockCategory .switch {
            position: relative;
            display: flex;
            border-radius: 10px;
            justify-content: space-evenly;
            align-items: center;
            font-size: 12px;
            line-height: 18.75px;
            background: rgba(255, 255, 255, 0.08);
            color: rgb(56, 109, 211);
            width: 100%;
            height: 40px;
            flex-grow: 1;
        }

            .catalogBlockCategory .switch::before {
                content: "  ";
                position: absolute;
                left: 0px;
                z-index: -1;
                width: 100%;
                height: 40px;
                background: rgb(255, 255, 255);
                border-radius: 10px;
            }

        .catalogBlockCategory .switch__label {
            display: inline-block;
            width: 100px;
            cursor: pointer;
            transition: color 200ms ease-out 0s;
            text-align: center;
            padding: 12px 16px;
            position: relative;
            z-index: 1;
            font-size: 12px;
        }

        .catalogBlockCategory .switch input[type="radio"]:checked + .switch__label {
            color: rgb(255, 255, 255);
            transition: all 0.3s ease 0s;
        }

        .catalogBlockCategory .switch__label:hover {
            color: rgb(92, 140, 232);
            transition: all 0.3s ease 0s;
        }

        .catalogBlockCategory .switch__indicator {
            height: 40px;
            line-height: 18.75px;
            position: absolute;
            top: 0px;
            left: 0px;
            background: blue;
            border-radius: 10px;
            transition: transform 600ms cubic-bezier(0.02, 0.94, 0.09, 0.97) 0s, background 300ms cubic-bezier(0.17, 0.67, 0.14, 1.03) 0s;
            transform: translate3d(1rem, 0px, 0px);
        }

        .catalogBlockCategory .switch input#isonce2:checked ~ .switch__indicator {
            box-shadow: rgba(0, 0, 0, 0.1) 4px 0px 10px 0px;
            background: linear-gradient(95deg, rgb(60, 116, 229) 0%, rgb(116, 162, 255) 100%);
            transform: translate3d(0rem, 0px, 0px);
            font-size: 12px;
            width: 34%;
        }

        .catalogBlockCategory .switch input#ismany2:checked ~ .switch__indicator {
            box-shadow: rgba(0, 0, 0, 0.1) 4px 0px 10px 0px;
            background: linear-gradient(95deg, rgb(60, 116, 229) 0%, rgb(116, 162, 255) 100%);
            transform: translate3d(96%, 0px, 0px);
            width: 34%;
        }

        .catalogBlockCategory .switch input#isinterval2:checked ~ .switch__indicator {
            box-shadow: rgba(0, 0, 0, 0.1) 4px 0px 10px 0px;
            background: linear-gradient(95deg, rgb(60, 116, 229) 0%, rgb(116, 162, 255) 100%);
            transform: translate3d(203%, 0px, 0px);
            width: 33%;
        }

        .catalogBlockCategory .switch input[type="radio"]:not(:checked),
        .switch input[type="radio"]:checked {
            display: none;
        }

    .companyPB {
        display: flex;
        flex-direction: column;
        border-radius: 30px;
        place-content: center;
        align-items: stretch;
        width: 100%;
        padding: 16px;
        margin: 0px auto 20px;
    }

        .companyPB h6 {
            color: rgb(68, 68, 68);
            font-weight: 500;
            font-size: 20px;
            font-family: Roboto;
            margin-bottom: 20px;
        }

    .companyPBMainCardLogo {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 40px;
    }

        .companyPBMainCardLogo img {
            width: 180px;
            height: 180px;
            object-fit: cover;
            border-radius: 100%;
        }

    .companyPBMainCardContacts {
        color: rgb(152, 152, 152);
    }

    .companyPBLeftPanel {
        width: 100%;
        margin-right: 0;
    }

    .companyPBMainCard {
        background: rgb(255, 255, 255);
        border-radius: 10px;
        padding: 40px 20px 30px;
        margin-bottom: 20px;
    }

    .companyPBMainCardButtons {
        display: flex;
        flex-flow: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        position: relative;
    }

        .companyPBMainCardButtons a {
            height: 64px;
            display: flex;
            align-items: center;
            padding: 20px;
            border-radius: 10px;
            font-size: 19px;
            width: 100%;
            justify-content: center;
            background: linear-gradient(95deg, #3c74e5 0%, #74a2ff 100%);
            color: #fff !important;
        }

        .companyPBMainCardButtons .likebtnincard {
            top: 0px;
            left: 0px;
            position: relative !important;
        }

    .socNetworks {
        display: flex;
        align-items: center;
        place-content: center flex-start;
        flex-wrap: nowrap;
    }

        .socNetworks .socNetwork {
            margin-right: 30px;
            font-size: 30px;
            width: 60px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--blue-main);
        }

    .companyPBDocuments {
        padding: 40px 20px 30px;
        background: rgb(255, 255, 255);
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .companyPBOneDocument {
        display: flex;
        align-items: center;
        margin-bottom: 16px;
    }

        .companyPBOneDocument .docImage img {
            width: 64px;
            height: 64px;
        }

        .companyPBOneDocument .docDescription {
            margin-left: 20px;
            color: rgb(152, 152, 152);
        }

    .companyPAwardsBlock {
        padding: 40px 20px 30px;
        background: rgb(255, 255, 255);
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .companyRightPanel {
        width: 100%;
    }

    .companyNameBlock {
        padding: 31px 20px;
        background: rgb(255, 255, 255);
        border-radius: 10px;
        margin-bottom: 20px;
    }

        .companyNameBlock h1 {
            color: rgb(93, 93, 93);
            font-size: 20px;
            margin-bottom: 24px;
        }

        .companyNameBlock i:before {
            background: linear-gradient(95deg, #3c74e5 0%, #74a2ff 100%);
        }

    .companyNamewithActions {
        display: flex;
    }

    .companyTags {
        display: flex;
        flex-wrap: wrap;
    }

        .companyTags .companyTag {
            margin-right: 4px;
            margin-bottom: 4px;
            padding: 8px 16px;
            background: rgba(159, 159, 159, 0.22);
            border: 1px solid rgb(93, 93, 93);
            border-radius: 30px;
            white-space: nowrap;
            flex-basis: auto;
            font-size: 12px;
        }

    .companyStatisticBlock {
        display: flex;
        flex-flow: row;
        align-items: stretch;
        justify-content: space-between;
        width: 100%;
    }

    .companyStatistic {
        padding: 10px;
        background: rgb(255, 255, 255);
        border-radius: 10px;
        margin-bottom: 20px;
        width: 24%;
        border: 1px solid var(--green-middlegray);
        text-align: center;
    }

    .companyStatisticHidden {
        padding: 34px;
        background: rgba(255, 255, 255, 0);
        border-radius: 10px;
        margin-bottom: 20px;
        width: 25%;
        text-align: center;
    }

    .companyStatistic i {
        font-size: 16px;
        font-weight: bold;
        font-family: Roboto;
        display: flex;
        align-items: center;
        justify-content: center;
        font-style: normal;
    }

        .companyStatistic i::before {
            margin-right: 10px;
            background: linear-gradient(95deg, #3c74e5 0%, #74a2ff 100%);
        }

    .companyStatistic p {
        font-size: 10px;
        font-weight: 300;
        font-family: Roboto;
        margin-bottom: 0px;
    }

    .companyDescriptionBLock {
        padding: 16px;
        background: rgb(255, 255, 255);
        border-radius: 10px;
        margin-bottom: 20px;
        font-weight: 300;
        font-size: 12px;
        border: 1px solid var(--green-middlegray);
    }

        .companyDescriptionBLock h3 {
            margin-bottom: 20px !important;
        }

        .companyDescriptionBLock div {
            margin-bottom: 20px;
        }

    .pathBlock {
        height: 64px;
        display: none;
        flex-direction: row;
        border-radius: 30px;
        place-content: center flex-start;
        align-items: center;
        width: 100%;
        margin: 0px auto 0px;
        overflow: scroll;
    }

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

    .offerPB {
        display: flex;
        flex-direction: column-reverse;
        border-radius: 30px;
        place-content: center;
        align-items: stretch;
        width: 100%;
        padding: 16px;
        margin: 0px auto 20px;
    }

        .offerPB h3 {
            font-size: 16px;
            margin-bottom: 28px;
        }

    .offerPBLeftPanel {
        width: 100%;
        margin-right: 0;
        margin-bottom: 16px;
    }

    .offerPBMainCard {
        background: rgb(255, 255, 255);
        border-radius: 10px;
        padding: 40px 20px 30px;
        margin-bottom: 20px;
        display: none;
    }

        .offerPBMainCard img {
            width: 180px;
            height: 180px;
            object-fit: cover;
            border-radius: 100%;
            display: flex;
        }

    .offerComapnyName {
        display: flex;
        align-items: center;
        font-size: 20px !important;
    }

        .offerComapnyName div {
            white-space: nowrap;
        }

            .offerComapnyName div i:before {
                background: linear-gradient(95deg, #3c74e5 0%, #74a2ff 100%);
            }

        .offerComapnyName h2 {
            margin-right: 13px;
            font-size: 20px !important;
        }

    .offerCompanyDeviz {
        font-size: 20px;
        font-weight: 300;
    }

    .offerCostAndAction {
        background: rgb(255, 255, 255);
        border-radius: 10px;
        padding: 36px 20px;
        border: 1px solid var(--green-middlegray);
    }

    .offerPBCost {
        font-weight: 700;
        font-size: 18px;
        line-height: 133%;
        color: var(--blue-main);
    }

    .offerPBMainCardButtons {
        display: flex;
        width: 100%;
        justify-content: space-around;
        align-items: center;
    }

        .offerPBMainCardButtons a {
            width: 100%;
            margin-top: 25px;
            margin-bottom: 25px;
            height: 64px;
            display: flex;
            align-items: center;
            background: linear-gradient(95deg, #3c74e5 0%, #74a2ff 100%);
            color: rgb(255, 255, 255);
            font-size: 18px;
            font-weight: 400;
            box-shadow: #444 0px 0px 6px -2px;
        }

    .offerPBRightPanel {
        width: 100%;
    }

    .offerPBNameOfferBlock {
        background: rgb(255, 255, 255);
        border-radius: 10px;
        padding: 16px;
        margin-bottom: 20px;
        overflow: hidden;
        border: 1px solid var(--green-middlegray);
    }

    .offerNameWithRating {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .offerRating {
        display: flex;
        font-size: 12px;
        align-items: center;
        font-weight: bolder;
    }

    .offerNameWithActions {
        display: flex;
        flex-flow: row;
        align-items: center;
        margin-bottom: 24px;
        justify-content: space-between;
    }

        .offerNameWithActions h1 {
            font-size: 16px;
            margin-right: 4px;
        }

    .offerActions {
        display: flex;
        margin-left: 20px;
        position: relative;
    }

        .offerActions a {
            display: flex;
            margin-right: 12px;
            width: 40px;
            height: 40px;
            align-items: center;
            font-size: 20px;
            font-weight: 100;
            background: linear-gradient(95deg, #3c74e5 0%, #74a2ff 100%);
            color: #fff !important;
        }

        .offerActions i:before {
            background: #fff !important;
        }

        .offerActions .likebtnincard {
            position: relative;
            left: 0px;
            top: 0px;
        }

    .catalogCategory {
        display: flex;
        flex-flow: row;
        align-items: stretch;
        width: 100%;
        margin: 0px auto 16px;
        overflow: scroll;
        -ms-overflow-style: none;
        /* Скрыть полосы прокрутки веб-браузера Internet Explorer */
        scrollbar-width: none;
        /* Скрыть полосы прокрутки */
        scroll-behavior: smooth;
        padding-left: 16px;
        justify-content: stretch;
    }

        .catalogCategory .category-v1 {
            border: 1px solid var(--green-lightgray);
            background: rgb(255, 255, 255);
            min-width: 96px;
            height: 64px;
            padding: 8px;
            line-height: 14px;
            border-radius: 10px;
            font-size: 10px;
            transition: all 0.3s ease 0s;
            margin-right: 4px;
        }

            .catalogCategory .category-v1 i {
                font-size: 20px;
            }

            .catalogCategory .category-v1 .category-v1-image {
                margin-bottom: 0px;
            }

        .catalogCategory .category-v1-text {
            width: 80%;
            line-height: 11px;
        }

        .catalogCategory .category-v1.active {
            border: 1px solid var(--blue-main);
            transition: all 0.1s ease 0s;
            cursor: pointer;
            color: var(--blue-main);
        }

        .catalogCategory .category-v1:hover {
            border: 1px solid var(--blue-main);
            transition: all 0.1s ease 0s;
            cursor: pointer;
            color: var(--blue-main);
        }

    .swiper-container-reviews-parent {
        margin-bottom: 43px;
    }

    .review-pattern {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 20px;
        background: rgb(255, 255, 255);
        margin-bottom: 8px;
        border: 3px solid transparent;
        /* Меняем на одну строку, чтобы явно указать цвет */
        /*border-image: linear-gradient(-60deg, rgb(60, 128, 229) 0%, rgb(104, 161, 244) 10.76%, rgb(185, 218, 159) 61.17%, rgb(150, 204, 107) 100%);*/
        border-image-slice: 1;
        overflow: hidden;
        /* Добавляем это свойство */
        border-radius: 15px;
    }

    .review-pattern-top {
        display: flex;
        margin-bottom: 16px;
    }

    .review-pattern-img {
        width: 32px;
        height: 32px;
        object-fit: cover;
        margin-right: 16px;
        border-radius: 100%;
        background: rgb(89, 139, 242);
    }

    .review-pattern-name {
        color: rgb(60, 60, 60);
        font-weight: 300;
        font-size: 12px;
    }

        .review-pattern-name b {
            color: rgb(60, 60, 60);
            font-weight: 500;
            font-size: 14px;
            margin-bottom: 7px;
        }

    .review-pattern-bottom {
        font-weight: 300;
        font-size: 12px;
        line-height: 140%;
    }

    .text-transparent {
        color: rgba(0, 0, 0, 0);
    }

    .agentCardInterests {
        display: flex;
        align-items: flex-start;
        font-size: 10px;
        margin-bottom: 8px;
        font-weight: 300;
    }

        .agentCardInterests .agentTagPin {
            margin-right: 0;
            visibility: collapse;
            width: 0;
        }

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

    .agentTagHeader {
        font-weight: 400;
        font-size: 10px;
        color: rgb(68, 68, 68);
        margin-bottom: 6px;
    }

    .agentTagList {
        display: flex;
        flex-wrap: wrap;
    }

        .agentTagList .agentTag {
            margin-right: 4px;
            margin-bottom: 8px;
            border: 0.40px solid var(--blue-main);
            border-radius: 15px;
            padding: 6px 8px;
            box-shadow: 2px 2px 4px 0 rgba(60, 116, 229, 0.1);
            font-weight: 500;
            font-size: 8px;
            color: var(--blue-main);
        }

    .AgentFilter .dropdown {
        padding: 0px;
    }

        .AgentFilter .dropdown .btn {
            height: 64px;
            border-radius: 10px;
            color: rgb(68, 68, 68);
            padding-top: 20px;
        }

    .container-select-category {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        color: rgb(255, 255, 255);
        padding-left: 20px;
    }

    .selected-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 14px;
    }

        .selected-item .remove-item {
            text-decoration: none;
            color: rgb(255, 255, 255);
            font-style: normal;
        }

    .ADVERTISEMENT {
        grid-column: 1 / span 2;
    }

        .ADVERTISEMENT.ADBlock2 {
            margin: 16px 0px;
            padding: 0px;
            width: 98%;
        }

    .dropdown-item.active,
    .dropdown-item:active {
        background: linear-gradient(241deg, rgb(60, 128, 229) 0%, rgb(104, 161, 244) 43.99%, rgb(150, 204, 107) 96.94%);
    }

    .bread-crumbs {
        display: flex;
        white-space: nowrap;
        list-style: none;
    }

        .bread-crumbs li:not(:last-child)::after {
            content: "/";
            margin-left: 4px;
            margin-right: 4px;
            color: rgb(184, 184, 184);
        }

        .bread-crumbs li a {
            color: rgb(68, 68, 68);
            font-weight: 300;
            font-size: 16px;
        }

        .bread-crumbs li.active a {
            color: rgb(68, 68, 68);
            font-weight: 700;
            font-size: 16px;
            margin-right: 4px;
        }

    .card {
        border-radius: 24px !important;
    }

    .articleblock {
        padding: 50px 0px;
    }

        .articleblock h3,
        .articleblock h1,
        .articleblock h2 {
            font-size: 24px;
            font-weight: 600;
            line-height: 30px;
            overflow-wrap: break-word;
            margin-top: 12px;
            margin-bottom: 20px;
            font-family: Roboto;
        }

        .articleblock img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .articleblock p {
            font-size: 18px;
        }

    .blockHeight {
        margin-bottom: 0px;
        height: 368px !important;
    }

        .blockHeight .card-body {
            padding: 10px 12px;
        }

    .card-img-top {
        height: 178px;
        object-fit: cover;
        border-radius: 10px !important;
    }

    .v8_160 {
        font-family: Roboto;
        font-size: 0.68rem;
        opacity: 1;
        text-align: left;
        padding: 5px 8px;
        border-radius: 12px;
        position: absolute;
        bottom: 10px;
        left: 10px;
        color: rgb(63, 58, 63) !important;
        background-color: rgb(253, 253, 253) !important;
    }

    .blockHeight .card-body {
        padding: 10px 12px;
    }

    .v8_163 {
        background: rgba(255, 255, 255, 0);
        padding: 8px;
        opacity: 1;
        border-radius: 16px;
        overflow: hidden;
        display: flex;
        place-content: center flex-start;
    }

        .v8_163 .btn {
            background: rgba(255, 255, 255, 0.62);
            color: rgb(69, 67, 69);
            width: 100%;
            margin: 0px 5px;
            box-shadow: rgba(0, 0, 0, 0.07) 0px 4px 12px 0px;
            border-radius: 12px;
        }

    .containerCreateRequestMain {
        margin: 0px auto;
        width: 98% !important;
    }

    .urchoice {
        padding-left: 8px !important;
        text-align: left;
    }

    .bg-grey {
        background: rgb(244, 243, 245);
        padding: 0px 0px 176px !important;
    }

    .containerCreateRequest .card {
        font-style: normal;
        background: rgb(255, 255, 255);
        border: 0.5px solid rgb(225, 227, 230);
        border-radius: 24px;
        padding: 24px 20px 24px 24px;
    }

        .containerCreateRequest .card .CRsubheader {
            font-weight: 400;
            font-size: 16px;
            line-height: 20px;
            letter-spacing: -0.01em;
            color: rgb(0, 0, 0);
            max-height: 250px;
            margin-bottom: 16px;
            text-align: left;
        }

        .containerCreateRequest .card .CRsubheaderHelp {
            overflow: hidden;
            color: rgb(82, 78, 74);
            text-overflow: ellipsis;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 22px;
        }

        .containerCreateRequest .card .CRheader {
            font-weight: 600;
            font-size: 24px;
            text-align: left;
            line-height: 29px;
            letter-spacing: -0.01em;
            color: rgb(0, 0, 0);
            margin-bottom: 16px;
        }

        .containerCreateRequest .card ul li {
            font-size: 13px;
            padding: 5px 0px;
            font-weight: 500;
            text-align: left;
        }

    .containerCreateRequest .stepps {
        bottom: -10px;
        left: 0px;
        z-index: 1;
    }

    .containerCreateRequest .form-check {
        font-size: 13px;
        line-height: 15px;
        color: rgb(82, 78, 74);
        margin: 12px 0px 0px;
    }

    .containerCreateRequest .form-check-input {
        width: 20px;
        height: 20px;
    }

        .containerCreateRequest .form-check-input:checked {
            background-color: rgb(254, 138, 101);
            border-color: rgb(254, 138, 101);
        }

    .containerCreateRequest .form-check .form-check-label {
        margin-left: 10px;
        width: 90%;
    }

    .containerCreateRequest .notFoundTextHeader {
        font-style: normal;
        font-weight: 700;
        font-size: 48px;
        color: rgb(254, 138, 101);
        text-align: center;
    }

    .containerCreateRequest .notFoundText {
        font-family: Roboto;
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 19px;
        text-align: center;
        letter-spacing: -0.01em;
        color: rgb(82, 78, 74);
    }

    .containerCreateRequest .form-control {
        margin-bottom: 8px;
        background: rgb(255, 255, 255);
        border: 0.5px solid rgb(225, 227, 230);
        border-radius: 12px;
        min-height: 64px;
        font-family: Roboto;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 19px;
        padding: 20px;
    }

    .containerForCodeNum .input-group input {
        font-family: Roboto;
        text-align: center;
        margin-right: 10px;
        background: rgb(245, 245, 245);
        font-size: 24px;
        height: 70px;
        border-radius: 12px !important;
        max-width: 25% !important;
    }

    .containerCreateRequest .input-group input {
        font-family: Roboto;
        text-align: center;
        margin-right: 10px;
        background: rgb(245, 245, 245);
        font-size: 24px;
        border-radius: 12px !important;
        max-width: 25% !important;
    }

    .containerCreateRequest .form-control::placeholder {
        color: rgb(153, 153, 153);
    }

    .xbtn-group {
        display: flex;
        margin: 0px;
        place-content: center flex-end;
        align-items: center;
    }

        .xbtn-group a {
            min-width: 20% !important;
        }

        .xbtn-group .btn-orange {
            margin-left: 5px;
            width: 100%;
        }

    .sampleName {
        background: rgb(211, 189, 240);
        padding: 8px;
        border-radius: 24px;
        white-space: nowrap;
        margin-bottom: 8px;
        margin-right: 4px;
        color: rgb(255, 255, 255);
        display: inline-block;
    }

        .sampleName:hover {
            text-decoration: none;
            color: rgb(255, 255, 255);
            background: rgb(199, 172, 235);
        }

    .share-menu {
        display: none;
        position: absolute;
        background-color: white;
        padding: 10px;
        border: 1px solid rgb(204, 204, 204);
        border-radius: 5px;
        z-index: 1000;
    }






    .aboutServiceStart {
        background: url("path_to_image");
        height: 660px;
        background: url(/images/design/about-mob.webp) rgb(79 133 238);
        background-size: cover;
        display: flex;
        flex-direction: column;
        border-radius: 30px;
        place-content: center;
        align-items: center;
        color: rgb(255, 255, 255);
        width: 100%;
        margin: 0px auto 90px;
        /* padding-top: 168px; */
    }

        .aboutServiceStart h1 {
            text-shadow: 4px 0 10px 0 rgba(0, 0, 0, 0.1);
            margin-bottom: 28px;
            width: 71%;
            font-weight: 600;
            font-size: 32px;
            line-height: 119%;
            text-align: center;
            color: var(--blue-dark);
        }

        .aboutServiceStart p {
            width: 79%;
            margin-bottom: 50px;
            font-weight: 400;
            font-size: 14px;
            line-height: 143%;
            text-align: center;
            color: var(--white);
        }

    .word-white {
        color: white;
    }

    .aboutServiceStart .ButtonsBlock {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .aboutServiceStart .ButtonsBlock .btn-register {
            border: 1px solid var(--blue-main);
            border-radius: 10px;
            padding: 16px;
            width: 85%;
            height: 60px;
            background: var(--blue-main);
            font-weight: 500;
            font-size: 20px;
            text-align: center;
            margin-right: 0;
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
        }

        .aboutServiceStart .ButtonsBlock .btn-demo {
            border-radius: 10px;
            padding: 16px;
            width: 85%;
            height: 60px;
            font-weight: 500;
            font-size: 20px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(4px);
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
        }

    .aboutServiceSecond {
        display: flex;
        width: 92%;
        margin: 0 auto;
        margin-top: -125px;
        margin-bottom: 50px;
        flex-direction: column;
    }

        .aboutServiceSecond .abSSecondBlock {
            border-radius: 15px;
            padding: 15px 15px 15px 15px;
            /* width: 328px; */
            height: 62px;
            margin-right: 0;
            font-family: var(--font-family);
            font-weight: 500;
            font-size: 20px;
            line-height: 120%;
            color: var(--dark);
            position: relative;
            border: 1px solid var(--blue-main);
            box-shadow: 4px 0 10px 0 rgba(0, 0, 0, 0.1);
            background: var(--white);
            margin-bottom: 8px;
            display: flex;
        }

            .aboutServiceSecond .abSSecondBlock p {
                width: 80%;
                font-weight: 500;
                font-size: 14px;
                line-height: 114%;
                color: var(--dark);
                margin-bottom: 0;
                margin-left: 20px;
                display: flex;
                align-items: center;
            }


    .WillSuit {
        margin-top: 110px;
        width: 100%;
        margin: 0 auto;
        margin-bottom: 29px;
    }

        .WillSuit h2 {
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-family);
            margin-bottom: 18px;
            font-size: 18px;
            line-height: 333%;
            text-transform: uppercase;
            text-align: center;
            background: linear-gradient(95deg, #3c74e5 0%, #74a2ff 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700 !important;
        }

    .BlocksWillSuit {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 92%;
        margin: 0 auto;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

        .BlocksWillSuit .Block {
            background: url(/images/design/banners/VamPodoidet_mob.svg);
            background-size: contain;
            background-repeat: no-repeat;
            height: 146px;
            width: 200px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .BlocksWillSuit .Block p {
                display: flex;
                width: 70%;
                text-align: left;
                font-weight: 400;
                font-size: 12px;
                line-height: 117%;
                color: var(--dark);
                margin-top: 30px;
            }



    .DoPartnershpNetwork {
        width: 92%;
        margin: 0px auto 40px;
    }

        .DoPartnershpNetwork .banner {
            background: url(/images/design/banners/build_your_partnership_logo_mob.png);
            background-size: cover;
            width: 100%;
            height: 345px;
            border-radius: 15px;
            margin-right: 0;
            position: relative;
            box-shadow: 4px 0 10px 0 rgba(0, 0, 0, 0.1);
        }

            .DoPartnershpNetwork .banner h4 {
                position: absolute;
                left: 20px;
                top: 151px;
                width: 69%;
                font-weight: 500;
                font-size: 20px;
                line-height: 110%;
                color: var(--dark);
            }

        .DoPartnershpNetwork .DoPartnershpNetworkLogo {
            background: url('/images/design/banners/build_your_partnership_logo_mob.svg');
            background-repeat: no-repeat;
            width: 100px;
            height: 20px;
            position: absolute;
            z-index: 0;
            left: 54%;
            top: 178px;
        }

        .DoPartnershpNetwork .banner p {
            position: absolute;
            left: 20px;
            top: 203px;
            font-weight: 400;
            font-size: 12px;
            line-height: 150%;
            color: var(--dark);
            width: 80%;
        }

        .DoPartnershpNetwork .banner a {
            background: linear-gradient(275deg, #56a050 0%, #96cc6b 94.46%);
            font-family: var(--font-family);
            position: absolute;
            left: 20px;
            top: 275px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            padding: 16px;
            width: 90%;
            height: 40px;
            font-weight: 500;
            font-size: 14px;
            text-align: center;
            color: var(--white);
        }


    .MoreFeatures {
        width: 100%;
        margin: 0px auto 90px;
        /* padding: 0px 100px; */
    }

        .MoreFeatures h2 {
            font-size: 18px;
            line-height: 156%;
            text-transform: uppercase;
            text-align: center;
            color: var(--dark);
            width: 60%;
            margin: 0 auto;
            margin-bottom: 27px;
        }

            .MoreFeatures h2 span {
                position: relative;
            }

                .MoreFeatures h2 span::before {
                    content: "";
                    position: absolute;
                    top: -5px;
                    left: -14px;
                    right: 0;
                    bottom: 0;
                    background: url('/images/design/banners/span-green.svg') no-repeat center center;
                    background-size: contain;
                    z-index: -1;
                    height: 31px;
                    width: 137px;
                    /* opacity: 0.5; */
                    /* width: 212px; */
                }

    .aboutServiceFeatures {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
        position: relative;
        flex-direction: row;
        width: 100%;
        padding: 0 16px;
    }

        .aboutServiceFeatures div {
            width: 50%;
            display: flex;
            flex-direction: column;
        }

        .aboutServiceFeatures h3 {
            font-family: var(--font-family);
            margin-bottom: 8px;
            font-weight: 700;
            font-size: 16px;
            line-height: 150%;
            text-transform: uppercase;
            background: linear-gradient(275deg, #56a050 0%, #96cc6b 94.46%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .aboutServiceFeatures p {
            font-family: var(--font-family);
            font-weight: 400;
            font-size: 12px;
            line-height: 133%;
            color: var(--dark);
            width: 80%;
        }



    .aboutServiceFeatures-w {
        border-radius: 15px;
        background: white;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
        position: relative;
        flex-direction: row;
        width: 98%;
        padding: 0 16px;
    }

        .aboutServiceFeatures-w div {
            width: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .aboutServiceFeatures-w h3 {
            font-family: var(--font-family);
            margin-bottom: 7px;
            text-transform: uppercase;
            background: linear-gradient(275deg, #56a050 0%, #96cc6b 94.46%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
            font-size: 16px;
            line-height: 137%;
        }

        .aboutServiceFeatures-w p {
            font-family: var(--font-family);
            font-weight: 400;
            font-size: 12px;
            line-height: 133%;
            color: var(--dark);
        }

    .Feature-1-img-block {
        display: none !important;
    }

    .Feature-1-img {
        width: 560px;
    }

    .Feature-1-text {
        width: 100% !important;
        padding-left: 16px;
    }

    .Feature-2-img-block {
    }

    .Feature-2-img {
        width: 189px;
        display: flex;
        justify-content: flex-end;
    }

    .Feature-2-text {
        /* padding: 28px 29px 0 25px; */
        padding: 28px 0;
    }

    .Feature-3-img-block {
        display: flex;
        align-items: center;
    }

    .Feature-3-img {
        width: 118px;
    }

    .Feature-3-text {
    }

    .Feature-4-img-block {
    }

    .Feature-4-img {
        width: 147px;
        justify-content: center;
        display: flex;
        align-items: center;
    }

    .Feature-4-text {
        padding: 28px 0;
    }

    .Feature-5-img-block {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .Feature-5-img {
        height: 248px;
    }

    .Feature-5-text {
    }


    .PeopleTrust {
        text-align: center;
        font-weight: 500;
        font-size: 40px;
        text-align: center;
        color: var(--blue-dark);
        margin-bottom: 110px;
        width: 100%;
        margin: 0px auto 90px;
        /* padding: 0px 100px; */
    }

        .PeopleTrust h2 {
            font-family: var(--font-family);
            font-weight: 600;
            font-size: 18px;
            text-align: center;
            color: var(--dark);
            margin-bottom: 10px;
        }

            .PeopleTrust h2 span {
                background: linear-gradient(95deg, #3c74e5 0%, #74a2ff 100%);
                background-clip: text;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

    .TrustedCompany {
        border-radius: 15px;
        padding: 20px 15px;
        width: 188px;
        height: 189px;
        background: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .TrustedCompany img {
            display: flex;
            border-radius: 90px;
            width: 60px;
            height: 60px;
            justify-content: center;
            align-items: center;
            margin-bottom: 16px;
        }

        .TrustedCompany h6 {
            font-weight: 500;
            font-size: 14px;
            color: #444;
        }



    .Subscriptions {
        margin-bottom: 109px;
        width: 100%;
        margin: 0px auto 0px;
        /* padding: 0px 100px; */
    }

        .Subscriptions h2 {
            font-family: var(--font-family);
            margin-bottom: 24px;
            font-weight: 700;
            font-size: 18px;
            line-height: 133%;
            text-transform: uppercase;
            text-align: center;
            color: var(--dark);
        }

            .Subscriptions h2 span {
                background: linear-gradient(137deg, #79d760 0%, #438cfc 100%);
                background-clip: text;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

    .TryIt {
        width: 100%;
        margin: 0px auto 24px;
        padding: 0px 16px;
    }

        .TryIt .banner {
            background: url(/images/design/banners/tryit_mob.svg);
            background-size: cover;
            display: flex;
            width: 100%;
            height: 388px;
            align-items: center;
            place-content: center;
            border-radius: 15px;
            padding: 30px;
            margin-right: 20px;
            position: relative;
        }

            .TryIt .banner h4 {
                font-family: var(--font-family);
                position: absolute;
                top: 27px;
                left: 20px;
                font-weight: 500;
                font-size: 20px;
                line-height: 140%;
                color: var(--white);
            }

    .TryItFreeLogo {
        padding: 3px 5px;
        background: url(/images/design/banners/tryitfree_logo_mob.svg);
        background-size: inherit;
        background-repeat: no-repeat;
    }


    .TryIt .banner p {
        font-family: var(--font-family);
        position: absolute;
        top: 92px;
        width: 54%;
        left: 20px;
        font-weight: 400;
        font-size: 12px;
        line-height: 133%;
        color: var(--white);
    }

    .TryIt .banner a {
        background: var(--white);
        border: 1px solid var(--white);
        border-radius: 10px;
        padding: 14px 32px;
        width: 90%;
        height: 47px;
        position: absolute;
        top: 140px;
        left: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }


    .btn-group-radio-respond {
        width: 100%;
        background: #F5F5F5;
        padding: 3px;
        border-radius: 14px;
        height: 56px;
    }

        .btn-group-radio-respond label {
            /* border: 2px #F5F5F5 solid; */
            padding: 12px;
            font-family: 'Roboto';
            font-style: normal;
            font-weight: 400;
            font-size: 16px;
            /* line-height: 19px; */
            /* identical to box height */
            letter-spacing: -0.01em;
            color: #000000;
            border-radius: 12px;
            width: 50%;
        }

    .testimonial-group .btn-check:checked + .btn {
        transition: .5s;
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        letter-spacing: -0.01em;
        border-radius: 12px;
        color: #ffffff;
        background: #fe8a65 !important;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.07);
        border: #fff0;
        /* height: 48px; */
    }

    .btn-check:checked + .btn {
        transition: .5s;
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        letter-spacing: -0.01em;
        border-radius: 12px;
        color: #000000;
        background: #FFFFFF !important;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.07);
        border: #fff0;
        /* height: 48px; */
    }

    .status-error {
        display: flex;
        min-height: 700px !important;
        align-items: center;
        align-content: center;
    }

        .status-error h1 {
            color: var(--blue-main);
            font-size: 48px;
            font-style: normal;
            font-weight: 700;
            line-height: 46px;
        }

        .status-error h5 {
            color: var(--gray_250_text, #8A8683);
            text-align: center;
            font-size: 19px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            margin-bottom: 42px;
        }

    .btnStatusError {
        display: flex;
        flex-direction: column;
        align-content: stretch;
    }

        .btnStatusError a {
            margin: 6px;
            border-radius: 12px !important;
            background: #fff;
        }




    .WillBeUseFull {
        width: 100%;
        margin: 0px auto 24px;
        padding: 0px 16px;
    }

        .WillBeUseFull h2 {
            color: var(--dark);
            margin-bottom: 20px;
            font-size: 18px;
            line-height: 133%;
            text-transform: uppercase;
            text-align: center;
        }

    #isshowTabContent {
        max-width: 100% !important;
    }

        #isshowTabContent .swiper {
            overflow-x: hidden;
        }

    .WillBeUseFull ul {
        width: 100%;
        MARGIN: 0 auto;
        margin-bottom: 20px !important;
        height: 40px;
        background: var(--white) !important;
        font-weight: 400;
        font-size: 20px;
        text-align: center;
        color: var(--blue-main);
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        border-radius: 10px;
    }

        .WillBeUseFull ul.tabsASbtn li {
            display: flex;
            align-items: center;
        }

            .WillBeUseFull ul.tabsASbtn li button.active {
                width: 100%;
                border: none;
                border-radius: 8px;
                box-shadow: 4px 0 10px 0 rgba(0, 0, 0, 0.1);
                background: linear-gradient(95deg, #3c74e5 0%, #74a2ff 100%);
                text-align: center;
                color: var(--white);
                font-weight: 500;
                font-size: 10px;
            }

            .WillBeUseFull ul.tabsASbtn li button {
                padding: 10px;
                height: 40px;
                border-radius: 15px;
                text-align: center;
                color: var(--blue-main);
                font-weight: 500;
                font-size: 10px;
                display: flex;
                justify-content: center;
                align-items: center;
                width: 100%;
            }


    .usefullblock {
        box-shadow: 4px 0 10px 0 rgba(0, 0, 0, 0.1);
        border: 1px solid var(--green-middlegray);
        position: relative;
        margin-bottom: 20px;
    }

        .usefullblock.usefull-2 {
            background: linear-gradient(95deg, #3c74e5 0%, #74a2ff 100%);
            border-radius: 15px;
            padding: 20px;
            width: 100%;
            height: 225px;
        }

            .usefullblock.usefull-2 img {
                position: absolute;
                width: 283px;
                right: -6px;
                bottom: -4px;
            }

        .usefullblock.usefull-1 {
            background: linear-gradient(275deg, #56a050 0%, #96cc6b 94.46%);
            border-radius: 15px;
            padding: 20px;
            width: 100%;
            height: 225px;
            overflow: hidden;
        }

            .usefullblock.usefull-1 img {
                position: absolute;
                width: 207px;
                right: -9px;
                bottom: 9px;
                transform: scaleX(-1);
            }

    .usefull-2 .usefull-text-block h3 {
        width: 421px;
        color: var(--white);
        font-weight: 500;
        font-size: 16px;
        line-height: 125%;
    }

    .usefull-2 .usefull-text-block p {
        color: var(--white);
        width: 330px;
        font-weight: 400;
        font-size: 14px;
        line-height: 114%;
    }

    .usefull-1 .usefull-text-block h3 {
        width: 229px;
        margin-bottom: 20px;
        color: var(--white);
        font-weight: 500;
        font-size: 16px;
        line-height: 125%;
    }

    .usefull-1 .usefull-text-block p {
        width: 158px;
        color: var(--white);
        font-weight: 400;
        font-size: 14px;
        line-height: 114%;
    }

    .usefull-tab-blocks-static {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr;
        position: relative;
        justify-items: center;
    }

    .usefull-card {
        /* box-shadow: 4px 0 10px 0 rgba(0, 0, 0, 0.1); */
        background: var(--white);
        height: 440px;
        margin-right: 20px;
        border: 1px solid var(--green-middlegray);
        border-radius: 15px;
        padding: 20px;
        width: 100%;
    }

        .usefull-card:last-child {
            margin-right: 0px;
        }

    .usefull-sdelno-bg-1 {
        background-image: url(/images/design/banners/usefull-sdelno-1.svg);
        background-position: bottom left;
        background-repeat: no-repeat;
        background-size: auto;
    }

    .usefull-sdelno-bg-2 {
        background-image: url(/images/design/banners/usefull-sdelno-2.svg);
        background-position: bottom left;
        background-repeat: no-repeat;
        background-size: auto;
    }

    .usefull-card-header {
        font-weight: 500;
        font-size: 20px;
        line-height: 140%;
        color: var(--dark);
        margin-bottom: 20px;
    }

    .usefull-card-text {
        font-weight: 400;
        font-size: 20px;
        line-height: 140%;
        color: var(--dark);
    }
}

@media (min-width: 768px) {
    
.shiny::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  background: linear-gradient(to bottom, rgba(229, 172, 142, 0), rgba(255,255,255,0.5) 50%, rgba(229, 172, 142, 0));
  transform: rotateZ(60deg) translate(-5em, 7.5em);
}

.shiny:after, .shiny:after { 
  animation: sheen 2s forwards;
  animation-iteration-count:infinite;
   animation-fill-mode: forwards; 
}

@keyframes sheen {
  100% {
    transform: rotateZ(60deg) translate(1em, -9em);
  }
}
.shiny {
  background: #ffffff;
  color: #4b7fe4;
  font-size: 14px;
  border-radius: 0.7em;
  padding: 0.5em 1em;
  position: relative;
  overflow: hidden;
  line-height: 32px;
}

    .modal-information-auth {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        text-align: center;
        padding: 50px;
    }
    .categoriesModal-content {
        padding: 40px;
    }

    .categoriesModal-content-header {
        font-weight: 500;
        font-size: 24px;
        line-height: 100%;
        color: var(--dark);
        margin-bottom: 20px;
    }

    .categoriesModal-content-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

        .categoriesModal-content-grid .categoriesModal-content-grid-column p {
            font-weight: 500;
            font-size: 16px;
            line-height: 150%;
            color: var(--dark);
        }

        .categoriesModal-content-grid .categoriesModal-content-grid-column .agreeBlock {
            margin-bottom: 10px;
        }

    .categoriesModal-content-grid-column .form-control {
        background: var(--green-middlegray);
        border-radius: 10px;
        padding: 10px 20px;
        height: 56px;
    }

    .inputMoney {
        position: relative;
        font-weight: 400;
        font-size: 10px;
        color: var(--green-gray);
        width: 98%
    }

        .inputMoney label {
            position: absolute;
            left: 10px;
        }

    .categoriesModal-content-grid-block {
        margin-bottom: 20px;
    }

    .mob-catalog-subblock-checks {
        display: grid;
        margin-bottom: 12px;
    }

        .mob-catalog-subblock-checks.mob-catalog-subblock-checks-2col {
            grid-template-columns: 1fr 1fr;
        }


    .categoriesModal-content-search {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .categoriesModal-content-search .btn-clear-mob-filter {
            font-weight: 400;
            font-size: 16px;
            text-align: center;
            color: var(--green-light);
        }

        .categoriesModal-content-search .btn-action {
            background: var(--green-light);
            border-radius: 10px;
            padding: 20px;
            width: 220px;
            height: 60px;
            color: #fff;
            font-weight: 500;
            font-size: 16px;
            text-align: center;
            color: var(--white);
            margin-left: 12px;
        }



    .app-container {
        margin-top: 64px;
    }

    .agentCard.post {
        height: 183px;
        width: 793px;
        padding: 0px;
        border: 0px;
        border-radius: 20px;
    }

        .agentCard.post .line {
            float: left;
            height: 423px;
            border-radius: 15px;
            background-image: linear-gradient(90deg, rgb(238, 238, 238) 0px, rgb(233, 233, 233) 40px, rgb(238, 238, 238) 80px);
            background-size: 793px;
            animation: 2.6s linear 0s infinite normal none running shine-lines-agent;
        }

        .agentCard.post .avatar + .line {
            width: 800px;
        }

        .agentCard.post .line ~ .line {
            background-color: rgb(221, 221, 221);
        }

    .programmOffer.post {
        height: 423px;
        width: 285px;
    }

        .programmOffer.post .line {
            float: left;
            height: 423px;
            border-radius: 15px;
            background-image: linear-gradient(90deg, rgb(238, 238, 238) 0px, rgb(233, 233, 233) 40px, rgb(238, 238, 238) 80px);
            background-size: 600px;
            animation: 1.6s linear 0s infinite normal none running shine-lines;
        }

        .programmOffer.post .avatar + .line {
            width: 100px;
        }

        .programmOffer.post .line ~ .line {
            background-color: rgb(221, 221, 221);
        }

    @keyframes shine-lines-agent {
        0% {
            background-position: -100px center;
        }

        40%, 100% {
            background-position: 800px center;
        }
    }

    @keyframes shine-lines {
        0% {
            background-position: -100px center;
        }

        40%, 100% {
            background-position: 400px center;
        }
    }

    @keyframes shine-avatar {
        0% {
            background-position: -32px center;
        }

        40%, 100% {
            background-position: 408px center;
        }
    }

    .bg-blue-gradient-v1 {
        background: linear-gradient(95deg, rgb(60, 116, 229) 0%, rgb(116, 162, 255) 100%) !important;
    }

    .bg-green-gradient-v1 {
        background: linear-gradient(rgb(131, 206, 147) 0%, rgb(9, 76, 59) 100%) !important;
    }

    body {
        background: rgb(245, 245, 245) !important;
        color: rgb(68, 68, 68) !important;
        font-family: -apple-system, BlinkMacSystemFont, Inter, Roboto, Helvetica, Arial, sans-serif !important;
    }

    hr {
        margin-top: 1rem;
        margin-bottom: 1rem;
        border-width: 1px 0px 0px;
        border-right-style: initial;
        border-bottom-style: initial;
        border-left-style: initial;
        border-right-color: initial;
        border-bottom-color: initial;
        border-left-color: initial;
        border-image: initial;
        border-top-style: solid;
        border-top-color: rgba(0, 0, 0, 0.1);
    }


    .headerMenu {
        background: rgb(255, 255, 255);
        border-radius: 10px;
        height: 64px;
        display: flex;
        align-items: center;
        margin-bottom: 8px;
        position: fixed;
        width: 100%;
        margin-top: -64px;
        z-index: 9999;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 13px 0px;
    }

    .headerMenu-logo {
        display: flex;
        justify-content: flex-start;
        align-items: start;
        text-align: left;
    }

    .headerMenuContainerMob {
        display: none;
    }

    .mobileMenu {
        display: none;
    }

    .headerMenuContainer {
        width: 1200px;
        display: flex;
        margin: 0px auto;
        flex-flow: row;
        justify-content: space-between;
        align-items: center;
    }

    .headerMenu-logo img {
        width: 170px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
    }

    .headerMenu-items-container {
        display: none;
        position: relative;
    }

    .headerMenu-items {
        z-index: 9;
        position: relative;
        display: flex;
    }

        .headerMenu-items .switch {
            position: relative;
            width: 350px;
            display: flex;
            border: 1px solid rgba(255, 255, 255, 0.063);
            border-radius: 10px;
            justify-content: center;
            align-items: center;
            font-size: 14px;
            line-height: 8.75px;
            background: rgb(106, 155, 251);
            box-shadow: rgba(0, 0, 0, 0.12) 0px 0px 10px inset;
            overflow: hidden;
        }

            .headerMenu-items .switch::before {
                content: "  ";
                position: absolute;
                left: 0px;
                z-index: -1;
                width: 100%;
                height: 3rem;
                background: rgb(255, 255, 255);
                border-radius: 30px;
            }

        .headerMenu-items .switch__label {
            display: inline-block;
            width: 120px;
            cursor: pointer;
            transition: color 200ms ease-out 0s;
            text-align: center;
            padding: 15px;
            position: relative;
            z-index: 1;
            font-weight: 400;
            color: rgb(255, 255, 255);
        }

        .headerMenu-items .switch input[type="radio"]:checked + .switch__label {
            color: rgb(56, 109, 211);
            font-weight: 500;
            transition: all 0.3s ease 0s;
        }

        .headerMenu-items .switch__label:hover {
            color: white;
            transition: all 0.3s ease 0s;
        }

        .headerMenu-items .switch__indicator_top {
            height: 38.5px;
            line-height: 8.75px;
            position: absolute;
            top: 0px;
            left: 0px;
            background: rgb(7, 7, 7);
            border-radius: 8px;
            transition: transform 600ms cubic-bezier(0.02, 0.94, 0.09, 0.97) 0s, background 300ms cubic-bezier(0.17, 0.67, 0.14, 1.03) 0s;
            transform: translate3d(1rem, 0px, 0px);
        }

        .headerMenu-items .switch input#h_isonce2:checked ~ .switch__indicator_top {
            background: rgb(255, 255, 255);
            transform: translate3d(0rem, 0px, 0px);
            width: 115px;
            box-shadow: rgba(0, 0, 0, 0.28) 0px 0px 10px;
        }

        .headerMenu-items .switch input#h_ismany2:checked ~ .switch__indicator_top {
            background: rgb(255, 255, 255);
            width: 115px;
            box-shadow: rgba(0, 0, 0, 0.28) 0px 0px 10px;
            transform: translate3d(118px, 0px, 0px) !important;
        }

        .headerMenu-items .switch input#h_isinterval2:checked ~ .switch__indicator_top {
            background: rgb(255, 255, 255);
            width: 110px;
            box-shadow: rgba(0, 0, 0, 0.28) 0px 0px 10px;
            transform: translate3d(238px, 0px, 0px) !important;
        }

        .headerMenu-items .switch input[type="radio"]:not(:checked),
        .switch input[type="radio"]:checked {
            display: none;
        }

        .headerMenu-items .swiper-container-category-parent {
            overflow: hidden;
            padding-left: 0px;
            margin-right: 40px;
            margin-bottom: 48px;
        }

        .headerMenu-items .btn-accent {
            background: rgb(150, 204, 107);
            margin-left: 8px;
            padding: 8px 15px;
            box-shadow: #96cb6a 0px 0px 6px 0px;
            border-radius: 10px;
            color: rgb(255, 255, 255);
            text-decoration: none;
            display: flex;
            align-items: center;
            font-size: 14px;
        }

    .headerMenu-rightmenu {
        display: flex;
        font-size: 24px;
        align-items: center;
        margin-right: 5px;
    }

        .headerMenu-rightmenu ul {
            display: flex;
            align-items: center;
            flex-direction: row;
            list-style: none;
            margin-bottom: 0px;
        }

            .headerMenu-rightmenu ul li {
                line-height: 16.59px;
                font-size: 14px;
                font-weight: 400;
                display: flex;
                align-items: center;
                margin-left: 20px;
            }

                .headerMenu-rightmenu ul li a {
                    color: rgb(68, 68, 68);
                    text-decoration: none;
                    display: flex;
                    align-items: center;
                }

                    .headerMenu-rightmenu ul li a i {
                        margin-right: 0px;
                        font-size: 20px;
                    }

                        .headerMenu-rightmenu ul li a i.iconoir-profile-circle {
                            margin-right: 8px;
                            font-size: 20px;
                        }

    .headerAvatar {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        margin-right: 8px;
        border: 1.5px solid rgb(68, 68, 68);
        object-fit: cover;
    }

    .contactFooter {
        padding: 46px 100px;
        background: rgb(19, 49, 77);
        color: rgb(255, 255, 255);
        border-radius: 12px 12px 0px 0px;
        width: 1400px;
        margin: 0px auto;
    }

    footer .footer-logo {
        margin-bottom: 56px;
        width: 150px;
    }

    .footer-list {
        padding: 0px;
        list-style-type: none;
        margin-bottom: 0px;
    }

        .footer-list li {
            margin-bottom: 24px;
        }

        .footer-list a {
            color: rgb(255, 255, 255);
            text-decoration: none;
            font-size: 18px;
        }

    .writeUsBlock {
        display: flex;
        flex-direction: column;
        font-size: 18px;
        place-content: flex-end center;
        align-items: flex-end;
    }

        .writeUsBlock .btn {
            background: rgb(84, 136, 240);
            color: rgb(255, 255, 255);
            border-radius: 10px;
            padding: 12px 20px;
            width: 184px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: #5488f0 0px 0px 6px -2px;
            font-size: 14px !important;
        }

    .social-block {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        margin-bottom: 25px;
    }

        .social-block .social-icon {
            font-size: 21px;
            border-radius: 100%;
            background: rgb(255, 255, 255);
            height: 32px;
            width: 32px;
            margin: 5px;
            color: rgb(19, 49, 77);
            display: flex;
            align-items: center;
            place-content: center;
            text-decoration: none;
        }

    .social-rect {
        border-radius: 25% !important;
    }

    .agreeBlock {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
    }

        .agreeBlock label {
            margin-left: 0px;
        }

    .switch {
        position: relative;
        width: 400px;
        display: flex;
        border: 1px solid rgba(255, 255, 255, 0.063);
        border-radius: 15px;
        justify-content: center;
        align-items: center;
        font-size: 16px;
        line-height: 18.75px;
        background: rgba(255, 255, 255, 0.082);
    }

        .switch::before {
            content: "  ";
            position: absolute;
            left: 0px;
            z-index: -1;
            width: 100%;
            height: 3rem;
            background: rgb(0, 0, 0);
            border-radius: 30px;
        }

    .switch__label {
        display: inline-block;
        width: 140px;
        cursor: pointer;
        transition: color 200ms ease-out 0s;
        text-align: center;
        padding: 20px 30px;
        position: relative;
        z-index: 1;
        font-weight: 400;
    }

    .switch input[type="radio"]:checked + .switch__label {
        color: rgb(56, 109, 211);
        font-weight: 500;
        transition: all 0.3s ease 0s;
    }

    .switch__label:hover {
        color: white;
        transition: all 0.3s ease 0s;
    }

    .switch__indicator {
        height: 59px;
        line-height: 18.75px;
        position: absolute;
        top: 0px;
        left: 0px;
        background: blue;
        border-radius: 14px;
        transition: transform 600ms cubic-bezier(0.02, 0.94, 0.09, 0.97) 0s, background 300ms cubic-bezier(0.17, 0.67, 0.14, 1.03) 0s;
        transform: translate3d(1rem, 0px, 0px);
    }

    .switch input#isonce2:checked ~ .switch__indicator {
        background: rgb(255, 255, 255);
        transform: translate3d(0rem, 0px, 0px);
        width: 140px;
    }

    .switch input#ismany2:checked ~ .switch__indicator {
        background: rgb(240, 240, 240);
        transform: translate3d(138px, 0px, 0px);
        width: 140px;
    }

    .switch input#isinterval2:checked ~ .switch__indicator {
        background: rgb(240, 240, 240);
        transform: translate3d(278px, 0px, 0px);
        width: 120px;
    }

    .switch input[type="radio"]:not(:checked),
    .switch input[type="radio"]:checked {
        display: none;
    }

    .swiper-container-category-parent {
        overflow: hidden;
        padding-left: 0px;
        margin-right: 40px;
        margin-bottom: 48px;
    }

    .swiper-slidex {
        width: auto !important;
        margin-right: 31px !important;
    }

    .swiper-slide-review {
        width: auto !important;
        margin-right: 20px !important;
    }

    .swiper-container-reviews-parent {
        overflow: hidden;
        padding-left: 0px;
        margin-right: 0px;
        margin-bottom: 48px;
    }

    .btn-pos {
        border: none;
        font-size: 0.8rem;
        font-weight: 500;
        display: flex;
        justify-content: space-around;
        flex-wrap: nowrap;
        align-items: center;
        white-space: nowrap;
        color: rgb(63, 58, 63) !important;
        margin: 5px 5px 5px 0px !important;
        padding: 10px 20px !important;
        border-radius: 5px !important;
    }

        .btn-pos input {
            visibility: hidden;
            position: absolute;
            clip: rect(0px, 0px, 0px, 0px);
            pointer-events: none;
        }

        .btn-pos.active {
            color: rgb(255, 255, 255) !important;
            background: rgb(150, 204, 107) !important;
            box-shadow: #444 0px 0px 6px -2px;
        }

    .swiper-button-prev-unique {
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: center center;
        position: absolute;
        inset: auto 60px -30px auto;
        height: var(--swiper-navigation-size);
        margin-top: calc(-1 * var(--swiper-navigation-size)/ 2);
        z-index: 10;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--swiper-navigation-color, var(--swiper-theme-color));
        width: 45px;
        border: 2px solid rgb(255, 255, 255);
        border-radius: 50px;
        background-image: url("/images/MainPage/Group 31.svg") !important;
    }

    .swiper-button-prev-cat {
        font-weight: bold;
        font-size: 25px;
        border: 2px solid rgba(115, 115, 115, 0.1);
        border-radius: 5px;
        background: rgb(56, 109, 211);
        transform: rotate(45deg);
        top: 103px !important;
        color: rgb(255, 255, 255) !important;
        left: -71px !important;
        width: 40px !important;
        height: 40px !important;
    }

    .swiper-button-next.swiper-button-disabled,
    .swiper-button-prev.swiper-button-disabled {
        cursor: auto;
        pointer-events: none;
        opacity: 0 !important;
    }

    .swiper-button-prev-cat i {
        transform: rotate(315deg);
    }

    .swiper-button-prev::after {
        display: none;
    }

    .swiper-button-next-unique {
        rotate: 180deg;
        position: absolute;
        bottom: -30px;
        top: auto;
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: center center;
        height: var(--swiper-navigation-size);
        margin-top: calc(-1 * var(--swiper-navigation-size)/ 2);
        z-index: 10;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--swiper-navigation-color, var(--swiper-theme-color));
        right: 0px;
        width: 45px;
        border: 2px solid rgb(255, 255, 255);
        border-radius: 50px;
        background-image: url("/images/MainPage/Group 31.svg") !important;
    }

    .swiper-button-next-cat {
        font-weight: bold;
        font-size: 25px;
        border: 2px solid rgba(115, 115, 115, 0.1);
        border-radius: 5px;
        background: rgb(56, 109, 211);
        transform: rotate(45deg);
        top: 103px !important;
        color: rgb(255, 255, 255) !important;
        right: -50px !important;
        width: 40px !important;
        height: 40px !important;
    }

        .swiper-button-next-cat i {
            transform: rotate(-45deg);
        }

    .swiper-button-next::after {
        display: none;
    }

    .swiper-button-next-rev {
        font-weight: bold;
        font-size: 25px;
        border: 2px solid rgba(115, 115, 115, 0.1);
        border-radius: 5px;
        background: rgb(56, 109, 211);
        transform: rotate(45deg);
        top: 30px !important;
        color: rgb(255, 255, 255) !important;
        right: 15px !important;
        width: 40px !important;
        height: 40px !important;
    }

        .swiper-button-next-rev i {
            transform: rotate(-45deg);
        }

    .swiper-button-prev-rev {
        font-weight: bold;
        font-size: 25px;
        border: 2px solid rgba(115, 115, 115, 0.1);
        border-radius: 5px;
        background: rgb(56, 109, 211);
        transform: rotate(45deg);
        left: revert !important;
        top: 30px !important;
        color: rgb(255, 255, 255) !important;
        right: 91px !important;
        width: 40px !important;
        height: 40px !important;
    }

        .swiper-button-prev-rev i {
            transform: rotate(315deg);
        }

    .swiper-button-prev,
    .swiper-container-rtl .swiper-button-prev {
        right: auto;
        width: 40px !important;
    }

    .otherSides {
        display: flex;
        position: relative;
        justify-content: space-between;
    }

    .s2d {
        color: rgb(182, 182, 182);
        display: flex;
        align-items: flex-end;
        margin-left: 12px;
    }

    .custom-popover {
        display: none;
        position: absolute;
        background-color: rgb(245, 245, 245);
        box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px;
        z-index: 1000;
        border-radius: 15px;
        padding: 20px;
        width: 300px;
    }

        .custom-popover dl {
            display: flex;
            place-items: flex-start stretch;
            place-content: stretch space-around;
            flex-flow: column;
        }

    .custom-popover-condition {
        margin-bottom: 12px;
        background: linear-gradient(95deg, rgb(60, 116, 229) 0%, rgb(116, 162, 255) 100%);
        color: rgb(255, 255, 255);
        padding: 15px;
        border-radius: 15px;
    }

    .custom-popover a {
        border: none;
        padding: 0px;
        text-decoration: none;
        font-size: 12px;
        text-align: center;
        display: flex;
        justify-content: center;
        font-weight: 500;
    }

    .custom-popover-info {
        display: flex;
        justify-content: space-between;
        margin-bottom: 12px;
    }

        .custom-popover-info b {
            font-weight: 700;
            color: rgb(56, 109, 211);
        }

    h2 {
        font-size: 28px;
        font-weight: 600 !important;
    }

    .mainBlock {
        height: 612px;
        background: url("/images/design/first_image.webp") rgb(166, 166, 166);
        display: flex;
        flex-direction: column;
        border-radius: 30px;
        place-content: center;
        align-items: center;
        color: rgb(255, 255, 255);
        width: 1400px;
        margin: 0px auto 90px;
    }

        .mainBlock .deviz {
            font-size: 20px;
            line-height: 23.7px;
            margin-bottom: 65px;
            text-transform: uppercase;
        }

        .mainBlock h1 {
            font-size: 48px;
            margin-bottom: 65px;
        }

    .mainBlockCategory {
        display: flex;
        align-items: center;
        flex-direction: row;
        margin-bottom: 48px;
    }

        .mainBlockCategory .btn-group-radio {
            width: 100%;
            min-width: 270px;
            background: rgba(241, 244, 246, 0);
            border-radius: 15px;
            border: 1px solid rgb(211, 211, 211);
        }

            .mainBlockCategory .btn-group-radio label {
                padding: 20px 30px;
                font-family: Roboto;
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                letter-spacing: -0.01em;
                color: rgb(255, 255, 255);
                width: 50%;
                margin-bottom: 0rem;
                border-radius: 15px !important;
            }

        .mainBlockCategory .btn-check:checked + .btn {
            transition: all 0.5s ease 0s;
            font-family: Roboto;
            font-style: normal;
            font-weight: 400;
            font-size: 16px;
            letter-spacing: -0.01em;
            border-radius: 15px;
            color: rgb(0, 0, 0);
            box-shadow: rgba(0, 0, 0, 0.07) 0px 4px 12px;
            border: rgba(255, 255, 255, 0);
            background: rgb(255, 255, 255) !important;
        }

        .mainBlockCategory .btn-check + .btn {
            border-radius: 15px;
        }

        .mainBlockCategory .btn-accent {
            background: rgb(150, 204, 107);
            margin-left: 8px;
            padding: 20px;
            border-radius: 10px;
            color: rgb(255, 255, 255);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

    .catalogBlock .mainBlockFilter {
        margin-bottom: 45px;
    }

    .mainBlockFilterMob {
        display: none;
    }

    .mainBlockFilterMobDesk {
        display: flex;
        flex-flow: row;
        align-items: stretch;
        width: 1200px;
        margin: 0px auto 45px;
        justify-content: center;
        position: relative;
        z-index: 2;
        font-size: 15px;
    }

        .mainBlockFilterMobDesk .dropdown {
            background-color: var(--white);
            border: 1px solid transparent;
            width: auto;
            min-width: 0px;
            flex-grow: 1;
            margin: 0px 1px;
            font-size: 14px;
            display: flex;
            align-items: stretch;
            align-content: stretch;
            z-index: 3;
            width: auto !important;
            max-width: 220px;
        }

            .mainBlockFilterMobDesk .dropdown .dropdown-bootstrap-select {
                font-size: 14px;
                font-weight: 400;
                color: rgb(19, 49, 77);
                padding-left: 9px;
                padding-right: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

                .mainBlockFilterMobDesk .dropdown .dropdown-bootstrap-select.dropdown-toggle .filter-option {
                    display: flex !important;
                    align-items: center !important;
                }

            .mainBlockFilterMobDesk .dropdown:first-child {
                border-top-left-radius: 15px;
                border-bottom-left-radius: 15px;
            }

            .mainBlockFilterMobDesk .dropdown:last-of-type {
                border-top-right-radius: 15px !important;
                border-bottom-right-radius: 15px !important;
            }

        .mainBlockFilterMobDesk .btn-accent {
            flex-grow: 1;
            border-radius: 15px;
            padding: 20px 20px;
            background: linear-gradient(275deg, rgb(86, 160, 80) 0%, rgb(150, 204, 107) 94.46%);
            color: rgb(255, 255, 255);
            gap: 10px;
            font-size: 16px;
            white-space: nowrap;
            text-align: center;
            border: 1px solid transparent;
            height: 60px;
            margin-left: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 220px;
        }

            .mainBlockFilterMobDesk .btn-accent:hover {
                background: rgb(56, 109, 211);
            }

    .btn-accent {
        text-decoration: none;
    }

        .btn-accent:hover {
            cursor: pointer;
        }

    .mainBlockFilterMobDesk.btn-group > .btn-group:not(:last-child) > .btn,
    .btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
        border-top-right-radius: 15px !important;
        border-bottom-right-radius: 15px !important;
    }

    .ADBlock {
        display: flex;
        justify-content: flex-start;
        align-items: stretch;
        flex-flow: row;
        width: 1200px;
        margin: 0px auto 90px;
        padding: 0px;
        z-index: 0;
        position: relative;
    }

        .ADBlock .banner {
            display: flex;
            height: 214px;
            align-items: center;
            justify-content: center;
            border-radius: 15px;
            padding: 30px;
            color: rgb(255, 255, 255);
            margin-right: 20px !important;
            position: relative;
            box-shadow: #444 0px 0px 6px -2px;
            width: 285px !important;
        }

            .ADBlock .banner:hover {
                box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 20px 0px;
                transition: all 0.3s ease 0s;
            }

            .ADBlock .banner:last-child {
                margin-right: 0px;
            }

            .ADBlock .banner img {
                width: 57px;
                height: 57px;
                position: absolute;
                border-radius: 100%;
                object-fit: cover;
                right: 33px;
                top: 33px;
            }

            .ADBlock .banner h3 {
                font-weight: 700;
                font-size: 16px;
                left: 20px;
                top: 96px;
                position: absolute;
                width: 180px;
            }

            .ADBlock .banner p {
                margin: 0px;
                font-weight: 400;
                font-size: 14px;
                left: 20px;
                top: 146px;
                position: absolute;
                width: 180px;
            }

    .banner.banner-1 {
        background: url("/images/design/banners/redBanner.png") 0% 0% / cover no-repeat;
    }

    .banner.banner-2 {
        background: url("/images/design/banners/greenBanner.png") 0% 0% / cover no-repeat;
    }

    .banner.banner-3 {
        background: url("/images/design/banners/yellowBanner.png") 0% 0% / cover no-repeat;
    }

    .banner.banner-4 {
        background: url("/images/design/banners/greenBanner.png") 0% 0% / cover no-repeat rgb(197, 197, 197);
    }

    .ADBlock2 {
        display: flex;
        justify-content: space-evenly;
        align-items: stretch;
        flex-flow: row;
        width: 1400px;
        margin: 0px auto 90px;
        padding: 0px 100px;
    }

        .ADBlock2 .banner {
            background: url("/images/design/banners/ustali_mask.svg");
            display: flex;
            width: 100%;
            height: 300px;
            align-items: center;
            place-content: center;
            border-radius: 15px;
            padding: 30px;
            color: rgb(255, 255, 255);
            margin-right: 20px;
            position: relative;
        }

            .ADBlock2 .banner:last-child {
                margin-right: 0px;
            }

            .ADBlock2 .banner h4 {
                position: absolute;
                left: 80px;
                top: 60px;
                font-weight: 500;
                font-size: 32px;
                color: var(--white);
            }

            .ADBlock2 .banner p {
                position: absolute;
                left: 80px;
                top: 111px;
                font-weight: 400;
                font-size: 20px;
                line-height: 140%;
                color: var(--white);
                width: 600px;
            }

            .ADBlock2 .banner a {
                background: var(--white);
                border: 1px solid var(--white);
                border-radius: 10px;
                padding: 11px 48px;
                width: 245px;
                height: 47px;
                position: absolute;
                top: 193px;
                left: 80px;
                color: var(--green-main);
                box-shadow: #444 0px 0px 6px -2px;
            }

            .ADBlock2 .banner img {
                position: absolute;
                top: 12px;
                right: 63px;
                transform: rotate(-5.25deg);
                display: none;
            }

            .ADBlock2 .banner.baner-buh {
                background: url(/images/design/banners/buhgalter-1200-300.png);
            }

    .headerIndex a {
        display: none;
    }

    .PopularOffer {
        width: 1200px;
        margin: 0px auto 90px;
        position: relative;
    }

        .PopularOffer h2 {
            margin-bottom: 37px;
            font-size: 28px;
            font-weight: 400;
        }

    .mobcategory-container {
        display: none;
    }

    .programmOffer {
        height: 423px;
        width: 285px;
        background: rgb(245, 245, 245);
        border-radius: 15px;
        margin-bottom: 20px;
        transition: all 0.3s ease 0s;
        position: relative;
        box-shadow: #4444446e 0px 0px 6px -2px;
    }

        .programmOffer:hover {
            background: rgb(255, 255, 255);
        box-shadow: #444 0px 0px 6px -2px;
            transition: all 0.3s ease 0s;
        }

            .programmOffer:hover .programmOfferBtn {
                background: linear-gradient(275deg, rgb(86, 160, 80) 0%, rgb(150, 204, 107) 94.46%);
                color: rgb(255, 255, 255);
            }

    .companyCard:hover .programmOfferBtn {
        background: linear-gradient(275deg, rgb(86, 160, 80) 0%, rgb(150, 204, 107) 94.46%);
        color: rgb(255, 255, 255);
    }

    .programmOfferBtn:active {
        background: linear-gradient(95deg, rgb(60, 116, 229) 0%, rgb(116, 162, 255) 100%) !important;
    }

    .programmOfferContent {
        padding: 0px 15px 16px;
    }

    .programmOffer .card-img-top {
        height: 152px;
        object-fit: cover;
        background: rgb(182, 182, 182);
        border-radius: 10px;
        margin-bottom: 16px;
    }

    .programmOfferTypeReward {
        position: absolute;
        z-index: 1;
        left: 15px;
        top: 12px;
        font-size: 10px;
        padding: 6px 12px;
        color: rgb(20 20 20);
        background: rgb(255 255 255);
        border-radius: 5px;
        box-shadow: #444 0px 0px 6px -2px;
    }

    .likebtnincard {
        color: rgb(255, 255, 255);
        font-size: 24px;
        position: absolute;
        right: 15px;
        top: 12px;
    }

        .likebtnincard:hover {
            position: absolute;
            right: 15px;
            top: 12px;
            color: rgb(255, 255, 255);
            font-size: 24px;
        }

    .programmOfferNameCompany {
        font-size: 12px;
        display: flex;
        align-items: center;
        flex-flow: row;
        margin-bottom: 12px;
        line-height: 14.06px;
        height: 14px;
        color: rgb(68, 68, 68);
    }

        .programmOfferNameCompany div {
            margin-left: 12px;
        }

            .programmOfferNameCompany div i {
                color: rgb(150, 204, 107);
            }

    .programmOfferName {
        color: rgb(68, 68, 68);
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 12px;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-height: 16.41px;
        height: 26px;
    }

    .programmOfferCondition {
        font-weight: 300;
        font-size: 12px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        height: 42px;
        line-height: 14.06px;
        margin-bottom: 11px;
    }

    .programmOfferPaymentInfo {
        display: flex;
        font-size: 12px;
        margin-bottom: 12px;
        align-items: flex-start;
        height: 28px;
    }

        .programmOfferPaymentInfo i {
            display: inline-block;
            font-size: 16px;
            color: #386dd3;
        }

        .programmOfferPaymentInfo .icon-container span {
            font-size: 16px;
        }

        .programmOfferPaymentInfo .icon-btn {
            margin-left: 12px;
            color: rgb(56, 109, 211);
        }

    .icon-btn:hover {
        cursor: pointer;
    }

    .programmOfferPaymentSubInfo {
        padding-left: 12px;
        font-size: 12px;
        font-weight: 300;
        line-height: 13.06px;
        position: relative;
    }

    .programmOfferPaymentSubInfoBold {
        font-weight: 600;
        color: rgb(56, 109, 211);
        position: relative;
        display: flex;
        flex-direction: row;
    }

    .popoversignal {
        font-size: 14px;
        position: relative;
    }

    .programmOfferBtn {
        padding: 12px 82px;
        border-radius: 10px;
        color: rgb(56, 109, 211);
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 16.41px;
        background: rgb(255, 255, 255);
        font-size: 14px;
        height: 40px;
        box-shadow: #444 0px 0px 6px -2px;
        position: absolute;
        bottom: 16px;
        width: 255px;
    }

    .programmOfferShowCatalog {
        padding: 16px 90px;
        color: rgb(56, 109, 211);
        text-decoration: none;
        border-radius: 10px;
        border: 1px solid rgb(56, 109, 211);
        font-size: 16px;
        margin-bottom: 90px;
        background: rgb(255, 255, 255);
    }

        .programmOfferShowCatalog:hover {
            background: linear-gradient(275deg, rgb(86, 160, 80) 0%, rgb(150, 204, 107) 94.46%);
            border: 1px solid rgba(255, 255, 255, 0);
            color: rgb(255, 255, 255);
        }

        .programmOfferShowCatalog:active {
            background: linear-gradient(95deg, rgb(60, 116, 229) 0%, rgb(116, 162, 255) 100%);
        }

    .companyCategoryTagsBold {
        display: flex;
        width: 227px;
        overflow-x: scroll;
        scrollbar-width: none;
    }

    .companyCategoryTagBold {
        margin-right: 8px;
        border: 1px solid rgb(56, 109, 211);
        border-radius: 15px;
        padding: 6px 8px;
        white-space: nowrap;
        box-shadow: rgba(60, 116, 229, 0.1) 2px 2px 4px 0px;
    }

    #appendServices {
        margin-bottom: 48px;
    }

    .advantageousOffer {
        width: 1400px;
        margin: 0px auto 90px;
        padding: 90px 100px;
        position: relative;
        background: linear-gradient(120deg, rgb(60, 128, 229) 0%, rgb(104, 161, 244) 10.76%, rgb(185, 218, 159) 61.17%, rgb(150, 204, 107) 100%);
        border-radius: 15px;
    }

        .advantageousOffer h2 {
            margin-bottom: 48px;
            color: rgb(255, 255, 255);
            font-size: 28px;
            font-weight: 500 !important;
        }

        .advantageousOffer .cards {
            margin: 0px;
        }

    .Compilation {
        width: 1400px;
        margin: 0px auto 90px;
        padding: 0px 100px;
        justify-items: stretch;
    }

        .Compilation h2 {
            margin-bottom: 48px;
            font-size: 28px;
        }

    .CompilationGrid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        margin-right: -20px;
    }

    .Compilation .banner {
        background: linear-gradient(137deg, rgb(142, 194, 101) 26.45%, rgb(193, 232, 161) 99.87%);
        height: 214px;
        border-radius: 15px;
        padding: 30px;
        color: rgb(255, 255, 255);
        margin-right: 20px;
        margin-bottom: 20px;
        font-size: 16px;
        position: relative;
        transition: all 0.3s ease 0s;
    }

        .Compilation .banner:hover {
            box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 20px 0px;
            transition: all 0.3s ease 0s;
        }

        .Compilation .banner .tagName {
            font-size: 20px;
            font-weight: 600;
        }

        .Compilation .banner img {
            position: absolute;
            right: 20px;
            bottom: 20px;
        }

    .RecommendedOffer {
        width: 1400px;
        margin: 0px auto 90px;
        padding: 55px 100px 47px;
        position: relative;
        background: rgb(235, 235, 235);
        border-radius: 15px;
    }

        .RecommendedOffer .cards {
            margin: 0px;
        }

        .RecommendedOffer h2 {
            margin-bottom: 48px;
            font-size: 28px;
        }

    .InterestingOffer {
        width: 1400px;
        margin: 0px auto 90px;
        padding: 0px 100px;
        position: relative;
    }

        .InterestingOffer h2 {
            margin-bottom: 48px;
            font-size: 28px;
        }

    .FormEmail {
        width: 1200px;
        margin: 0px auto 90px;
        padding: 48px;
        position: relative;
        background: rgb(255, 255, 255);
        border-radius: 15px;
        box-shadow: rgba(0, 0, 0, 0.1) 5px 5px 20px 0px;
    }

        .FormEmail h2 {
            margin-bottom: 20px;
            font-size: 28px;
        }

        .FormEmail p {
            font-size: 16px;
            font-weight: 300;
            color: rgb(68, 68, 68);
            line-height: 28px;
            margin-bottom: 20px;
        }

        .FormEmail img {
            position: absolute;
            right: 0px;
            top: -6px;
            width: 403px;
        }

    .BigBannerForReg {
        width: 1400px;
        margin: 0px auto 90px;
        padding: 0px 100px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        place-items: stretch;
        justify-content: space-evenly;
    }

        .BigBannerForReg.BigBannerForRegOne {
            width: 1400px;
            margin: 0px auto 90px;
            padding: 0px 100px;
            display: grid;
            grid-template-columns: 1fr;
            place-items: stretch;
            justify-content: space-evenly;
        }

        .BigBannerForReg .banner {
            background: rgb(152, 152, 152);
            height: 389px;
            border-radius: 15px;
            padding: 30px;
            color: rgb(255, 255, 255);
            margin-right: 20px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            text-align: center;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            width: 587px;
        }

            .BigBannerForReg .banner:last-child {
                margin-right: 0px;
            }

            .BigBannerForReg .banner .bannerSVG {
            }

                .BigBannerForReg .banner .bannerSVG img {
                    position: absolute;
                    width: 587px;
                    height: 399px;
                    top: -6px;
                    left: 0px;
                }

            .BigBannerForReg .banner .bannerHead-1 {
                position: absolute;
                font-family: Roboto;
                font-weight: 600;
                font-size: 32px;
                line-height: 150%;
                color: rgb(255, 255, 255);
                top: 97px;
                left: 40px;
                text-align: left;
                width: 341px;
            }

            .BigBannerForReg .banner .bannerHead-2 {
                position: absolute;
                font-family: Roboto;
                font-weight: 600;
                font-size: 32px;
                line-height: 150%;
                color: rgb(255, 255, 255);
                top: 100px;
                left: 40px;
                text-align: left;
                width: 448px;
            }

        .BigBannerForReg .bg-blue-gradient-v1 a {
            position: absolute;
            background: rgb(85, 137, 241);
            border: 1px solid rgb(255, 255, 255);
            border-radius: 10px;
            padding: 12px 82px;
            width: 168px;
            height: 47px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgb(255, 255, 255);
            text-decoration: none;
            font-weight: 400;
            font-size: 20px;
            top: 223px;
            left: 40px;
        }

            .BigBannerForReg .bg-blue-gradient-v1 a:hover {
                background: rgb(107, 151, 239);
            }

        .BigBannerForReg .bg-green-gradient-v1 a {
            position: absolute;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgb(255, 255, 255);
            text-decoration: none;
            font-weight: 400;
            font-size: 20px;
            top: 223px;
            left: 40px;
            border: 1px solid rgb(255, 255, 255);
            border-radius: 10px;
            padding: 12px 40px;
            width: 275px;
            height: 47px;
        }

            .BigBannerForReg .bg-green-gradient-v1 a:hover {
                background: rgba(255, 255, 255, 0.14);
            }

    .bannerSmallText {
        font-size: 20px;
        font-weight: 300;
        line-height: 28px;
        margin-top: 16px;
        margin-bottom: 32px;
    }

    .MotivationRegBlockAgent {
        height: 369px !important;
    }

    .MotivationRegBlockCompany {
        height: 368px !important;
    }

        .MotivationRegBlockCompany h3 {
            text-align: left;
            color: var(--white);
            font-weight: 500 !important;
            font-size: 28px !important;
            width: 72% !important;
        }

    .MotivationRegBlock a {
        position: relative;
        z-index: 2;
    }

    .MotivationRegBlock {
        width: 1200px;
        margin: 0px auto 90px;
        padding: 60px 15px 40px 600px;
        position: relative;
        background: linear-gradient(137deg, rgb(86, 160, 80) 0%, rgb(150, 204, 107) 69.29%);
        border-radius: 15px;
        height: 300px;
    }

    .MotivationRegBlockOffer {
        width: 1200px;
        margin: 0px auto 90px;
        padding: 61px 600px 40px 81px;
        position: relative;
        background: linear-gradient(137deg, rgb(86, 160, 80) 0%, rgb(150, 204, 107) 69.29%);
        border-radius: 15px;
        height: 296px;
        background: url(/images/design/banners/offer_reg_banner.webp);
    }

    .MotivationRegBlockCompany {
        width: 1200px;
        margin: 0px auto 90px;
        padding: 60px 15px 40px 600px;
        position: relative;
        background: linear-gradient(137deg, rgb(86, 160, 80) 0%, rgb(150, 204, 107) 69.29%);
        border-radius: 15px;
        height: 300px;
        background: url(/images/design/banners/agent_reg_banner_desk.svg);
    }

    .MotivationRegBlockAgent {
        width: 1200px;
        margin: 0px auto 90px;
        padding: 60px 15px 40px 80px;
        position: relative;
        background: linear-gradient(137deg, rgb(86, 160, 80) 0%, rgb(150, 204, 107) 69.29%);
        border-radius: 15px;
        height: 300px;
        background: url(/images/design/banners/motivation_agent.webp);
    }

    .MotivationRegBlockOffer h3 {
        width: 90% !important;
        margin-bottom: 31px;
    }

    .MotivationRegBlockOffer p {
        width: 41% !important;
    }

    .MotivationRegBlockAgent h3 {
        color: rgb(255, 255, 255);
        font-weight: 600;
        width: 90%;
        margin-bottom: 31px;
    }

    .MotivationRegBlockAgent p {
        width: 41% !important;
    }


    .MotivationRegBlock h3 {
        color: rgb(255, 255, 255);
        font-weight: 600;
        width: 48%;
        margin-bottom: 31px;
    }

    .MotivationRegBlock p {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 44px;
        color: rgb(255, 255, 255);
        width: 70%;
    }

    .offerMotivationRegImg {
        position: absolute;
        top: 0px;
        right: 0px;
        z-index: 1;
    }

    .companyMotivationRegImg {
        position: absolute;
        top: 0px;
        right: 0px;
    }

    .agentMotivationRegImg {
        position: absolute;
        top: 0px;
        right: 0px;
    }

    .btn-default {
        background: rgb(255, 255, 255);
        padding: 14px 32px;
        border-radius: 10px;
        font-size: 16px;
        text-decoration: none;
        color: rgb(86, 160, 80) !important;
        box-shadow: #444 0px 0px 6px -2px;
    }

    .ReviewBlock {
        width: 1200px;
        margin: 0px auto;
    }

        .ReviewBlock h2 {
            margin-bottom: 48px;
            font-weight: 600;
            font-size: 28px;
        }

    .FormEmailGroup {
        display: flex;
        justify-content: flex-start;
        flex-direction: row;
    }

        .FormEmailGroup input {
            margin-right: 20px;
            margin-bottom: 20px;
            min-width: 184px;
            color: rgb(255, 255, 255);
        }

        .FormEmailGroup .form-control {
            background: rgb(245, 245, 245);
            padding: 10px 20px;
            border: 0px;
            border-radius: 10px;
            width: auto;
        }

        .FormEmailGroup .btn {
            background: rgb(150, 204, 107);
            border-radius: 10px;
        }

    .companyCard {
        height: 428px;
        width: 285px;
        background: rgb(245, 245, 245);
        border-radius: 15px;
        margin-bottom: 20px;
        transition: all 0.3s ease 0s;
        position: relative;
        box-shadow: #4444446e 0px 0px 6px -2px;
    }

        .companyCard:hover {
            background: rgb(255, 255, 255);
            box-shadow: #4444446e 0px 0px 6px 0px;
            transition: all 0.3s ease 0s;
        }

        .companyCard .card-img-top {
            height: 152px;
            object-fit: cover;
            background: rgb(182, 182, 182);
            border-radius: 10px;
            margin-bottom: 16px;
        }

    .companyCardChecked {
        position: absolute;
        z-index: 1;
        left: 15px;
        top: 12px;
        font-size: 10px;
        padding: 6px 12px;
        color: rgb(245, 245, 245);
        background: rgba(245, 245, 245, 0.3);
        border-radius: 30px;
    }

    .companyCardContent {
        padding: 0px 15px 16px;
    }

    .compNameBlock {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .compRating {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        color: rgb(152, 152, 152);
        font-size: 12px;
        font-weight: 400;
        line-height: 14.06px;
    }

        .compRating div {
            margin-right: 12px;
        }

            .compRating div i {
                margin-right: 6px;
                margin-top: 0px;
                color: rgb(185, 218, 159);
            }

    .compReviews {
        color: rgb(245, 245, 245);
    }

    .compNameBlock .s2d {
        margin-left: 0px;
        display: flex;
        align-items: center;
        margin-right: 12px;
    }

    .companyCardName {
        display: flex;
        align-items: center;
        flex-flow: row;
        margin-bottom: 12px;
    }

    .compLogo {
        width: 48px;
        height: 48px;
        object-fit: cover;
        border-radius: 10px;
        margin-right: 12px;
    }

    .compName {
        font-size: 14px;
        color: rgb(68, 68, 68);
        line-height: 16.41px;
        font-weight: 500;
        margin-bottom: 8px;
    }

    .companyDescription {
        font-size: 14px;
        line-height: 16.59px;
        font-weight: 300;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        height: 3.5em;
    }

    .AgentBlockWithFilter {
        display: flex;
        width: 1400px;
        margin: 0px auto 90px;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 0px 100px;
    }

    .AgentFilter {
        background: linear-gradient(95deg, rgb(60, 116, 229) 0%, rgb(116, 162, 255) 100%);
        padding: 20px 20px 40px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        width: 387px;
    }

        .AgentFilter .filter-item {
            margin-bottom: 14px;
            padding: 20px;
            background: rgb(255, 255, 255);
            border-radius: 10px;
            border: 0px;
            display: flex;
            justify-content: space-between;
            width: 100% !important;
        }

            .AgentFilter .filter-item:last-child {
                margin-bottom: 0px;
            }

        .AgentFilter a {
            text-decoration: none;
            text-align: center;
            font-size: 14px;
            color: rgb(93, 93, 93);
            line-height: 16.41px;
            font-style: normal;
        }

    a:hover {
        cursor: pointer;
    }

    .AgentFilter .filter-item.btn-action {
        color: rgb(255, 255, 255);
        font-size: 14px;
        line-height: 16.41px;
        font-weight: 400;
        width: 347px;
        height: 60px;
        display: flex;
        align-items: center;
        background: linear-gradient(275deg, rgb(86, 160, 80) 0%, rgb(150, 204, 107) 94.46%) !important;
    }

        .AgentFilter .filter-item.btn-action:active {
            background: linear-gradient(95deg, rgb(60, 116, 229) 0%, rgb(116, 162, 255) 100%) !important;
        }

    .AgentFilter .filter-item.btn-easy {
        color: rgb(255, 255, 255);
        font-size: 14px;
        line-height: 16.41px;
        font-weight: 400;
        padding: 0px;
        background: transparent !important;
        justify-content: center !important;
    }

    .AgentBlockList {
        margin-left: 20px;
    }

    .agentCard {
        background: rgb(255, 255, 255);
        border: 1px solid rgb(255, 255, 255);
        padding: 30px 45px 30px 20px;
        width: 793px;
        display: flex;
        border-radius: 10px;
        margin-bottom: 20px;
        transition: all 0.3s ease 0s;
        box-shadow: #4444446e 0px 0px 6px -2px;
    }

        .agentCard:hover {
            box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 20px 0px;
            transition: all 0.3s ease 0s;
        }

    .avatar-mob img {
        width: 0px;
        display: none;
    }

    .agentCard .card-img-top {
        width: 96px;
        height: 96px;
        border-radius: 10px;
        margin-right: 40px;
    }

    .agentCardContent {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .agentCardContentHeader {
        display: flex;
        justify-content: space-between;
        margin-bottom: 19px;
    }

    .agentCardName {
        font-size: 16px;
        font-weight: 500;
        line-height: 18.75px;
        margin-right: 16px;
        color: rgb(68, 68, 68);
    }

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

    .AgentCardChecked {
        background: linear-gradient(95deg, rgb(60, 116, 229) 0%, rgb(116, 162, 255) 100%);
        padding: 6px 12px;
        border-radius: 30px;
        line-height: 11.72px;
        display: flex;
        align-items: center;
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 10px;
        color: rgb(255, 255, 255);
    }

    .agentCardDescription {
        margin-bottom: 18px;
        font-weight: 300;
        font-size: 14px;
        color: #444;
    }

    .agentCardInterests {
        margin-bottom: 20px;
    }

    .agentCardAction {
        display: flex;
        justify-content: space-between;
    }

        .agentCardAction .btn-action {
            margin-right: 20px;
        }

            .agentCardAction .btn-action:last-child {
                margin-right: 0px;
            }

        .agentCardAction .likebtnincard {
            position: relative;
            right: 0px;
            top: 0px;
            color: var(--green-main);
            font-size: 18px;
        }

    .btn-action {
        color: rgb(68, 68, 68);
        text-decoration: none;
        line-height: 16.59px;
        display: flex;
        border-radius: 10px;
        padding: 12px 10px;
        width: 44px;
        height: 41px;
        justify-content: center !important;
    }

        .btn-action:hover {
            cursor: pointer;
        }

    .sendoffer {
        border-radius: 10px;
        padding: 12px;
        width: 254px;
        height: 41px;
        background: linear-gradient(275deg, rgb(86, 160, 80) 0%, rgb(150, 204, 107) 94.46%);
        font-weight: 400;
        font-size: 14px;
        color: var(--white);
        /* border: 1px solid rgba(86, 160, 80, 0); */
        box-shadow: #444 0px 0px 5px -2px;
    }

        .sendoffer:hover {
            color: var(--white);
        }

        .sendoffer:active {
            color: var(--white);
            background: linear-gradient(95deg, rgb(60, 116, 229) 0%, rgb(116, 162, 255) 100%);
        }

    .getcontacts {
        border: 1px solid var(--green-main);
        border-radius: 10px;
        padding: 12px;
        width: 254px;
        height: 41px;
        font-family: var(--second-family);
        font-weight: 400;
        font-size: 14px;
        color: var(--green-main);
    }

        .getcontacts:hover {
            color: var(--green-main);
        }

        .getcontacts:active {
            border: 1px solid rgb(60, 116, 229);
            color: var(--white);
            background: linear-gradient(95deg, rgb(60, 116, 229) 0%, rgb(116, 162, 255) 100%);
        }

    .cards {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        margin-bottom: 48px;
        margin-right: -20px !important;
    }

    .btn-group-radio {
        display: flex;
        overflow: hidden;
        border-radius: 15px;
        border: 1px solid rgb(211, 211, 211);
    }

        .btn-group-radio label {
            flex: 1 1 0%;
            text-align: center;
            padding: 20px 30px;
            cursor: pointer;
            transition: transform 0.3s ease 0s;
            transform: translateX(0px);
        }

        .btn-group-radio input[type="radio"] {
            display: none;
        }

            .btn-group-radio input[type="radio"]:checked + label {
                background-color: rgb(255, 255, 255);
                color: rgb(0, 0, 0);
                transform: translateX(-100%);
            }

    .catalogBlock {
        display: flex;
        flex-direction: column;
        border-radius: 30px;
        place-content: center;
        align-items: center;
        width: 1400px;
        margin: 0px auto;
    }

        .catalogBlock .deviz {
            font-size: 20px;
            line-height: 23.7px;
            margin-bottom: 65px;
        }

        .catalogBlock h1 {
            font-size: 28px;
            margin-bottom: 51px;
            margin-top: 90px;
            color: rgb(68, 68, 68);
        }

    .catalogBlockCategory {
        display: flex;
        align-items: center;
        flex-direction: row;
        margin-bottom: 45px;
    }

    .btn-mob-filter {
        display: none;
    }

    .catalogBlockCategory .btn-group-radio {
        width: 100%;
        min-width: 270px;
        background: rgba(241, 244, 246, 0);
        border-radius: 15px;
        border: 1px solid rgb(211, 211, 211);
    }

        .catalogBlockCategory .btn-group-radio label {
            padding: 20px 30px;
            font-family: Roboto;
            font-style: normal;
            font-weight: 400;
            font-size: 16px;
            letter-spacing: -0.01em;
            color: rgb(255, 255, 255);
            width: 50%;
            margin-bottom: 0rem;
            border-radius: 15px !important;
        }

    .catalogBlockCategory .btn-check:checked + .btn {
        transition: all 0.5s ease 0s;
        font-family: Roboto;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        letter-spacing: -0.01em;
        border-radius: 15px;
        color: rgb(0, 0, 0);
        box-shadow: rgba(0, 0, 0, 0.07) 0px 4px 12px;
        border: rgba(255, 255, 255, 0);
        background: rgb(255, 255, 255) !important;
    }

    .catalogBlockCategory .btn-check + .btn {
        border-radius: 15px;
    }

    .catalogBlockCategory .btn-accent {
        background: rgb(182, 182, 182);
        margin-left: 8px;
        padding: 20px;
        border-radius: 10px;
        color: rgb(255, 255, 255);
        text-decoration: none;
        display: flex;
        align-items: center;
    }

    .catalogBlockCategory .switch {
        position: relative;
        width: 425px;
        display: flex;
        border-radius: 15px;
        justify-content: center;
        align-items: center;
        font-size: 16px;
        line-height: 18.75px;
        background: rgba(255, 255, 255, 0.08);
        color: rgb(56, 109, 211);
    }

        .catalogBlockCategory .switch::before {
            content: "  ";
            position: absolute;
            left: 0px;
            z-index: -1;
            width: 100%;
            height: 59px;
            background: rgb(255, 255, 255);
            border-radius: 15px;
        }

    .catalogBlockCategory .switch__label {
        display: inline-block;
        width: 140px;
        cursor: pointer;
        transition: color 200ms ease-out 0s;
        text-align: center;
        padding: 20px 30px;
        position: relative;
        z-index: 1;
    }

    .catalogBlockCategory .switch input[type="radio"]:checked + .switch__label {
        color: rgb(255, 255, 255);
        transition: all 0.3s ease 0s;
    }

    .catalogBlockCategory .switch__label:hover {
        color: rgb(92, 140, 232);
        transition: all 0.3s ease 0s;
    }

    .catalogBlockCategory .switch__indicator {
        height: 59px;
        line-height: 18.75px;
        position: absolute;
        top: 0px;
        left: 0px;
        background: blue;
        border-radius: 14px;
        transition: transform 600ms cubic-bezier(0.02, 0.94, 0.09, 0.97) 0s, background 300ms cubic-bezier(0.17, 0.67, 0.14, 1.03) 0s;
        transform: translate3d(1rem, 0px, 0px);
    }

    .catalogBlockCategory .switch input#isonce2:checked ~ .switch__indicator {
        box-shadow: rgba(0, 0, 0, 0.1) 4px 0px 10px 0px;
        background: linear-gradient(95deg, rgb(60, 116, 229) 0%, rgb(116, 162, 255) 100%);
        transform: translate3d(0rem, 0px, 0px);
        width: 140px;
        font-size: 16px;
    }

    .catalogBlockCategory .switch input#ismany2:checked ~ .switch__indicator {
        box-shadow: rgba(0, 0, 0, 0.1) 4px 0px 10px 0px;
        background: linear-gradient(95deg, rgb(60, 116, 229) 0%, rgb(116, 162, 255) 100%);
        transform: translate3d(141px, 0px, 0px);
        width: 140px;
    }

    .catalogBlockCategory .switch input#isinterval2:checked ~ .switch__indicator {
        box-shadow: rgba(0, 0, 0, 0.1) 4px 0px 10px 0px;
        background: linear-gradient(95deg, rgb(60, 116, 229) 0%, rgb(116, 162, 255) 100%);
        transform: translate3d(282px, 0px, 0px);
        width: 140px;
    }

    .catalogBlockCategory .switch input[type="radio"]:not(:checked),
    .switch input[type="radio"]:checked {
        display: none;
    }

    .companyPB {
        display: flex;
        flex-direction: row;
        border-radius: 30px;
        place-content: center;
        align-items: stretch;
        width: 1400px;
        margin: 0px auto 90px;
    }

        .companyPB h6 {
            color: rgb(68, 68, 68);
            font-weight: 500;
            font-size: 20px;
            font-family: Roboto;
            margin-bottom: 20px;
        }

    .companyPBMainCardLogo {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 40px;
    }

        .companyPBMainCardLogo img {
            width: 172px;
            height: 172px;
            object-fit: cover;
            border-radius: 100%;
        }

    .companyPBMainCardContacts {
        color: rgb(152, 152, 152);
    }

    .companyPBLeftPanel {
        width: 387px;
        margin-right: 20px;
    }

    .companyPBMainCard {
        background: rgb(255, 255, 255);
        border-radius: 10px;
        padding: 40px 20px 30px;
        margin-bottom: 20px;
    }

    .companyPBMainCardButtons {
        display: flex;
        flex-flow: row;
        justify-content: center;
        margin-bottom: 40px;
        position: relative;
        align-items: center;
    }

        .companyPBMainCardButtons a {
            height: 64px;
            background: rgb(169, 169, 169);
            color: rgb(255, 255, 255);
            display: flex;
            align-items: center;
            padding: 20px;
            border-radius: 15px;
            font-size: 20px;
            background: linear-gradient(95deg, #3c74e5 0%, #74a2ff 100%);
            width: 100%;
            justify-content: center;
        }

            .companyPBMainCardButtons a:hover {
                color: #ffffffc2
            }

        .companyPBMainCardButtons .likebtnincard {
            top: 0px;
            left: 0px;
            position: relative !important;
        }

    .socNetworks {
        display: flex;
        align-items: center;
        place-content: center flex-start;
        flex-wrap: nowrap;
    }

        .socNetworks .socNetwork {
            margin-right: 30px;
            font-size: 30px;
            width: 60px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--blue-main);
        }

    .companyPBDocuments {
        padding: 40px 20px 30px;
        background: rgb(255, 255, 255);
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .companyPBOneDocument {
        display: flex;
        align-items: center;
        margin-bottom: 16px;
    }

        .companyPBOneDocument .docImage img {
            width: auto;
            height: 48px;
        }

        .companyPBOneDocument .docDescription {
            margin-left: 20px;
            color: rgb(152, 152, 152);
        }

    .companyPAwardsBlock {
        padding: 40px 20px 30px;
        background: rgb(255, 255, 255);
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .companyRightPanel {
        width: 793px;
    }

    .companyNameBlock {
        padding: 31px 20px;
        background: rgb(255, 255, 255);
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .companyNamewithActions {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
    }

    .companyNameBlock h1 {
        color: rgb(93, 93, 93);
        font-size: 28px;
        margin-bottom: 24px;
    }

    .companyTags {
        display: flex;
        flex-wrap: wrap;
    }

        .companyTags .companyTag {
            margin-right: 12px;
            margin-bottom: 12px;
            white-space: nowrap;
            flex-basis: auto;
            box-shadow: 2px 2px 4px 0 rgba(60, 116, 229, 0.1);
            background: var(--white);
            border: 0.40px solid var(--blue-main);
            border-radius: 130px;
            padding: 6px 16px;
            font-weight: 500;
            font-size: 12px;
            border: 0.40px solid var(--green-gray);
            font-weight: 500;
            font-size: 12px;
            color: var(--green-gray);
        }

            .companyTags .companyTag:hover {
                margin-right: 12px;
                margin-bottom: 12px;
                white-space: nowrap;
                flex-basis: auto;
                box-shadow: 2px 2px 4px 0 rgba(60, 116, 229, 0.1);
                background: var(--white);
                border: 0.40px solid var(--blue-main);
                border-radius: 130px;
                padding: 6px 16px;
                font-weight: 500;
                font-size: 12px;
                color: var(--blue-main);
                cursor: pointer;
            }

    .companyStatisticBlock {
        display: flex;
        flex-flow: row;
        align-items: center;
        justify-content: space-between;
    }

    .companyStatistic {
        padding: 34px;
        background: rgb(255, 255, 255);
        border-radius: 10px;
        margin-bottom: 20px;
        width: 185px;
        text-align: center;
    }

    .companyStatisticHidden {
        padding: 34px;
        background: rgba(255, 255, 255, 0);
        border-radius: 10px;
        margin-bottom: 20px;
        width: 185px;
        text-align: center;
    }

    .companyStatistic i {
        font-size: 24px;
        font-weight: bold;
        font-family: Roboto;
        display: flex;
        align-items: center;
        justify-content: center;
        font-style: normal;
    }

        .companyStatistic i::before {
            margin-right: 10px;
            background: linear-gradient(95deg, #3c74e5 0%, #74a2ff 100%);
        }

    .AgentPB .companyStatistic i::before {
        margin-right: 10px;
        background: linear-gradient(90deg, #96cc6b 0%, #b9da9f 100%);
    }

    .companyStatistic p {
        font-size: 16px;
        font-weight: 300;
        font-family: Roboto;
        margin-bottom: 0px;
    }

    .companyDescriptionBLock {
        padding: 40px;
        background: rgb(255, 255, 255);
        border-radius: 10px;
        margin-bottom: 20px;
        background-image: url(/images/design/banners/usefull-sdelno-1.svg);
        background-position: bottom left;
        background-repeat: no-repeat;
        background-size: auto;
    }

    .AgentPB .companyDescriptionBLock {
        background-image: url(/images/design/banners/usefull-sdelno-2.svg);
    }

    .companyDescriptionBLock h3 {
        margin-bottom: 20px !important;
    }

    .companyDescriptionBLock div {
        margin-bottom: 45px;
        font-weight: 300;
        font-size: 18px;
        line-height: 156%;
        color: #444;
    }

    .pathBlock {
        height: 64px;
        display: flex;
        flex-direction: row;
        border-radius: 30px;
        place-content: center flex-start;
        align-items: center;
        width: 1200px;
        margin: 0 auto;
        padding-top: 18px;
        padding-bottom: 18px;
        justify-content: flex-start;
    }

    .offerPB {
        display: flex;
        flex-direction: row;
        border-radius: 30px;
        place-content: center;
        align-items: stretch;
        width: 1400px;
        margin: 0px auto 90px;
    }

        .offerPB h3 {
            font-size: 20px;
            margin-bottom: 28px;
        }

    .offerPBLeftPanel {
        width: 387px;
        margin-right: 20px;
    }

    .offerPBMainCard {
        background: rgb(255, 255, 255);
        border-radius: 10px;
        padding: 40px 20px 30px;
        margin-bottom: 20px;
    }

        .offerPBMainCard img {
            width: 180px;
            height: 180px;
            object-fit: cover;
            border-radius: 100%;
            display: flex;
        }

    .offerComapnyName {
        display: flex;
        align-items: center;
        font-size: 20px !important;
    }

        .offerComapnyName h2 {
            margin-right: 13px;
            font-size: 20px !important;
            color: #444;
        }

        .offerComapnyName i:before {
            background: linear-gradient(95deg, #3c74e5 0%, #74a2ff 100%);
        }

    .offerCompanyDeviz {
        font-size: 20px;
        font-weight: 300;
    }

    .offerCostAndAction {
        background: rgb(255, 255, 255);
        border-radius: 10px;
        padding: 36px 20px;
    }

    .offerPBCost {
        font-weight: 700;
        font-size: 28px;
        line-height: 86%;
        color: var(--blue-main);
    }

    .offerPBMainCardButtons {
        display: flex;
        width: 100%;
        justify-content: space-around;
        align-items: center;
    }

        .offerPBMainCardButtons a {
            width: 100%;
            margin-top: 25px;
            margin-bottom: 25px;
            height: 64px;
            display: flex;
            align-items: center;
            color: rgb(255, 255, 255);
            font-size: 18px;
            font-weight: 400;
            background: linear-gradient(95deg, #3c74e5 0%, #74a2ff 100%);
            border-radius: 15px;
            box-shadow: #444 0px 0px 5px -2px;
        }

    .offerPBRightPanel {
        width: 793px;
    }

    .offerPBNameOfferBlock {
        background: rgb(255, 255, 255);
        border-radius: 10px;
        padding: 30px 40px;
        margin-bottom: 20px;
        overflow: hidden;
    }

    .offerNameWithRating {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .offerRating {
        display: flex;
        font-size: 24px;
        align-items: center;
        font-weight: bolder;
    }

        .offerRating i:before {
            background: linear-gradient(95deg, #3c74e5 0%, #74a2ff 100%);
        }

    .offerNameWithActions {
        display: flex;
        flex-flow: row;
        align-items: center;
        margin-bottom: 24px;
        justify-content: space-between;
    }

        .offerNameWithActions h1 {
            font-size: 28px;
            margin-right: 70px;
        }

    .offerActions {
        display: flex;
        margin-left: 20px;
        position: relative;
    }

        .offerActions a {
            display: flex;
            margin-right: 12px;
            color: rgb(255, 255, 255);
            width: 64px;
            height: 64px;
            align-items: center;
            font-size: 32px;
            font-weight: 100;
            background: linear-gradient(95deg, #3c74e5 0%, #74a2ff 100%);
            box-shadow: #444 0px 0px 5px -2px;
        }

        .offerActions .likebtnincard {
            position: relative;
            left: 0px;
            top: 0px;
        }

    .catalogCategory {
        display: flex;
        flex-flow: row;
        align-items: stretch;
        width: 1200px;
        margin: 0px auto 90px;
        justify-content: space-around;
    }

        .catalogCategory .category-v1 {
            border: 1px solid var(--white);
            background: rgb(255, 255, 255);
            width: 111px;
            height: 79px;
            padding: 12px;
            line-height: 14px;
            border-radius: 10px;
            font-size: 12px;
            transition: all 0.3s ease 0s;
            display: flex;
            flex-direction: column;
        }

            .catalogCategory .category-v1 i {
                font-size: 24px;
            }

            .catalogCategory .category-v1 .category-v1-image {
                margin-bottom: 5px;
            }

        .catalogCategory .category-v1-text {
            width: 80%;
        }

        .catalogCategory .category-v1.active {
            border: 1px solid var(--blue-main);
            transition: all 0.1s ease 0s;
            cursor: pointer;
            color: var(--blue-main);
        }

        .catalogCategory .category-v1:hover {
            border: 1px solid var(--blue-main);
            transition: all 0.1s ease 0s;
            cursor: pointer;
            color: var(--blue-main);
        }

    .swiper-container-reviews-parent {
        margin-bottom: 43px;
    }

    .review-pattern {
        display: flex;
        flex-direction: column;
        border: 1px solid rgb(217, 217, 217);
        border-radius: 15px;
        width: 590px;
        height: 290px;
        padding: 34px 40px;
        background: rgb(255, 255, 255);
    }

    .review-pattern-top {
        display: flex;
        margin-bottom: 29px;
    }

    .review-pattern-img {
        width: 48px;
        height: 48px;
        object-fit: cover;
        margin-right: 20px;
        border-radius: 100%;
        background: rgb(89, 139, 242);
    }

    .review-pattern-name {
        color: rgb(60, 60, 60);
        font-weight: 300;
        font-size: 16px;
    }

        .review-pattern-name b {
            color: rgb(60, 60, 60);
            font-weight: 500;
            font-size: 20px;
            margin-bottom: 7px;
        }

    .review-pattern-bottom {
        font-weight: 300;
        font-size: 20px;
        line-height: 140%;
    }

    .text-transparent {
        color: rgba(0, 0, 0, 0);
    }

    .agentCardInterests {
        display: flex;
        align-items: flex-start;
        font-weight: 300;
        font-size: 14px;
        color: #444;
    }

        .agentCardInterests .agentTagPin {
            margin-right: 12px;
        }

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

    .agentTagHeader {
        font-weight: 400;
        font-size: 12px;
        color: rgb(68, 68, 68);
        margin-bottom: 6px;
    }

    .agentTagList {
        display: flex;
        flex-wrap: wrap;
    }

        .agentTagList .agentTag {
            margin-right: 16px;
            margin-bottom: 8px;
            border: 0.40px solid var(--blue-main);
            border-radius: 15px;
            padding: 6px 8px;
            box-shadow: rgba(60, 116, 229, 0.1) 2px 2px 4px 0px;
            font-weight: 500;
            font-size: 10px;
            color: var(--blue-main);
        }

    .AgentFilter .dropdown {
        padding: 0px;
    }

        .AgentFilter .dropdown .btn {
            height: 64px;
            border-radius: 10px;
            color: rgb(68, 68, 68);
            padding-top: 20px;
        }

    .container-select-category {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        color: rgb(255, 255, 255);
        padding-left: 20px;
    }

    .selected-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 14px;
    }

        .selected-item .remove-item {
            text-decoration: none;
            color: rgb(255, 255, 255);
            font-style: normal;
        }

    .ADVERTISEMENT {
        grid-column: 1 / span 4;
    }

        .ADVERTISEMENT.ADBlock2 {
            margin: 90px 0px;
            padding: 0px;
            width: 1200px;
        }

    .dropdown-item.active,
    .dropdown-item:active {
        background: linear-gradient(241deg, rgb(60, 128, 229) 0%, rgb(104, 161, 244) 43.99%, rgb(150, 204, 107) 96.94%);
    }

    .bread-crumbs {
        display: flex;
        list-style: none;
        padding: 0;
        align-items: center;
        margin-bottom: 0;
    }

        .bread-crumbs li {
            display: flex;
            align-items: center;
        }

            .bread-crumbs li:not(:last-child)::after {
                content: "/";
                margin-left: 4px;
                margin-right: 4px;
                color: rgb(184, 184, 184);
            }

            .bread-crumbs li a {
                color: rgb(68, 68, 68);
                font-weight: 300;
                font-size: 16px;
            }

            .bread-crumbs li.active a {
                color: rgb(68, 68, 68);
                font-weight: 700;
                font-size: 16px;
                margin-right: 4px;
            }

    .card {
        border-radius: 24px !important;
    }

    .articleblock {
        padding: 50px 0px;
    }

        .articleblock h3,
        .articleblock h1,
        .articleblock h2 {
            font-size: 24px;
            font-weight: 600;
            line-height: 30px;
            overflow-wrap: break-word;
            margin-top: 12px;
            margin-bottom: 20px;
            font-family: Roboto;
        }

        .articleblock img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .articleblock p {
            font-size: 18px;
        }

    .blockHeight {
        margin-bottom: 0px;
        height: 368px !important;
    }

        .blockHeight .card-body {
            padding: 10px 12px;
        }

    .card-img-top {
        height: 178px;
        object-fit: cover;
        border-radius: 16px !important;
    }

    .v8_160 {
        font-family: Roboto;
        font-size: 0.68rem;
        opacity: 1;
        text-align: left;
        padding: 5px 8px;
        border-radius: 12px;
        position: absolute;
        bottom: 10px;
        left: 10px;
        color: rgb(63, 58, 63) !important;
        background-color: rgb(253, 253, 253) !important;
    }

    .blockHeight .card-body {
        padding: 10px 12px;
    }

    .v8_163 {
        background: rgba(255, 255, 255, 0);
        padding: 8px;
        opacity: 1;
        border-radius: 16px;
        overflow: hidden;
        display: flex;
        place-content: center flex-start;
    }

        .v8_163 .btn {
            background: rgba(255, 255, 255, 0.62);
            color: rgb(69, 67, 69);
            width: 100%;
            margin: 0px 5px;
            box-shadow: rgba(0, 0, 0, 0.07) 0px 4px 12px 0px;
            border-radius: 12px;
        }

    .containerCreateRequestMain {
        margin: 0px auto;
        width: 1200px !important;
    }

    .urchoice {
        /* padding-left: 30px !important; */
        text-align: left;
    }

    .bg-grey {
        background: rgb(244, 243, 245);
        padding: 0px 0px 100px !important;
    }

    .containerCreateRequest {
        background: #f5f5f5;
        /* opacity: 0; */
    }

        .containerCreateRequest .card {
            font-style: normal;
            background: rgb(255, 255, 255);
            border: 0.5px solid rgb(225, 227, 230);
            border-radius: 24px;
            padding: 24px 20px 24px 24px;
            height: auto !important;
        }

            .containerCreateRequest .card .CRsubheader {
                font-weight: 400;
                font-size: 16px;
                line-height: 20px;
                letter-spacing: -0.01em;
                color: rgb(0, 0, 0);
                max-height: 250px;
                margin-bottom: 16px;
                text-align: left;
            }

            .containerCreateRequest .card .CRsubheaderHelp {
                overflow: hidden;
                color: rgb(82, 78, 74);
                text-overflow: ellipsis;
                font-size: 16px;
                font-style: normal;
                font-weight: 400;
                line-height: 22px;
            }

            .containerCreateRequest .card .CRheader {
                font-weight: 600;
                font-size: 24px;
                text-align: left;
                line-height: 29px;
                letter-spacing: -0.01em;
                color: rgb(0, 0, 0);
                margin-bottom: 16px;
            }

            .containerCreateRequest .card ul li {
                font-size: 13px;
                padding: 5px 0px;
                font-weight: 500;
                text-align: left;
            }

        .containerCreateRequest .stepps {
            bottom: -10px;
            left: 0px;
            z-index: 1;
        }

        .containerCreateRequest .form-check {
            font-size: 13px;
            line-height: 15px;
            color: rgb(82, 78, 74);
            margin: 12px 0px 0px;
        }

        .containerCreateRequest .form-check-input {
            width: 20px;
            height: 20px;
        }

            .containerCreateRequest .form-check-input:checked {
                background-color: rgb(254, 138, 101);
                border-color: rgb(254, 138, 101);
            }

        .containerCreateRequest .form-check .form-check-label {
            margin-left: 10px;
            width: 90%;
        }

        .containerCreateRequest .notFoundTextHeader {
            font-style: normal;
            font-weight: 700;
            font-size: 48px;
            color: rgb(254, 138, 101);
            text-align: center;
        }

        .containerCreateRequest .notFoundText {
            font-family: Roboto;
            font-style: normal;
            font-weight: 500;
            font-size: 16px;
            line-height: 19px;
            text-align: center;
            letter-spacing: -0.01em;
            color: rgb(82, 78, 74);
        }

        .containerCreateRequest .form-control {
            margin-bottom: 8px;
            background: rgb(255, 255, 255);
            border: 0.5px solid rgb(225, 227, 230);
            border-radius: 12px;
            min-height: 64px;
            font-family: Roboto;
            font-style: normal;
            font-weight: 400;
            font-size: 16px;
            line-height: 19px;
            padding: 20px;
        }

    .containerForCodeNum .input-group input {
        font-family: Roboto;
        text-align: center;
        margin-right: 10px;
        background: rgb(245, 245, 245);
        font-size: 24px;
        height: 70px;
        border-radius: 12px !important;
        max-width: 25% !important;
    }

    .containerCreateRequest .input-group input {
        font-family: Roboto;
        text-align: center;
        margin-right: 10px;
        background: rgb(245, 245, 245);
        font-size: 24px;
        border-radius: 12px !important;
        max-width: 25% !important;
    }

    .containerCreateRequest .form-control::placeholder {
        color: rgb(153, 153, 153);
    }

    .xbtn-group {
        display: flex;
        margin: 0px;
        place-content: center flex-end;
        align-items: center;
    }

        .xbtn-group a {
            min-width: 20% !important;
        }

        .xbtn-group .btn-orange {
            margin-left: 5px;
            width: 100%;
        }

    .sampleName {
        /* background: rgb(211, 189, 240); */
        box-shadow: 2px 2px 4px 0 rgba(60, 116, 229, 0.1);
        padding: 8px;
        border-radius: 24px;
        white-space: nowrap;
        margin-bottom: 8px;
        margin-right: 4px;
        color: rgb(95 95 95);
        display: inline-block;
        border: 0.40px solid var(--green-gray);
    }

        .sampleName:hover {
            text-decoration: none;
            color: rgb(255, 255, 255);
            background: rgb(56, 109, 211);
        }

    .share-menu {
        display: none;
        position: absolute;
        background-color: white;
        padding: 10px;
        border: 1px solid rgb(204, 204, 204);
        border-radius: 5px;
        z-index: 1000;
    }

    .company-offer-filter {
        display: none;
    }



    .aboutServiceStart {
        background: url("path_to_image");
        width: 1400px;
        height: 660px;
        background: url(/images/design/about.webp) rgb(79 133 238);
        background-size: cover;
        display: flex;
        flex-direction: column;
        border-radius: 30px;
        place-content: center;
        align-items: center;
        color: rgb(255, 255, 255);
        width: 1400px;
        margin: 0px auto 90px;
        /* padding-top: 168px; */
    }

        .aboutServiceStart h1 {
            font-weight: 600;
            font-size: 55px;
            line-height: 109%;
            text-align: center;
            color: var(--blue-dark);
            text-shadow: 4px 0 10px 0 rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
            width: 50%;
        }

        .aboutServiceStart p {
            font-weight: 400;
            font-size: 24px;
            line-height: 158%;
            text-align: center;
            color: var(--blue-dark);
            width: 60%;
            margin-bottom: 50px;
        }

    .word-white {
        color: white;
    }

    .aboutServiceStart .ButtonsBlock {
        width: 590px;
        display: flex;
    }

        .aboutServiceStart .ButtonsBlock .btn-register {
            border: 1px solid var(--blue-main);
            border-radius: 10px;
            padding: 16px;
            width: 285px;
            height: 60px;
            background: var(--blue-main);
            font-weight: 500;
            font-size: 20px;
            text-align: center;
            margin-right: 20px;
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .aboutServiceStart .ButtonsBlock .btn-demo {
            border-radius: 10px;
            padding: 16px;
            width: 285px;
            height: 60px;
            background: var(--white);
            font-weight: 500;
            font-size: 20px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

    .aboutServiceSecond {
        display: flex;
        width: 1200px;
        margin: 0 auto;
        margin-top: -166px;
        margin-bottom: 110px;
    }

        .aboutServiceSecond .abSSecondBlock {
            border-radius: 15px;
            padding: 20px 20px 40px 20px;
            width: 285px;
            height: 167px;
            background: var(--white);
            margin-right: 20px;
            font-family: var(--font-family);
            font-weight: 500;
            font-size: 20px;
            line-height: 120%;
            color: var(--dark);
            position: relative;
            border: 1px solid var(--blue-main);
        }

            .aboutServiceSecond .abSSecondBlock p {
                position: absolute;
                top: 75px;
                left: 20px;
                width: 80%;
            }


    .WillSuit {
        margin-top: 110px;
        width: 1200px;
        margin: 0 auto;
        margin-bottom: 100px;
    }

        .WillSuit h2 {
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-family);
            font-weight: 500;
            font-size: 40px;
            line-height: 150%;
            text-align: center;
            background: linear-gradient(95deg, #3c74e5 0%, #74a2ff 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 30px;
        }

    .BlocksWillSuit {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 1000px;
        margin: 0 auto;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

        .BlocksWillSuit .Block {
            background: url(/images/design/banners/VamPodoidet.svg);
            background-size: contain;
            background-repeat: no-repeat;
            height: 128px;
            width: 476px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .BlocksWillSuit .Block p {
                display: flex;
                font-weight: 500;
                font-size: 20px;
                line-height: 120%;
                color: var(--dark);
                width: 70%;
                text-align: left;
                margin-left: 38px;
            }


    .WillBeUseFull {
        width: 1400px;
        margin: 0px auto 90px;
        padding: 0px 100px;
    }

        .WillBeUseFull h2 {
            font-weight: 500;
            font-size: 40px;
            line-height: 60%;
            text-align: center;
            color: var(--dark);
            margin-bottom: 70px;
        }

        .WillBeUseFull ul {
            width: 649px;
            MARGIN: 0 auto;
            margin-bottom: 50px !important;
            height: 64px;
            background: var(--white) !important;
            font-weight: 400;
            font-size: 20px;
            text-align: center;
            color: var(--blue-main);
        }

            .WillBeUseFull ul.tabsASbtn li {
                display: flex;
                align-items: center;
            }

                .WillBeUseFull ul.tabsASbtn li button.active {
                    width: 97%;
                    border: none;
                    border-radius: 8px;
                    box-shadow: 4px 0 10px 0 rgba(0, 0, 0, 0.1);
                    background: linear-gradient(95deg, #3c74e5 0%, #74a2ff 100%);
                    font-weight: 500;
                    font-size: 20px;
                    text-align: center;
                    color: var(--white);
                }

                .WillBeUseFull ul.tabsASbtn li button {
                    padding: 20px;
                    height: 64px;
                    border-radius: 15px;
                    font-weight: 400;
                    font-size: 20px;
                    text-align: center;
                    color: var(--blue-main);
                }


    .usefullblock {
        box-shadow: 4px 0 10px 0 rgba(0, 0, 0, 0.1);
        border: 1px solid var(--green-middlegray);
        position: relative;
        margin-bottom: 20px;
    }

        .usefullblock.usefull-2 {
            background: linear-gradient(95deg, #3c74e5 0%, #74a2ff 100%);
            border-radius: 15px;
            padding: 60px 0 0 102px;
            width: 1200px;
            height: 255px;
        }

            .usefullblock.usefull-2 img {
                position: absolute;
                width: 555px;
                right: -14px;
                bottom: -10px;
            }

        .usefullblock.usefull-1 {
            background: linear-gradient(275deg, #96cc6b 0%, #56a050 100%);
            border-radius: 15px;
            padding: 60px 0 0 102px;
            width: 1200px;
            height: 300px;
        }

            .usefullblock.usefull-1 img {
                position: absolute;
                width: 421px;
                right: 45px;
                bottom: 22px;
            }

    .usefull-2 .usefull-text-block h3 {
        width: 421px;
        font-weight: 500;
        font-size: 28px;
        line-height: 136%;
        color: var(--white);
    }

    .usefull-2 .usefull-text-block p {
        font-weight: 400;
        font-size: 20px;
        line-height: 120%;
        color: var(--white);
        width: 330px;
    }

    .usefull-1 .usefull-text-block h3 {
        color: #fff;
        width: 390px;
        margin-bottom: 20px;
        font-weight: 500;
        font-size: 28px;
        line-height: 136%;
        color: var(--white);
    }

    .usefull-1 .usefull-text-block p {
        color: #fff;
        width: 330px;
        font-weight: 400;
        font-size: 20px;
        line-height: 120%;
        color: var(--white);
    }

    .usefull-tab-blocks-static {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr;
        position: relative;
        justify-items: center;
    }

    .usefull-card {
        box-shadow: 4px 0 10px 0 rgba(0, 0, 0, 0.1);
        background: var(--white);
        border: 1px solid var(--green-middlegray);
        border-radius: 15px;
        padding: 40px 30px;
        height: 440px;
        margin-right: 20px;
    }

        .usefull-card:last-child {
            margin-right: 0px;
        }

    .usefull-sdelno-bg-1 {
        background-image: url('/images/design/banners/usefull-sdelno-1.svg');
        background-position: bottom left;
        background-repeat: no-repeat;
        background-size: auto;
    }

    .usefull-sdelno-bg-2 {
        background-image: url('/images/design/banners/usefull-sdelno-2.svg');
        background-position: bottom left;
        background-repeat: no-repeat;
        background-size: auto;
    }

    .usefull-card-header {
        font-weight: 500;
        font-size: 20px;
        line-height: 140%;
        color: var(--dark);
        margin-bottom: 20px;
    }

    .usefull-card-text {
        font-weight: 400;
        font-size: 20px;
        line-height: 140%;
        color: var(--dark);
    }


    .DoPartnershpNetwork {
        width: 1400px;
        margin: 0px auto 90px;
        padding: 0px 100px;
    }

        .DoPartnershpNetwork .banner {
            background: url(/images/design/banners/build_your_partnership.svg);
            background-size: cover;
            display: flex;
            width: 100%;
            height: 388px;
            align-items: center;
            place-content: center;
            border-radius: 15px;
            padding: 30px;
            margin-right: 20px;
            position: relative;
        }

            .DoPartnershpNetwork .banner h4 {
                font-weight: 500;
                font-size: 32px;
                line-height: 131%;
                color: var(--dark);
                position: absolute;
                left: 40px;
                top: 61px;
                width: 38%;
            }

        .DoPartnershpNetwork .DoPartnershpNetworkLogo {
            background: url('/images/design/banners/build_your_partnership_logo.svg');
            width: 214px;
            height: 55px;
            position: absolute;
            z-index: 0;
            left: 221px;
            top: 93px;
        }

        .DoPartnershpNetwork .banner p {
            font-weight: 400;
            font-size: 24px;
            line-height: 133%;
            color: var(--dark);
            width: 638px;
            position: absolute;
            left: 40px;
            top: 162px;
        }

        .DoPartnershpNetwork .banner a {
            border-radius: 10px;
            padding: 16px;
            width: 285px;
            height: 55px;
            background: linear-gradient(275deg, #56a050 0%, #96cc6b 94.46%);
            font-family: var(--font-family);
            font-weight: 500;
            font-size: 20px;
            text-align: center;
            color: var(--white);
            position: absolute;
            left: 40px;
            top: 288px;
            display: flex;
            align-items: center;
            justify-content: center;
        }


    .MoreFeatures {
        width: 1400px;
        margin: 0px auto 90px;
        padding: 0px 100px;
    }

        .MoreFeatures h2 {
            text-align: center;
            margin-bottom: 90px;
            font-size: 40px;
            text-align: center;
            color: var(--blue-dark);
        }

            .MoreFeatures h2 span {
                position: relative;
            }

                .MoreFeatures h2 span::before {
                    content: "";
                    position: absolute;
                    top: 2px;
                    left: -3px;
                    right: 0;
                    bottom: 0;
                    background: url('/images/design/banners/span-blue.svg') no-repeat center center;
                    background-size: contain;
                    z-index: -1;
                    height: 53px;
                    width: 212px;
                    /* opacity: 0.5; */
                    /* width: 212px; */
                }

    .aboutServiceFeatures {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 90px;
        position: relative;
    }

        .aboutServiceFeatures div {
            width: 50%;
            display: flex;
            flex-direction: column;
        }

        .aboutServiceFeatures h3 {
            font-family: var(--font-family);
            font-weight: 700;
            font-size: 32px;
            line-height: 100%;
            text-transform: uppercase;
            background: linear-gradient(275deg, #56a050 0%, #96cc6b 94.46%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 50px;
        }

        .aboutServiceFeatures p {
            font-family: var(--font-family);
            font-weight: 400;
            font-size: 24px;
            line-height: 142%;
            color: var(--dark);
        }



    .aboutServiceFeatures-w {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 15px;
        background: white;
        margin-bottom: 90px;
        position: relative;
    }

        .aboutServiceFeatures-w div {
            width: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .aboutServiceFeatures-w h3 {
            font-family: var(--font-family);
            font-weight: 700;
            font-size: 32px;
            line-height: 100%;
            text-transform: uppercase;
            background: linear-gradient(275deg, #56a050 0%, #96cc6b 94.46%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 36px;
        }

        .aboutServiceFeatures-w p {
            font-family: var(--font-family);
            font-weight: 400;
            font-size: 24px;
            line-height: 142%;
            color: var(--dark);
        }

    .Feature-1-img-block {
    }

    .Feature-1-img {
        width: 560px;
    }

    .Feature-1-text {
    }

    .Feature-2-img-block {
    }

    .Feature-2-img {
        width: 505px;
        display: flex;
        justify-content: flex-end;
    }

    .Feature-2-text {
        padding: 150px 150px 30px 101px;
    }

    .Feature-3-img-block {
        display: flex;
        align-items: center;
    }

    .Feature-3-img {
        width: 342px;
    }

    .Feature-3-text {
    }

    .Feature-4-img-block {
    }

    .Feature-4-img {
        width: 333px;
        height: 402px;
        justify-content: center;
        display: flex;
        align-items: center;
    }

    .Feature-4-text {
        padding: 150px 10px 150px 101px;
    }

    .Feature-5-img-block {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .Feature-5-img {
        height: 538px;
    }

    .Feature-5-text {
    }


    .PeopleTrust {
        text-align: center;
        font-weight: 500;
        font-size: 40px;
        text-align: center;
        color: var(--blue-dark);
        margin-bottom: 110px;
        width: 1400px;
        margin: 0px auto 90px;
        padding: 0px 100px;
    }

        .PeopleTrust h2 {
            font-family: var(--font-family);
            font-weight: 600;
            font-size: 40px;
            text-align: center;
            color: var(--dark);
            margin-bottom: 72px;
        }

            .PeopleTrust h2 span {
                background: linear-gradient(95deg, #3c74e5 0%, #74a2ff 100%);
                background-clip: text;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

    .TrustedCompany {
        border-radius: 15px;
        padding: 20px 15px;
        width: 285px;
        height: 189px;
        background: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .TrustedCompany img {
            display: flex;
            border-radius: 90px;
            width: 60px;
            height: 60px;
            justify-content: center;
            align-items: center;
            margin-bottom: 16px;
        }

        .TrustedCompany h6 {
            font-weight: 500;
            font-size: 20px;
            color: #444;
        }



    .Subscriptions {
        margin-bottom: 109px;
        width: 1400px;
        margin: 0px auto 90px;
        padding: 0px 100px;
    }

        .Subscriptions h2 {
            font-family: var(--font-family);
            font-weight: 600;
            font-size: 40px;
            text-align: center;
            color: var(--dark);
            margin-bottom: 73px;
        }

            .Subscriptions h2 span {
                background: linear-gradient(275deg, #56a050 0%, #96cc6b 94.46%);
                background-clip: text;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

    .TryIt {
        width: 1400px;
        margin: 0px auto 90px;
        padding: 0px 100px;
    }

        .TryIt .banner {
            background: url(/images/design/banners/tryit.svg);
            background-size: cover;
            display: flex;
            width: 100%;
            height: 388px;
            align-items: center;
            place-content: center;
            border-radius: 15px;
            padding: 30px;
            margin-right: 20px;
            position: relative;
        }

            .TryIt .banner h4 {
                font-family: var(--font-family);
                font-weight: 500;
                font-size: 32px;
                color: var(--white);
                position: absolute;
                top: 60px;
                left: 600px;
            }

    .TryItFreeLogo {
        padding: 3px 5px;
        background: url(/images/design/banners/tryitfree_logo.svg);
        background-size: inherit;
        background-repeat: no-repeat;
    }


    .TryIt .banner p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 18px;
        line-height: 156%;
        color: var(--white);
        position: absolute;
        top: 172px;
        width: 30%;
        left: 600px;
    }

    .TryIt .banner a {
        background: var(--white);
        border: 1px solid var(--white);
        border-radius: 10px;
        padding: 14px 32px;
        width: 245px;
        height: 47px;
        position: absolute;
        top: 261px;
        left: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
    }


    .cardcalculator .btn-group-radio-respond {
        width: 100%;
        background: #F5F5F5;
        padding: 3px;
        border-radius: 14px;
        height: 56px;
    }

        .cardcalculator .btn-group-radio-respond label {
            /* border: 2px #F5F5F5 solid; */
            padding: 12px;
            font-family: 'Roboto';
            font-style: normal;
            font-weight: 400;
            font-size: 16px;
            /* line-height: 19px; */
            /* identical to box height */
            letter-spacing: -0.01em;
            color: #000000;
            border-radius: 12px;
            width: 50%;
        }

    .testimonial-group .btn-check:checked + .btn {
        transition: .5s;
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        letter-spacing: -0.01em;
        border-radius: 12px;
        color: #ffffff;
        background: #fe8a65 !important;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.07);
        border: #fff0;
        /* height: 48px; */
    }

    .cardcalculator .btn-check:checked + .btn {
        transition: .5s;
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        letter-spacing: -0.01em;
        border-radius: 12px;
        color: #000000;
        background: #FFFFFF !important;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.07);
        border: #fff0;
        /* height: 48px; */
    }


    ul.tabsASbtn {
        display: flex;
        justify-content: space-around;
        background: #f5f5f5;
        border: none;
        border-radius: 12px;
    }

        ul.tabsASbtn li {
            display: flex;
            width: 50%;
            align-items: center;
            justify-content: center;
        }

            ul.tabsASbtn li button {
                display: flex;
                width: 100%;
                align-items: center;
                justify-content: center;
                border-radius: 12px;
                font-weight: 400;
                font-size: 14px;
                height: 39px;
                color: #444;
            }

                ul.tabsASbtn li button.active {
                    width: 97%;
                    border: none;
                    border-radius: 8px;
                    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.07);
                }

                ul.tabsASbtn li button:hover {
                    width: 98%;
                    border: none;
                    border-radius: 8px;
                    border: none;
                }



    .status-error {
        min-height: 700px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .status-error h1 {
            color: var(--blue-main);
            text-align: center;
            font-size: 60px;
            font-style: normal;
            font-weight: 700;
            line-height: normal;
        }

        .status-error h5 {
            color: var(--orange-main, #FE8A65);
            color: var(--gray_250_text, #8A8683);
            text-align: center;
            font-size: 24px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            margin-bottom: 42px;
        }

    .btnStatusError {
        display: flex;
        justify-content: center;
        align-items: stretch;
    }

        .btnStatusError a {
            margin: 6px;
            min-width: 232px;
            height: auto;
            border-radius: 12px !important;
            background: #fff;
        }

            .btnStatusError a:hover {
                background: #fff;
                color: #444;
                margin: 6px;
                min-width: 232px;
                height: auto;
                border-radius: 12px !important;
            }
}




/*========================TOASTR=======================*/

.toast-title {
    font-weight: bold
}

.toast-message {
    -ms-word-wrap: break-word;
    word-wrap: break-word
}

    .toast-message a,
    .toast-message label {
        color: #fff
    }

        .toast-message a:hover {
            color: #cccccc;
            text-decoration: none
        }

.toast-close-button {
    position: relative;
    right: -0.3em;
    top: -0.3em;
    float: right;
    font-weight: bold;
    color: #fff;
    opacity: 0.8
}

    .toast-close-button:hover,
    .toast-close-button:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
        opacity: 0.4
    }

button.toast-close-button {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none
}

.toast-top-center {
    top: 0;
    right: 0;
    width: 100%
}

.toast-bottom-center {
    bottom: 0;
    right: 0;
    width: 100%
}

.toast-top-full-width {
    top: 0;
    right: 0;
    width: 100%
}

.toast-bottom-full-width {
    bottom: 0;
    right: 0;
    width: 100%
}

.toast-top-left {
    top: 12px;
    left: 12px
}

.toast-top-right {
    top: 75px;
    right: 12px
}

.toast-bottom-right {
    right: 12px;
    bottom: 12px
}

.toast-bottom-left {
    bottom: 12px;
    left: 12px
}

#toast-container {
    position: fixed;
    z-index: 999999
}

    #toast-container * {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box
    }

    #toast-container > div {
        position: relative;
        overflow: hidden;
        margin: 0 0 .6rem;
        padding: .6rem .6rem .6rem 50px;
        width: 300px;
        border-radius: 10px;
        background-position: 15px center;
        background-repeat: no-repeat;
        box-shadow: 0 0.46875rem 2.1875rem rgba(4, 9, 20, 0.03), 0 0.9375rem 1.40625rem rgba(4, 9, 20, 0.03), 0 0.25rem 0.53125rem rgba(4, 9, 20, 0.05), 0 0.125rem 0.1875rem rgba(4, 9, 20, 0.03);
        opacity: 1;
    }

        #toast-container > div:hover {
            opacity: 1;
            cursor: pointer
        }

    #toast-container > .toast-info {
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=") !important;
        box-shadow: 0 0.66875rem 2.3875rem rgba(22, 170, 255, 0.03), 0 1.1375rem 1.60625rem rgba(22, 170, 255, 0.03), 0 0.45rem 0.73125rem rgba(22, 170, 255, 0.05), 0 0.325rem 0.3875rem rgba(22, 170, 255, 0.03)
    }

    #toast-container > .toast-error {
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important;
        box-shadow: 0 0.66875rem 2.3875rem rgba(217, 37, 80, 0.03), 0 1.1375rem 1.60625rem rgba(217, 37, 80, 0.03), 0 0.45rem 0.73125rem rgba(217, 37, 80, 0.05), 0 0.325rem 0.3875rem rgba(217, 37, 80, 0.03)
    }

    #toast-container > .toast-success {
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important;
        box-shadow: 0 0.66875rem 2.3875rem rgba(58, 196, 125, 0.03), 0 1.1375rem 1.60625rem rgba(58, 196, 125, 0.03), 0 0.45rem 0.73125rem rgba(58, 196, 125, 0.05), 0 0.325rem 0.3875rem rgba(58, 196, 125, 0.03);
    }

    #toast-container > .toast-warning {
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important;
        box-shadow: 0 0.66875rem 2.3875rem rgba(247, 185, 36, 0.03), 0 1.1375rem 1.60625rem rgba(247, 185, 36, 0.03), 0 0.45rem 0.73125rem rgba(247, 185, 36, 0.05), 0 0.325rem 0.3875rem rgba(247, 185, 36, 0.03);
        color: #212529
    }

    #toast-container.toast-top-center > div,
    #toast-container.toast-bottom-center > div {
        width: 300px;
        margin-left: auto;
        margin-right: auto
    }

    #toast-container.toast-top-full-width > div,
    #toast-container.toast-bottom-full-width > div {
        width: 96%;
        margin-left: auto;
        margin-right: auto
    }

.toast {
    background-color: #343a40;
}

.toast-success {
    color: #ffffff;
    background-color: #96cc6b !important;
}

.toast-error {
    color: #ffffff;
    background-color: #d53f3f !important;
}

.toast-info {
    background-color: #16aaff
}

.toast-warning {
    background-color: #f7b924
}

.toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    background-color: #000;
    opacity: 0.4
}

@media all and (max-width: 240px) {
    #toast-container > div {
        padding: 8px 8px 8px 50px;
        width: 11em
    }

    #toast-container .toast-close-button {
        right: -0.2em;
        top: -0.2em
    }
}

@media all and (min-width: 241px) and (max-width: 480px) {
    #toast-container > div {
        padding: 8px 8px 8px 50px;
        width: 18em
    }

    #toast-container .toast-close-button {
        right: -0.2em;
        top: -0.2em
    }
}

@media all and (min-width: 481px) and (max-width: 768px) {
    #toast-container > div {
        padding: 15px 15px 15px 50px;
        width: 25em
    }
}

/*========================TOASTR=======================*/
.TrustedCompanyRating {
    font-size:16px;
    display: flex;
}
.TrustedCompanyRating div {
    margin: 9px;
}