@charset "UTF-8";
@font-face {
  font-family: 'eesti';
  src: url("./../fonts/eesti/gteestiprodisplay_regular.otf");
  font-weight: normal;
}

@font-face {
  font-family: 'eesti';
  src: url("./../fonts/eesti/gteestiprodisplay_medium.otf");
  font-weight: bold;
}

body {
  font-family: 'eesti';
  overflow: hidden;
}

h1 {
  letter-spacing: -1px;
  line-height: 1em;
}

h2 {
  line-height: 1em;
}

h3 {
  line-height: 1.2;
}

a {
  font-family: 'eesti';
  text-decoration: none !important;
  color: #FF0067;
}

p {
  margin: 0;
  line-height: 1.4;
}

h3[type='attention'] {
  max-width: 900px;
  font-size: 42px !important;
  margin-top: 64px;
  margin: 64px auto !important;
  padding: 0 24px;
}

h3[type='attention'] span {
  color: #FF0067;
}

@media screen and (max-width: 800px) {
  h3[type='attention'] {
    font-size: 36px !important;
  }
}

form p {
  margin-bottom: 16px;
}

form input {
  font-size: 16px !important;
  margin-bottom: 6px;
}

form label {
  font-size: 14px;
}

form input[type='submit'] {
  background-color: #1f5bff;
  border-radius: 99px;
  color: white;
  -webkit-transition: .5s;
  transition: .5s;
  font-size: 14px !important;
  text-transform: none !important;
}

form input[type='submit']:hover {
  background-color: #1f5bff;
  -webkit-box-shadow: 0 16px 32px #00000028;
          box-shadow: 0 16px 32px #00000028;
  -webkit-transition: .3s;
  transition: .3s;
}

button {
  font-family: 'eesty';
  font-weight: bold;
  padding: 16px 32px;
  min-width: 200px;
  border-radius: 99px;
  text-align: center;
  border: none;
  -webkit-transition: .5s;
  transition: .5s;
  cursor: pointer;
}

button p {
  font-size: 16px;
  font-family: 'eesti';
}

button h4 {
  font-size: 20px;
}

button h3 {
  font-size: 32px;
}

button:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 16px #00000028;
          box-shadow: 0 8px 16px #00000028;
  -webkit-transition: .3s;
  transition: .3s;
}

button[type='sm-blue'] {
  background-color: #1f5bff;
  color: white;
  padding: 8px 16px;
  min-width: auto;
}

button[type='sm-blue'] p {
  font-size: 14px;
  white-space: nowrap;
}

button[type='disabled'] {
  background-color: white;
  color: #31333b;
}

button[type='blue'] {
  background-color: #1f5bff;
  color: white;
}

button[type='pink'] {
  background-color: #FF0067;
  color: white;
}

button[type='white'] {
  background-color: white;
  color: #1f5bff;
}

button[type='gray'] {
  font-family: 'eesti';
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 24px auto;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 99px;
  color: #31333b;
  background-color: white;
  border: 1px solid #ACACAC;
  -webkit-transition: .5s;
  transition: .5s;
  min-width: auto;
}

button[type='gray']:hover {
  color: #1f5bff;
  -webkit-transition: .2s;
  transition: .2s;
  border: 1px solid #1f5bff;
}

img[type='dogzaar'] {
  width: 100%;
  max-width: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  justify-self: center;
}

@media screen and (max-width: 800px) {
  img[type='dogzaar'] {
    max-width: 300px;
  }
}

img[type='srm-scheme'] {
  width: 96%;
  margin: 24px;
}

img[type='show-to-you'] {
  width: 400px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
  margin-top: -120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 1024px) {
  img[type='show-to-you'] {
    margin-top: -48px;
    width: 320px;
  }
}

.bdz-ns-user-agreement ol {
  list-style: none;
  counter-reset: num;
  padding: 0;
}

.bdz-ns-user-agreement li {
  padding-bottom: 12px;
  display: table;
}

.bdz-ns-user-agreement li h2 {
  margin-top: 24px;
  display: contents;
}

.bdz-ns-user-agreement li:before {
  content: counters(num, ".") " ";
  counter-increment: num;
  margin-right: 8px;
  font-weight: normal;
  color: #ACACAC;
}

.bdz-ns-user-agreement p {
  margin-bottom: 12px;
}

.bdz-ns-hidden-block {
  display: none;
}

@-webkit-keyframes slideUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(16px);
            transform: translateY(16px);
  }
  100% {
    opacity: 100%;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(16px);
            transform: translateY(16px);
  }
  100% {
    opacity: 100%;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@-webkit-keyframes slideDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  100% {
    opacity: 100%;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes slideDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  100% {
    opacity: 100%;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@-webkit-keyframes slideDownSm {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    opacity: 100%;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes slideDownSm {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    opacity: 100%;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes slideLeft {
  0% {
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(200px);
            transform: translateX(200px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes slideRight {
  0% {
    -webkit-transform: translateX(200px);
            transform: translateX(200px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes openMenu {
  0% {
    opacity: 0;
    grid-template-columns: 0 1fr;
  }
  100% {
    opacity: 1;
    grid-template-columns: 320px 1fr;
  }
}

@keyframes openMenu {
  0% {
    opacity: 0;
    -ms-grid-columns: 0 1fr;
        grid-template-columns: 0 1fr;
  }
  100% {
    opacity: 1;
    -ms-grid-columns: 320px 1fr;
        grid-template-columns: 320px 1fr;
  }
}

@-webkit-keyframes ny-logo-animation {
  0% {
    background-size: 100%;
  }
  50% {
    background-size: 300%;
  }
  100% {
    background-size: 100%;
  }
}

@keyframes ny-logo-animation {
  0% {
    background-size: 100%;
  }
  50% {
    background-size: 300%;
  }
  100% {
    background-size: 100%;
  }
}

#vk_playlist_-226008055_1 {
  max-width: 900px;
  margin: 64px auto;
}

.bdz-footer-ns {
  max-width: 1920px;
  background-color: #111111;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4fr;
      grid-template-columns: 1fr 4fr;
  border-radius: 64px 64px 0 0;
  font-family: eesti;
  margin: 0 auto;
  margin-bottom: -80px;
}

.bdz-footer-ns h1 {
  font-family: eesti, sans-serif !important;
  letter-spacing: -2px;
}

.bdz-footer-ns h2 {
  font-family: eesti, sans-serif !important;
  letter-spacing: -1px;
}

.bdz-footer-ns h3 {
  font-family: eesti, sans-serif !important;
}

.bdz-footer-ns h4 {
  font-family: eesti, sans-serif !important;
}

.bdz-footer-ns h5 {
  font-family: eesti, sans-serif !important;
}

.bdz-footer-ns h6 {
  font-family: eesti, sans-serif !important;
}

.bdz-footer-ns p {
  font-family: eesti, sans-serif !important;
}

.bdz-footer-ns li {
  font-family: eesti, sans-serif !important;
}

.bdz-footer-ns button {
  font-family: eesti, sans-serif !important;
}

@media screen and (max-width: 1360px) {
  .bdz-footer-ns {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    background-position: bottom right;
  }
}

.bdz-footer-ns-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  padding-top: 56px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.bdz-footer-ns-brand a {
  color: white;
}

.bdz-footer-ns-brand a img {
  max-width: 142px;
  padding: 16px 0;
  display: block;
}

.bdz-footer-ns-brand img {
  max-height: 320px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 1360px) {
  .bdz-footer-ns-brand img {
    display: none;
  }
}

.bdz-footer-ns-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: -56px;
}

.bdz-footer-ns-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  padding: 56px 32px;
}

.bdz-footer-ns-showcase {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
}

.bdz-footer-ns-showcase img {
  max-width: 160px;
  max-height: 50px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 1200px) {
  .bdz-footer-ns-showcase {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .bdz-footer-ns-showcase img {
    max-width: 150px;
    height: 42px;
  }
}

@media screen and (max-width: 1023px) {
  .bdz-footer-ns-showcase {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.bdz-footer-ns-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 16px;
  margin-top: 16px;
}

.bdz-footer-ns-links span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.bdz-footer-ns-links span h4 {
  color: #ACACAC;
  margin-bottom: 16px;
}

.bdz-footer-ns-links a {
  text-decoration: none !important;
  color: white !important;
  font-weight: normal !important;
  margin-bottom: 4px;
}

.bdz-footer-ns-links a:hover {
  color: #FF0067 !important;
}

@media screen and (max-width: 800px) {
  .bdz-footer-ns-links {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    margin-bottom: 42px;
    margin-top: 24px;
  }
}

.bdz-footer-ns-additional-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.bdz-footer-ns-additional-links ul {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  width: 100%;
}

.bdz-footer-ns-additional-links li {
  color: #ACACAC !important;
  margin-bottom: 16px;
  line-height: 16px;
}

.bdz-footer-ns-additional-links a {
  text-decoration: none;
  color: #ACACAC !important;
  font-weight: normal !important;
}

.bdz-footer-ns-additional-links a:hover {
  color: #C7C7C7 !important;
}

@media screen and (max-width: 800px) {
  .bdz-footer-ns-additional-links {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 0;
  }
  .bdz-footer-ns-additional-links ul {
    margin: 0;
  }
}

.bdz-footer-ns-copyright {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

.bdz-footer-ns-copyright p {
  margin: 0;
  color: #ACACAC;
  font-weight: normal !important;
  font-size: 12px !important;
}

.bdz-footer-ns-copyright button {
  background-color: transparent;
  color: #FF0067 !important;
  -webkit-box-shadow: inset 0 0 4px #FF0067 !important;
          box-shadow: inset 0 0 4px #FF0067 !important;
  border-radius: 8px !important;
  padding: 8px 24px !important;
  border: 0 !important;
  -webkit-transition: 1s;
  transition: 1s;
}

.bdz-footer-ns-copyright button:hover {
  background-color: #FF0067 !important;
  color: white !important;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

@media screen and (max-width: 1023px) {
  .bdz-footer-ns-copyright {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .bdz-footer-ns-copyright p {
    color: #ACACAC;
  }
  .bdz-footer-ns-copyright button {
    background-color: transparent;
  }
}

.bdz-footer-ns-links-block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr;
      grid-template-columns: 2fr 1fr;
  gap: 32px;
}

@media screen and (max-width: 1200px) {
  .bdz-footer-ns-links-block {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.bdz-footer-ns-hh {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding: 32px;
  color: white;
  background-color: #ffffff18;
  border-radius: 24px 24px 0 0;
  position: relative;
  overflow: hidden;
}

.bdz-footer-ns-hh img[type='bdz-doggie'] {
  position: absolute;
  width: 45%;
  -o-object-fit: contain;
     object-fit: contain;
  bottom: -32px;
  right: -52px;
}

@media screen and (max-width: 1200px) {
  .bdz-footer-ns-hh img[type='bdz-doggie'] {
    width: 16%;
  }
}

@media screen and (max-width: 1023px) {
  .bdz-footer-ns-hh img[type='bdz-doggie'] {
    width: 136px;
  }
}

@media screen and (max-width: 600px) {
  .bdz-footer-ns-hh img[type='bdz-doggie'] {
    width: 150px;
  }
}

@media screen and (max-width: 419px) {
  .bdz-footer-ns-hh img[type='bdz-doggie'] {
    display: none;
  }
}

.bdz-footer-ns-hh img[type='bdz-hh-finalist'] {
  width: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 600px) {
  .bdz-footer-ns-hh img[type='bdz-hh-finalist'] {
    width: 100px;
  }
}

.bdz-footer-ns-hh button {
  color: white !important;
  width: 100% !important;
  background-color: transparent !important;
  border: 2px solid white !important;
  border-radius: 99px !important;
  -webkit-transition: 1s;
  transition: 1s;
}

.bdz-footer-ns-hh button p {
  text-align: center;
  font-size: 14px !important;
}

@media screen and (max-width: 1023px) {
  .bdz-footer-ns-hh {
    padding: 24px;
    gap: 24px;
  }
}

.bdz-footer-ns-hh-stat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.bdz-footer-ns-hh-stat h4 {
  font-size: 42px !important;
  margin: 0 !important;
  line-height: 0.9;
  font-weight: normal;
  color: white;
}

.bdz-footer-ns-hh-stat h4 span {
  font-size: 14px !important;
}

.bdz-footer-ns-hh-stat p {
  font-size: 14px !important;
  margin-top: 8px;
  margin: 6px 0 !important;
  color: #ACACAC;
}

@media screen and (max-width: 1200px) {
  .bdz-footer-ns-hh-stat h4 {
    font-size: 36px;
  }
}

.bdz-footer-ns-hh-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-top: auto;
  width: 60%;
}

@media screen and (max-width: 1200px) {
  .bdz-footer-ns-hh-image {
    width: 25%;
  }
}

@media screen and (max-width: 419px) {
  .bdz-footer-ns-hh-image {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}

.bdz-mpns-footer-buuble {
  position: relative;
  margin-top: auto;
  margin-bottom: 36px;
}

@media screen and (max-width: 1600px) {
  .bdz-mpns-footer-buuble {
    margin-bottom: 0;
  }
}

.bdz-mpns-footer-buuble-body {
  border-radius: 99px;
  background-color: #FF0067;
  padding: 16px 0;
}

.bdz-mpns-footer-buuble-body p {
  color: white;
  margin: 0;
  text-align: center;
  font-size: 14px !important;
  padding: 0 12px;
}

.bdz-footer-bubble-note {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
  background-color: #FF0067;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 76px;
  bottom: -18px;
}

@media screen and (max-width: 419px) {
  .bdz-footer-bubble-note {
    display: none;
  }
}

#open-menu {
  display: none;
  cursor: pointer;
}

@media screen and (max-width: 1023px) {
  #open-menu {
    display: block;
  }
}

.bdz-ns-header {
  margin: 0 auto;
  max-width: 1872px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 64px;
  gap: 64px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: eesti;
}

.bdz-ns-header div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

.bdz-ns-header p {
  font-size: 16px;
}

.bdz-ns-header div[type='logo'] {
  -webkit-clip-path: url(#bdz-logo);
          clip-path: url(#bdz-logo);
}

.bdz-ns-header div[type='logo'] span {
  width: 120px !important;
  height: 28px !important;
  display: block !important;
  background-color: #111111;
}

.bdz-ns-header div[type='registration'] {
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.bdz-ns-header div[type='registration'] p[type='mobile'] {
  display: none;
}

.bdz-ns-header div[type='registration'] p[type='desktop'] {
  display: block;
}

.bdz-ns-header div[type='menu-item'] {
  position: relative;
}

.bdz-ns-header img {
  width: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}

.bdz-ns-header a {
  text-decoration: none !important;
  font-weight: bold;
  color: #111111;
}

.bdz-ns-header a:hover {
  color: #FF0067;
}

.bdz-ns-header p {
  margin: 0 !important;
  font-weight: bold !important;
}

.bdz-ns-header a[type='active'] {
  color: white;
  background-color: #FF0067;
  padding: 8px 24px;
  border-radius: 99px;
}

@media screen and (max-width: 1023px) {
  .bdz-ns-header div {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
  .bdz-ns-header div[type='menu'] {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .bdz-ns-header {
    padding: 24px;
    gap: 32px;
  }
  .bdz-ns-header div[type='menu'] {
    display: none;
  }
  .bdz-ns-header div[type='logo'] {
    display: block !important;
  }
  .bdz-ns-header div[type='registration'] p[type='desktop'] {
    display: none;
  }
  .bdz-ns-header div[type='registration'] p[type='mobile'] {
    display: block;
  }
}

.bdz-ns-header-container {
  width: 100%;
  position: fixed;
  z-index: 999;
  background-color: white;
  right: 0;
}

.bdz-ns-header-container[type='transparent'] {
  background-color: transparent;
}

.bdz-ns-header-container[type='transparent'] p {
  color: white;
}

.bdz-ns-header-container[type='transparent'] p:hover {
  color: white;
}

.bdz-ns-header-container[type='transparent'] span {
  color: white;
}

.bdz-ns-header-container[type='transparent'] div[type='logo'] span {
  background: white;
}

.bdz-ns-header-sticky {
  width: 100%;
  position: fixed;
  z-index: 999;
  background-color: white;
  right: 0;
  -webkit-box-shadow: 8px 0 16px #0000001a;
          box-shadow: 8px 0 16px #0000001a;
}

.bdz-ns-header-sticky div[type='logo'] span {
  background-color: #111111;
}

.bdz-ns-mobile-menu {
  position: fixed;
  z-index: 9999;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 320px 1fr;
      grid-template-columns: 320px 1fr;
  height: 100vh;
  width: 100%;
  -webkit-animation: openMenu .3s ease-in;
          animation: openMenu .3s ease-in;
}

.bdz-ns-mobile-menu p {
  font-size: 16px;
}

.bdz-ns-mobile-menu div[type='backdrop'] {
  background-color: #0000003a;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.bdz-ns-mm-container {
  background-color: white;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100vh;
}

.bdz-ns-mm-container div[type='mobile-logo'] {
  -webkit-clip-path: url(#bdz-logo);
          clip-path: url(#bdz-logo);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.bdz-ns-mm-container div[type='mobile-logo'] span {
  width: 120px;
  height: 28px;
  display: block;
  background-color: #111111;
}

.bdz-ns-mm-container div[type='menu'] {
  position: relative;
  overflow-y: overlay;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  height: 100%;
}

.bdz-ns-mm-container div[type='menu'] span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.bdz-ns-mm-container div[type='menu'] h3 {
  color: #ACACAC;
  margin: 0;
}

.bdz-ns-mm-container div[type='menu'] a {
  text-decoration: none;
  color: #111111;
  font-weight: bold;
  margin-bottom: 12px;
}

.bdz-ns-mm-container div[type='menu'] a:hover {
  color: #FF0067;
}

.bdz-ns-mm-container div[type='menu'] p {
  margin: 0 !important;
}

.bdz-ns-mm-container div[type='gradient'] {
  position: fixed;
  width: 100%;
  height: 62px;
  bottom: 128px;
  background: -webkit-gradient(linear, left bottom, left top, from(#FFFFFF), to(#ffffff00));
  background: linear-gradient(to top, #FFFFFF, #ffffff00);
}

.bdz-ns-mm-container div[type='registration'] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.bdz-ns-mm-container div[type='registration'] a {
  padding: 8px;
  border: 1px solid #ACACAC;
  border-radius: 8px;
  font-weight: bold;
  color: #111111;
  text-align: center;
  text-decoration: none;
  width: 100%;
}

.bdz-ns-mm-container div[type='registration'] a[type='active'] {
  background-color: #FF0067;
  color: white;
  border: none;
}

.bdz-ns-mm-container div[type='registration'] p {
  margin: 0 !important;
}

.bdz-ns-mm-logo-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  width: 100%;
}

.bdz-ns-mm-logo-container span[type='close'] {
  cursor: pointer;
}

.bdz-menu-item-container {
  position: relative;
  cursor: pointer;
}

.bdz-menu-title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px !important;
}

.bdz-menu-title span {
  color: #C7C7C7;
  display: block;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: .3s;
  transition: .3s;
}

.bdz-menu-title-active {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px !important;
}

.bdz-menu-title-active p {
  color: #FF0067;
}

.bdz-menu-title-active span {
  color: #FF0067;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-transition: .3s;
  transition: .3s;
}

.bdz-submenu-hidden {
  display: none !important;
}

.bdz-submenu {
  -webkit-animation: .2s slideDownSm ease-in;
          animation: .2s slideDownSm ease-in;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 24px;
  border-radius: 16px;
  background-color: white;
  margin-top: 32px;
  left: -24px;
  -webkit-box-shadow: 0 16px 32px #00000013;
          box-shadow: 0 16px 32px #00000013;
  border: 1px solid #F5F5F5;
}

.bdz-submenu p {
  color: #111111 !important;
}

.bdz-submenu p:hover {
  color: #FF0067 !important;
}

.bdz-mpns-fair-block {
  display: -ms-grid;
  display: grid;
  border-radius: 0 0 64px 64px;
  overflow: hidden;
  padding-top: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  min-height: 80vh;
  -ms-grid-columns: 2fr 3fr;
      grid-template-columns: 2fr 3fr;
}

@media screen and (max-width: 800px) {
  .bdz-mpns-fair-block {
    -ms-grid-columns: 1fr !important;
        grid-template-columns: 1fr !important;
    background-position: center bottom;
  }
}

.bdz-mpns-fair-block[type='purchaiser'] {
  background-color: #FF0067;
  -ms-grid-columns: 2fr 3fr;
      grid-template-columns: 2fr 3fr;
  background-image: url("/wp-content/uploads/2025/09/0000_purchaiser-cover.png");
  background-position: left bottom;
}

.bdz-mpns-fair-block[type='supplier'] {
  background-color: #1f5bff;
  -ms-grid-columns: 3fr 2fr;
      grid-template-columns: 3fr 2fr;
  background-position: right bottom;
  background-image: url("/wp-content/uploads/2025/09/0001_supplier-cover.png");
}

.bdz-mpns-fair-block[type='seller'] {
  background-color: #FF0067;
  -ms-grid-columns: 2fr 3fr;
      grid-template-columns: 2fr 3fr;
  background-image: url("/wp-content/uploads/2025/09/0002_sellers-cover.png");
  background-position: left bottom;
}

.bdz-mpns-fair-block[type='buyer'] {
  background-color: #1f5bff;
  -ms-grid-columns: 3fr 2fr;
      grid-template-columns: 3fr 2fr;
  background-position: right bottom;
  background-image: url("/wp-content/uploads/2025/09/0003_buyers-cover.png");
}

.bdz-mpns-fair-block[type='about'] {
  height: 70vh;
  background-color: white;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

.bdz-mpns-fair-block[type='srm'] {
  background-color: #FF0067;
  -ms-grid-columns: 2fr 3fr;
      grid-template-columns: 2fr 3fr;
  background-image: url("/wp-content/uploads/2024/08/with-dog.png");
  background-position: left bottom;
}

.bdz-mpns-fair-block[type='aggregator'] {
  background-color: #1f5bff;
  -ms-grid-columns: 3fr 2fr;
      grid-template-columns: 3fr 2fr;
  background-position: right bottom;
  background-image: url("/wp-content/uploads/2025/09/0004_aggregator-cover.png");
}

.bdz-mpns-fair-block[type='certification'] {
  background-color: #FF0067;
  -ms-grid-columns: 2fr 3fr;
      grid-template-columns: 2fr 3fr;
  background-position: left bottom;
  background-image: url("/wp-content/uploads/2025/09/marble-statue-cover.png");
}

.bdz-mpns-fair-block[type='lending'] {
  background-color: #1f5bff;
  -ms-grid-columns: 3fr 2fr;
      grid-template-columns: 3fr 2fr;
  background-position: right bottom;
  background-image: url("/wp-content/uploads/2025/10/glass-gravity-build.png");
  background-size: contain;
}

.bdz-mpns-fair-img {
  position: relative;
  margin-left: -72px;
}

.bdz-mpns-fair-img img {
  position: absolute;
  z-index: 2;
  top: 48px;
}

@media screen and (max-width: 800px) {
  .bdz-mpns-fair-img img {
    position: relative;
  }
}

.bdz-mpns-curved-1 {
  -webkit-clip-path: url(#clip-half-wide-1);
          clip-path: url(#clip-half-wide-1);
  height: 100%;
  margin-right: 72px;
}

@media screen and (max-width: 800px) {
  .bdz-mpns-curved-1 {
    margin-right: 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: -1;
  }
}

.colorpink {
  background-color: #FF0067;
  height: 100%;
}

.bdz-fair-content, .bdz-mpns-fair-content, .bdz-ppns-fair-content, .bdz-spns-fair-content, .bdz-about-fair-content, .bdz-srm-fair-content {
  padding: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.bdz-fair-content h1, .bdz-mpns-fair-content h1, .bdz-ppns-fair-content h1, .bdz-spns-fair-content h1, .bdz-about-fair-content h1, .bdz-srm-fair-content h1 {
  font-size: 72px;
  font-weight: normal;
  color: white;
  margin-bottom: 0;
}

.bdz-fair-content h3, .bdz-mpns-fair-content h3, .bdz-ppns-fair-content h3, .bdz-spns-fair-content h3, .bdz-about-fair-content h3, .bdz-srm-fair-content h3 {
  color: white;
  font-size: 24px;
  font-weight: normal;
}

@media screen and (max-width: 800px) {
  .bdz-fair-content, .bdz-mpns-fair-content, .bdz-ppns-fair-content, .bdz-spns-fair-content, .bdz-about-fair-content, .bdz-srm-fair-content {
    padding: 16px;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
    margin-bottom: 300px;
  }
  .bdz-fair-content h1, .bdz-mpns-fair-content h1, .bdz-ppns-fair-content h1, .bdz-spns-fair-content h1, .bdz-about-fair-content h1, .bdz-srm-fair-content h1 {
    font-size: 36px !important;
    text-align: center;
  }
  .bdz-fair-content h3, .bdz-mpns-fair-content h3, .bdz-ppns-fair-content h3, .bdz-spns-fair-content h3, .bdz-about-fair-content h3, .bdz-srm-fair-content h3 {
    text-align: center;
  }
}

.bdz-mpns-fair-content {
  padding: 32px !important;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 0;
}

.bdz-mpns-fair-content h1 {
  font-size: 64px;
  font-weight: normal;
  color: #111111;
  text-align: left;
}

.bdz-mpns-fair-content h1 span {
  color: #FF0067;
}

.bdz-mpns-fair-content h3 {
  color: #111111;
  text-align: right;
  font-size: 24px !important;
  font-weight: normal !important;
}

.bdz-ppns-fair-content {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: right;
}

.bdz-spns-fair-content {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.bdz-about-fair-content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.bdz-about-fair-content h1 {
  color: #111111;
}

.bdz-about-fair-content span {
  color: #FF0067;
}

.bdz-srm-fair-content {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  z-index: 2;
}

.bdz-srm-fair-content img {
  max-width: 400px;
}

.bdz-srm-fair-content p {
  color: white;
  opacity: .7;
}

@media screen and (max-width: 1024px) {
  .bdz-srm-fair-content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .bdz-srm-fair-content h3 {
    font-size: 42px;
  }
  .bdz-srm-fair-content img {
    width: auto;
  }
}

.bdz-mpns-hidden-statistic {
  display: none !important;
}

.bdz-mpns-fair-btn-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  width: 100%;
}

.bdz-mpns-fair-btn-block div {
  width: 100%;
}

@media screen and (max-width: 600px) {
  .bdz-mpns-fair-btn-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    margin: 16px 0;
  }
  .bdz-mpns-fair-btn-block div {
    width: auto;
  }
}

#bdz-mpns-supplier-button {
  -webkit-clip-path: url(#clip-narrow-1);
          clip-path: url(#clip-narrow-1);
}

#bdz-mpns-purchaiser-button {
  -webkit-clip-path: url(#clip-narrow-2);
          clip-path: url(#clip-narrow-2);
}

.bdz-mpns-fair-interactive {
  padding: 40px;
  cursor: pointer;
  background-color: #F7F7F7;
}

.bdz-mpns-fair-interactive h3 {
  font-size: 36px !important;
  font-weight: normal !important;
  text-align: center;
  margin: 0 !important;
}

@media screen and (max-width: 1200px) {
  .bdz-mpns-fair-interactive {
    padding: 24px;
  }
  .bdz-mpns-fair-interactive h3 {
    font-size: 20px !important;
  }
}

.bdz-mpns-fair-btn-active {
  -webkit-transition: .3s;
  transition: .3s;
  background-color: #FF0067;
}

.bdz-mpns-fair-btn-active h3 {
  font-weight: normal !important;
  margin: 0 !important;
  color: white;
}

.bdz-mpns-fair-statistic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 36px;
  -webkit-animation: slideUp .3s ease-in;
          animation: slideUp .3s ease-in;
  width: 100%;
  margin-top: 42px;
}

.bdz-mpns-fair-statistic span {
  text-align: center;
  padding: 0 24px;
}

.bdz-mpns-fair-statistic h3 {
  font-size: 42px !important;
  margin-bottom: 8px !important;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .bdz-mpns-fair-statistic {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .bdz-mpns-fair-statistic h3 {
    font-size: 32px !important;
  }
}

@media screen and (max-width: 1024px) {
  .bdz-mpns-fair-statistic h3 {
    font-size: 24px !important;
  }
}

@media screen and (max-width: 600px) {
  .bdz-mpns-fair-statistic {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}

.bdz-fair-btn-interactive {
  -webkit-transition: .3s;
  transition: .3s;
  padding: 40px;
  -webkit-clip-path: url(#clip-narrow-1);
          clip-path: url(#clip-narrow-1);
}

.bdz-fair-btn-interactive h3 {
  margin: 0;
}

.bdz-fair-btn-interactive[type="pink"] {
  background-color: #FF0067;
  color: white;
}

.bdz-fair-btn-interactive[type='white'] {
  background-color: white;
}

.bdz-fair-btn-interactive[type='white'] h3 {
  color: #FF0067;
}

.bdz-fair-btn-interactive:hover {
  padding: 40px 56px;
  -webkit-transition: .3s;
  transition: .3s;
}

.bdz-mpns-partners-gallery {
  padding: 32px;
}

@media screen and (max-width: 800px) {
  .bdz-mpns-partners-gallery {
    padding: 24px;
  }
}

.bdz-mpns-logo-gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  -webkit-animation: slideUp .3s ease-in;
          animation: slideUp .3s ease-in;
  padding: 0 32px;
  margin: 0 16px;
}

.bdz-mpns-logo-gallery img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  border-radius: 8px;
  background-color: #F7F7F7;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: .3s;
  transition: .3s;
}

.bdz-mpns-logo-gallery img:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 1024px) {
  .bdz-mpns-logo-gallery {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 800px) {
  .bdz-mpns-logo-gallery {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    padding: 0;
    gap: 16px;
  }
}

.animate-logo {
  -webkit-animation: fadeIn .3s ease-in;
          animation: fadeIn .3s ease-in;
}

.bdz-mpns-gallery-container {
  position: relative;
  overflow-x: auto;
  border-radius: 17px;
}

.bdz-mpns-gallery-container::-webkit-scrollbar {
  display: none;
}

.bdz-mpns-gallery-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  gap: 16px;
  max-width: 80%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 24px auto;
}

@media screen and (max-width: 1200px) {
  .bdz-mpns-gallery-menu {
    max-width: 100%;
    gap: 8px;
  }
}

@media screen and (max-width: 800px) {
  .bdz-mpns-gallery-menu {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin-bottom: 24px;
    margin-top: 0;
  }
  .bdz-mpns-gallery-menu span {
    white-space: nowrap;
  }
}

.bdz-mpns-gallery-menu[type='big-menu'] {
  max-width: 100%;
}

.mpns-gallery-arrow {
  position: absolute;
  cursor: pointer;
  height: 24px;
  width: 24px;
  border-radius: 99px;
  padding: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 800px) {
  .mpns-gallery-arrow {
    display: none;
  }
}

.arrow-forward, .arrow-backward {
  border-right: 2px solid;
  border-bottom: 2px solid;
  border-color: #1f5bff;
  width: 12px;
  height: 12px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  display: block;
}

.arrow-backward {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

#slideforward {
  right: 8px;
}

#slidebackward {
  left: 8px;
}

.bdz-mpns-category-btn, .bdz-mpns-category-btn-active {
  padding: 8px 16px;
  border-radius: 99px;
  cursor: pointer;
  font-size: 14px;
  color: #31333b;
  opacity: .75;
  border: 1px solid #ACACAC;
}

.bdz-mpns-category-btn:hover, .bdz-mpns-category-btn-active:hover {
  opacity: 1;
  color: #1f5bff;
  background-color: #1f5bff0e;
  -webkit-transition: .2s;
  transition: .2s;
  border: 1px solid #1f5bff;
}

.bdz-mpns-category-btn[type='big-menu'], .bdz-mpns-category-btn-active[type='big-menu'] {
  padding: 16px 24px;
  font-size: 20px;
}

.bdz-mpns-category-btn-active {
  opacity: 1;
  color: white;
  background-color: #1f5bff;
  border: 1px solid #1f5bff;
}

.bdz-mpns-category-btn-active:hover {
  color: white;
  background-color: #1f5bff;
}

.customers-gallery-logo {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  border-radius: 8px;
  background-color: #F7F7F7;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: .3s;
  transition: .3s;
}

.customers-gallery-logo:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  -webkit-transition: .3s;
  transition: .3s;
}

.gallery-img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  border-radius: 8px;
  background-color: #F7F7F7;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: .3s;
  transition: .3s;
}

.gallery-img:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  -webkit-transition: .3s;
  transition: .3s;
}

.bdz-nrates-purchaiser-container {
  background-color: #F9F9F9;
}

.bdz-nrates-supplier-container {
  background-color: #AD1457;
}

.bdz-nrates-content {
  max-width: 1200px;
  padding: 24px;
  margin: 0 auto;
}

.bdz-nrates-content h1 {
  font-size: 48px !important;
  font-weight: 900 !important;
  margin: 24px 0;
}

.bdz-nrates-content h1[color='white'] {
  color: white;
}

.bdz-nrates-content h1[color='black'] {
  color: #08000A;
}

@media screen and (max-width: 900px) {
  .bdz-nrates-content h1 {
    font-size: 32px !important;
    text-align: center;
  }
}

.bdz-nrates-table {
  padding: 24px;
  background-color: white;
  border-radius: 16px;
}

.bdz-nrates-table-string {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid #E0E0E0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 0;
}

.bdz-nrates-table-string[type='table-header'] {
  border-bottom: 3px solid #E0E0E0;
}

.bdz-nrates-table-string[type='table-footer'] {
  border-bottom: none;
}

.bdz-nrates-table-string[type='selected'] {
  background-color: #FEF7E0;
}

.bdz-nrates-table-string[type='2col'] {
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  border-bottom: none;
}

.bdz-nrates-table-string[type='3col'] {
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  border-bottom: none;
}

@media screen and (max-width: 900px) {
  .bdz-nrates-table-string {
    display: none;
    padding: 0;
  }
  .bdz-nrates-table-string[type='table-header'] {
    border-bottom: none;
  }
  .bdz-nrates-table-string[type='table-header'] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .bdz-nrates-table-string[type='2col'] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .bdz-nrates-table-string[type='3col'] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.bdz-nrates-pc-contact-form-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 24px;
          column-gap: 24px;
  margin-top: 48px;
  padding: 24px;
}

.bdz-nrates-pc-contact-form-container h2 {
  font-size: 32px !important;
  font-weight: 900 !important;
}

@media screen and (max-width: 1024px) {
  .bdz-nrates-pc-contact-form-container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    margin-top: 0;
  }
}

.bdz-nrates-pc-contact-form {
  background-color: white;
  border-radius: 8px;
  padding: 24px;
}

.bdz-nrates-fs-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  max-height: 128px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bdz-nrates-fs-title img {
  width: 50%;
}

@media screen and (max-width: 900px) {
  .bdz-nrates-fs-title {
    display: none;
  }
}

.bdz-nrates-fs-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-left: 1px solid #E0E0E0;
  padding: 16px;
}

.bdz-nrates-fs-product h4 {
  font-size: 24px !important;
  font-weight: 900 !important;
  text-align: center;
}

.bdz-nrates-fs-product p {
  text-align: center;
}

.bdz-nrates-fs-product button[type='disable'] {
  background-color: white !important;
  color: #FF9500;
}

.bdz-nrates-fs-product[type='first-product'] {
  border-left: none;
}

.bdz-nrates-fs-product[type='last-product'] {
  border-bottom: none;
}

@media screen and (max-width: 1200px) {
  .bdz-nrates-fs-product h4 {
    font-size: 16px !important;
    text-align: center;
  }
}

@media screen and (max-width: 900px) {
  .bdz-nrates-fs-product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    border-left: none;
    border-bottom: 1px solid #E0E0E0;
  }
  .bdz-nrates-fs-product h4 {
    font-size: 24px !important;
  }
}

.bdz-nrates-is-title {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #666666;
}

.bdz-nrates-is-bool {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  height: 24px;
}

.bdz-nrates-is-bool[type='true'] {
  background-image: url("https://bidzaar.com/start/wp-content/uploads/2024/02/true.png");
}

.bdz-nrates-is-bool[type='false'] {
  background-image: url("https://bidzaar.com/start/wp-content/uploads/2024/02/false.png");
}

.bdz-nrates-supplier-features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.bdz-nrates-supplier-features h2 {
  color: white;
  font-weight: 900 !important;
}

.bdz-nrates-sf-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  background-color: white;
  border-radius: 8px;
  margin: 0 auto;
  padding: 24px;
  margin: 8px 0px;
}

.bdz-nrates-sf-item img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 160px;
  border-radius: 8px;
}

.bdz-nrates-sf-item p {
  margin-top: 24px;
  color: black;
  font-size: 16px !important;
  font-weight: 900 !important;
}

.bdz-nrates-sf-item span {
  color: #666666;
  font-size: 14px !important;
  padding-bottom: 16px;
}

.bdz-nrates-sf-4-col {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  -webkit-column-gap: 16px;
          column-gap: 16px;
}

@media screen and (max-width: 1024px) {
  .bdz-nrates-sf-4-col {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 600px) {
  .bdz-nrates-sf-4-col {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.bdz-nrates-sf-3-col {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  -webkit-column-gap: 16px;
          column-gap: 16px;
}

@media screen and (max-width: 1024px) {
  .bdz-nrates-sf-3-col {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 600px) {
  .bdz-nrates-sf-3-col {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.bdz-fdwi-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
  margin-top: -72px;
}

@media screen and (max-width: 1024px) {
  .bdz-fdwi-container {
    max-width: 710px;
  }
}

.bdz-fdwi-content {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 24px;
          column-gap: 24px;
  row-gap: 24px;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 1024px) {
  .bdz-fdwi-content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -webkit-column-gap: 12px;
            column-gap: 12px;
    row-gap: 12px;
  }
}

.bdz-fdwi-img-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  background-color: white;
  -webkit-box-shadow: 0 16px 32px #C8C7CC;
          box-shadow: 0 16px 32px #C8C7CC;
  border-radius: 8px;
  padding: 24px;
  margin: 0 auto;
}

.bdz-fdwi-img-feature img {
  -o-object-fit: cover;
     object-fit: cover;
  margin: -24px;
  margin-left: 16px;
  max-width: 50%;
}

.bdz-fdwi-img-feature h4 {
  color: #000000 !important;
  margin-top: 0;
  margin-bottom: 16px;
  font-weight: 500 !important;
}

.bdz-fdwi-img-feature p {
  margin: 0;
  color: #666666;
  font-size: 14px !important;
}

@media screen and (max-width: 600px) {
  .bdz-fdwi-img-feature {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .bdz-fdwi-img-feature img {
    margin-bottom: 0;
    margin-left: -24px;
    height: 160px;
    -o-object-fit: cover;
       object-fit: cover;
    max-width: 100vw;
  }
  .bdz-fdwi-img-feature h4 {
    margin-top: 16px;
  }
}

.bdz-timeline-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.bdz-timeline-container p {
  font-size: 14px !important;
}

@media screen and (max-width: 1024px) {
  .bdz-timeline-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.bdz-timeline-card div[type='tl-description'] {
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px 8px;
}

.bdz-timeline-card div[type='tl-description'] p {
  font-size: 16px;
  text-align: center;
}

.bdz-timeline-card div[type='tl-description'] span {
  font-size: 32px;
  text-align: center;
  color: #FF0067;
}

.bdz-timeline-card div[type='tl-timeline'] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 168px;
}

.bdz-timeline-card img {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 60px;
}

.bdz-timeline-card span[type='ending'] {
  height: 8px;
  background-color: white;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.bdz-timeline-card span[type='line'] {
  height: 8px;
  background-color: #FF0067;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.bdz-timeline-card span[type='round'] {
  padding: 16px;
  border-radius: 99px;
  border: 8px solid #FF0067;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
}

@media screen and (max-width: 1024px) {
  .bdz-timeline-card {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 4fr;
        grid-template-columns: 1fr 4fr;
  }
  .bdz-timeline-card img {
    width: 80px;
    height: 80px;
  }
  .bdz-timeline-card div[type='tl-timeline'] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 112px;
    height: auto;
  }
  .bdz-timeline-card span[type='ending'] {
    width: 8px;
    background-color: white;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .bdz-timeline-card span[type='line'] {
    width: 8px;
    background-color: #FF0067;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .bdz-timeline-card span[type='round'] {
    padding: 8px;
  }
  .bdz-timeline-card div[type='tl-description'] {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
    padding: 24px 16px;
  }
  .bdz-timeline-card div[type='tl-description'] p {
    font-size: 16px;
    text-align: left;
  }
  .bdz-timeline-card div[type='tl-description'] span {
    font-size: 24px;
    text-align: left;
    color: #FF0067;
  }
}

.bdz-ns-offices {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.bdz-ns-offices div {
  -webkit-filter: grayscale(1) brightness(1.2);
          filter: grayscale(1) brightness(1.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 24px;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: .5s;
  transition: .5s;
}

.bdz-ns-offices div h4 {
  text-align: center;
  font-size: 24px;
  color: #1f5bff;
  margin: 16px 0;
}

.bdz-ns-offices div p {
  text-align: center;
  color: #ACACAC;
  font-weight: normal;
}

.bdz-ns-offices div img {
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}

.bdz-ns-offices div:hover {
  -webkit-filter: none;
          filter: none;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 1024px) {
  .bdz-ns-offices {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
  .bdz-ns-offices div {
    width: 100%;
    -webkit-filter: none;
            filter: none;
  }
}

@media screen and (max-width: 800px) {
  .bdz-ns-offices {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .bdz-ns-offices h4 {
    margin: 0 !important;
  }
  .bdz-ns-offices img {
    height: 120px !important;
    width: 100%;
  }
}

.bdz-ns-ceo-block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
      grid-template-columns: 1fr 2fr;
  gap: 24px;
  padding: 0 32px;
  margin: 36px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bdz-ns-ceo-block img {
  width: 100%;
}

.bdz-ns-ceo-block div {
  padding: 32px;
}

.bdz-ns-ceo-block h4 {
  color: #ACACAC;
  font-size: 36px;
  margin: 0;
  font-weight: normal;
}

.bdz-ns-ceo-block h3 {
  font-size: 72px;
  margin: 24px 0 24px 0;
}

.bdz-ns-ceo-block p {
  font-size: 24px;
}

.bdz-ns-ceo-block a {
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
}

.bdz-ns-ceo-block a img {
  width: 36px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 1024px) {
  .bdz-ns-ceo-block div {
    padding: 24px;
  }
  .bdz-ns-ceo-block h4 {
    font-size: 24px;
  }
  .bdz-ns-ceo-block h3 {
    font-size: 56px;
  }
  .bdz-ns-ceo-block p {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .bdz-ns-ceo-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .bdz-ns-ceo-block div {
    margin-top: -200px;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(60%, white), to(transparent));
    background: linear-gradient(0deg, white 60%, transparent);
  }
}

#rusagro-srm-case {
  background: -webkit-gradient(linear, left top, left bottom, from(#e1c5af11), to(#e1c5af)), url("./../img/srm-partners/rusagro-bg-1.jpg");
  background: linear-gradient(#e1c5af11, #e1c5af), url("./../img/srm-partners/rusagro-bg-1.jpg");
  background-size: cover;
}

#rusagro-srm-case img {
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
}

#beeline-srm-case {
  background: -webkit-gradient(linear, left top, left bottom, from(#e5b66411), to(#e5b564)), url("./../img/srm-partners/beeline-bg.jpg");
  background: linear-gradient(#e5b66411, #e5b564), url("./../img/srm-partners/beeline-bg.jpg");
  background-size: cover;
}

#vtb-srm-case {
  background: -webkit-gradient(linear, left top, left bottom, from(#75a1ff11), to(#3560bd)), url("./../img/srm-partners/vtb-bg.png");
  background: linear-gradient(#75a1ff11, #3560bd), url("./../img/srm-partners/vtb-bg.png");
  background-size: cover;
}

#tele2-srm-case {
  background: -webkit-gradient(linear, left top, left bottom, from(#cabdab10), to(#cabdab)), url("./../img/srm-partners/t2-bg.png");
  background: linear-gradient(#cabdab10, #cabdab), url("./../img/srm-partners/t2-bg.png");
  background-size: cover;
}

#rt-srm-case {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(white)), url("./../img/srm-partners/rt-bg.png");
  background: linear-gradient(rgba(255, 255, 255, 0), white), url("./../img/srm-partners/rt-bg.png");
  background-size: cover;
}

#pochta-srm-case {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#C9D1E3)), url("./../img/srm-partners/pochta-cover.png");
  background: linear-gradient(rgba(255, 255, 255, 0), #C9D1E3), url("./../img/srm-partners/pochta-cover.png");
  background-size: cover;
}

#drive-srm-case {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#455661)), url("./../img/srm-partners/drive-click-cover.jpg");
  background: linear-gradient(rgba(255, 255, 255, 0), #455661), url("./../img/srm-partners/drive-click-cover.jpg");
  background-size: cover;
}

#akron-srm-case {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#2B3A40)), url("./../img/srm-partners/akron-cover.webp");
  background: linear-gradient(rgba(255, 255, 255, 0), #2B3A40), url("./../img/srm-partners/akron-cover.webp");
  background-size: cover;
}

.bdz-srm-case-container-deprecated {
  margin: 24px;
  background-color: #F7F7F7;
}

.bdz-srm-case-container-deprecated[type='vtb'] {
  -webkit-clip-path: url(#clip-side-wide-2);
          clip-path: url(#clip-side-wide-2);
}

.bdz-srm-case-container-deprecated[type='t2'] {
  -webkit-clip-path: url(#clip-side-wide-1);
          clip-path: url(#clip-side-wide-1);
}

.bdz-srm-case-container-deprecated[type='rt'] {
  -webkit-clip-path: url(#clip-side-wide-2);
          clip-path: url(#clip-side-wide-2);
}

@media screen and (max-width: 900px) {
  .bdz-srm-case-container-deprecated {
    -webkit-clip-path: none !important;
            clip-path: none !important;
    border-radius: 16px;
    margin: 16px;
  }
}

.bdz-srm-case {
  background-size: cover;
  padding: 72px 24px;
  -webkit-transition: 1s;
  transition: 1s;
  background-repeat: no-repeat;
  background-position: center center;
  margin: 24px;
  border-radius: 122px;
  max-width: 1920px;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 767px) {
  .bdz-srm-case {
    margin: 16px;
  }
}

.bdz-srm-case__info {
  margin: 24px auto;
  max-width: 1200px;
}

.bdz-srm-case__info img {
  max-width: 400px;
  margin-top: -99px;
}

@media screen and (max-width: 900px) {
  .bdz-srm-case__info {
    margin: 16px auto;
  }
}

.bdz-srm-case__first-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}

.bdz-srm-case__first-line div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  gap: 16px;
  margin-top: -36px;
}

.bdz-srm-case__first-line div span {
  background-color: #ffffffd0;
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  border-radius: 16px;
  padding: 24px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}

.bdz-srm-case__first-line div span h3 {
  font-size: 24px;
  margin: 0;
  color: #1f5bff;
  margin-bottom: 8px;
}

.bdz-srm-case__first-line div span p {
  color: #31333b;
}

.bdz-srm-case__untitle {
  margin: 0 24px;
  border-radius: 16px;
  padding: 8px;
  color: white;
  text-align: center;
  margin-top: 32px;
  margin-bottom: 8px;
  font-weight: normal;
  text-shadow: 0 2px 4px #000000b5;
}

.bdz-srm-case__achievements-lg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.bdz-srm-case__achievements-lg span {
  background-color: #ffffffd0;
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  border-radius: 16px;
  padding: 24px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}

.bdz-srm-case__achievements-lg span h3 {
  font-size: 24px;
  margin: 0;
  color: #FF0067;
}

.bdz-srm-case__achievements-lg span p {
  color: #31333b;
  margin-top: 8px;
}

.bdz-srm-case__achievements {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.bdz-srm-case__achievements img {
  max-width: 400px;
}

.bdz-srm-case__achievements span {
  background-color: #F7F7F7;
  border-radius: 16px;
  padding: 24px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}

.bdz-srm-case__achievements span h3 {
  font-size: 16px;
  margin: 0;
  color: #111111;
}

.bdz-srm-case__achievements span p {
  color: #ACACAC;
  font-size: 14px;
  margin-top: 8px;
}

.bdz-srm-case__2-col-grid {
  margin-top: 36px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 3fr;
      grid-template-columns: 2fr 3fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
}

@media screen and (max-width: 767px) {
  .bdz-srm-case__2-col-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.bdz-srm-case__achievements-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px;
  border-radius: 16px;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #ffffffd0;
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
}

.bdz-srm-case__achievements-text span {
  margin-bottom: 16px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: left;
}

.bdz-srm-case__achievements-text span h3 {
  font-size: 20px;
  margin: 0;
  color: #1f5bff;
  margin-bottom: 8px;
}

.bdz-srm-case__achievements-text span p {
  font-size: 16px;
  color: #31333b;
  margin-bottom: 8px;
}

.bdz-srm-client-case {
  margin: 16px 0;
}

.bdz-srm-client-case h3 {
  font-size: 24px;
  margin: 0;
  color: #1f5bff;
  margin-bottom: 8px;
}

.bdz-srm-client-case p {
  color: #31333b;
}

.bdz-srm-client-case span {
  padding: 4px 16px;
  border-radius: 99px;
  background-color: #FF0067;
  color: white;
}

.bdz-srm-client-case li {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 8px;
}

.bdz-srm-client-case[type='reaches'] h3 {
  font-size: 42px;
  color: white;
}

.bdz-srm-client-case[type='reaches'] p {
  color: white;
}

.bdz-srm-gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
}

input {
  width: 100% !important;
  max-width: 100% !important;
}

input[type='checkbox'] {
  width: 24px !important;
  max-width: 24px !important;
  height: 24px !important;
  border-radius: 4px;
  max-height: 24px !important;
}

input[type='checkbox']::before {
  color: #FF0067 !important;
  font-size: 16px;
  font-size: 16px;
  margin-top: 4px;
  margin-left: 3px;
}

.forminator-field a {
  color: #1f5bff;
}

.bdz-lending-form p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.bdz-lending-form__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.forminator-response-message, .forminator-error, .forminator-success {
  border-radius: 4px;
  font-size: 24px;
}

.forminator-error {
  color: #FF0067;
}

.forminator-success {
  color: #437e0d;
}

.forminator-error-message {
  color: #FF0067;
  font-size: 12px;
  margin-right: 16px;
  margin-left: 8px;
}

.forminator-slider-value {
  font-size: 24px;
  margin-right: 4px;
  margin-top: 36px;
  color: #1f5bff;
}

#forminator-module-1853 a {
  font-size: 14px;
}

.forminator-button-submit {
  background-color: #1f5bff;
  color: white;
}

input[type="file"]::file-selector-button {
  font-family: 'eesty';
  font-weight: bold;
  border-radius: 99px;
  text-align: center;
  border: none;
  -webkit-transition: .5s;
  transition: .5s;
  cursor: pointer;
  background-color: #1f5bff;
  color: white;
  padding: 8px 16px;
  min-width: auto;
  margin-right: 8px;
}

input[type="file"]::file-selector-button p {
  font-size: 14px;
  font-family: 'eesti';
  white-space: nowrap;
}

input[type="file"]::file-selector-button h4 {
  font-size: 20px;
}

input[type="file"]::file-selector-button h3 {
  font-size: 32px;
}

input[type="file"]::file-selector-button:hover {
  text-decoration: underline;
  -webkit-transition: .3s;
  transition: .3s;
}

.forminator-file-upload {
  overflow: visible;
}

.forminator-input-file::file-selector-button {
  content: "Загрузить файл";
  background-color: #444;
  color: #fff;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.nav-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  max-width: 1200px;
  margin: 36px auto;
  margin-top: 64px;
  gap: 24px;
}

.nav-container__card {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3fr 1fr;
      grid-template-columns: 3fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 56px 36px;
  color: white !important;
}

.nav-container__card:nth-child(odd) {
  background-color: #FF0067;
  -webkit-clip-path: url(#clip-side-1);
          clip-path: url(#clip-side-1);
}

.nav-container__card:nth-child(even) {
  background-color: #1f5bff;
  -webkit-clip-path: url(#clip-side-2);
          clip-path: url(#clip-side-2);
}

.nav-container__card h2 {
  color: white;
  font-size: 24px;
}

.nav-container__card span {
  z-index: 999;
}

.nav-container__card img {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 225px;
  top: 0;
  right: -42px;
  -webkit-transition: .2s;
  transition: .2s;
}

.nav-container__card:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.nav-container__card:hover img {
  max-width: 240px;
  right: -50px;
  -webkit-transition: .2s;
  transition: .2s;
}

@media screen and (max-width: 1023px) {
  .nav-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 16px;
  }
  .nav-container__card {
    position: relative;
  }
  .nav-container__card:hover {
    -webkit-transform: none;
            transform: none;
  }
  .nav-container__card:hover img {
    max-width: 225px;
    right: -42px;
  }
}

@media screen and (max-width: 800px) {
  .nav-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.bdz-ns-heading {
  margin: 64px 0;
}

.bdz-ns-heading h2 {
  font-size: 56px;
  font-weight: normal;
  text-align: center;
  max-width: 1200px;
  margin: 32px auto;
}

.bdz-ns-heading h3 {
  font-size: 24px;
  font-weight: normal;
  text-align: center;
}

.bdz-ns-heading a {
  text-align: center;
  margin: 0 auto;
  display: block;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 1200px) {
  .bdz-ns-heading h2 {
    margin: 24px 16px;
    font-size: 36px;
  }
  .bdz-ns-heading h3 {
    font-size: 20px;
  }
}

@media screen and (max-width: 800px) {
  .bdz-ns-heading {
    margin: 32px 0;
  }
  .bdz-ns-heading[type='desktop-only'] {
    display: none;
  }
}

.bdz-mpns-container {
  max-width: 1920px;
  margin: 0 auto;
}

.bdz-sm-container {
  max-width: 800px;
  margin: 0 auto;
}

.bdz-ns-2-col-block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr;
      grid-template-columns: 2fr 1fr;
  gap: 24px;
  padding: 0 32px;
  margin: 36px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bdz-ns-2-col-block img {
  width: 100%;
}

.bdz-ns-2-col-block[type='revert'] {
  -ms-grid-columns: 1fr 2fr;
      grid-template-columns: 1fr 2fr;
}

.bdz-ns-2-col-block[type='compared'] {
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 1024px) {
  .bdz-ns-2-col-block {
    padding: 0 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .bdz-ns-2-col-block[type='revert'] {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.bdz-ns-3-col-block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  padding: 0 32px;
}

@media screen and (max-width: 900px) {
  .bdz-ns-3-col-block {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
    margin: 0 16px;
  }
}

.bdz-ns-4-col-block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  padding: 0 32px;
}

@media screen and (max-width: 1200px) {
  .bdz-ns-4-col-block {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 900px) {
  .bdz-ns-4-col-block {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 16px;
    margin: 0 16px;
    padding: 0;
  }
}

.bdz-sm-img-block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr;
      grid-template-columns: 2fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.bdz-sm-img-block img {
  max-width: 180px;
  max-height: 250px;
  -o-object-fit: contain;
     object-fit: contain;
}

.bdz-colored-module, #bdz-ppns-blue-module, #bdz-blue-module-alt, #bdz-srm-blue-module, #bdz-ppns-pink-module, #bdz-srm-pink-module, #bdz-srm-blue-module-alt, #bdz-ppns-white-module, #bdz-blog-blue, #bdz-blog-pink {
  padding: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.bdz-colored-module h3, #bdz-ppns-blue-module h3, #bdz-blue-module-alt h3, #bdz-srm-blue-module h3, #bdz-ppns-pink-module h3, #bdz-srm-pink-module h3, #bdz-srm-blue-module-alt h3, #bdz-ppns-white-module h3, #bdz-blog-blue h3, #bdz-blog-pink h3 {
  font-size: 32px !important;
  margin-bottom: 8px;
  margin-top: 0px;
  color: white;
  text-align: left;
}

.bdz-colored-module p, #bdz-ppns-blue-module p, #bdz-blue-module-alt p, #bdz-srm-blue-module p, #bdz-ppns-pink-module p, #bdz-srm-pink-module p, #bdz-srm-blue-module-alt p, #bdz-ppns-white-module p, #bdz-blog-blue p, #bdz-blog-pink p {
  font-size: 20px;
  color: white;
  margin: 8px 0;
}

.bdz-colored-module ul, #bdz-ppns-blue-module ul, #bdz-blue-module-alt ul, #bdz-srm-blue-module ul, #bdz-ppns-pink-module ul, #bdz-srm-pink-module ul, #bdz-srm-blue-module-alt ul, #bdz-ppns-white-module ul, #bdz-blog-blue ul, #bdz-blog-pink ul {
  margin: 0;
  padding-bottom: 16px;
  padding-left: 0;
}

.bdz-colored-module ul li, #bdz-ppns-blue-module ul li, #bdz-blue-module-alt ul li, #bdz-srm-blue-module ul li, #bdz-ppns-pink-module ul li, #bdz-srm-pink-module ul li, #bdz-srm-blue-module-alt ul li, #bdz-ppns-white-module ul li, #bdz-blog-blue ul li, #bdz-blog-pink ul li {
  font-size: 20px;
  padding-bottom: 12px;
  padding-top: 16px;
  color: white;
  line-height: 1.1;
}

.bdz-colored-module ul li a, #bdz-ppns-blue-module ul li a, #bdz-blue-module-alt ul li a, #bdz-srm-blue-module ul li a, #bdz-ppns-pink-module ul li a, #bdz-srm-pink-module ul li a, #bdz-srm-blue-module-alt ul li a, #bdz-ppns-white-module ul li a, #bdz-blog-blue ul li a, #bdz-blog-pink ul li a {
  display: inline;
  color: white;
  text-decoration: underline !important;
}

@media screen and (max-width: 1024px) {
  .bdz-colored-module, #bdz-ppns-blue-module, #bdz-blue-module-alt, #bdz-srm-blue-module, #bdz-ppns-pink-module, #bdz-srm-pink-module, #bdz-srm-blue-module-alt, #bdz-ppns-white-module, #bdz-blog-blue, #bdz-blog-pink {
    width: 100% !important;
    padding: 42px;
    -webkit-clip-path: none !important;
            clip-path: none !important;
    border-radius: 32px;
    overflow: hidden;
    width: calc(100% - 42px);
  }
}

@media screen and (max-width: 800px) {
  .bdz-colored-module, #bdz-ppns-blue-module, #bdz-blue-module-alt, #bdz-srm-blue-module, #bdz-ppns-pink-module, #bdz-srm-pink-module, #bdz-srm-blue-module-alt, #bdz-ppns-white-module, #bdz-blog-blue, #bdz-blog-pink {
    padding: 32px;
  }
}

.bdz-colored-module[type='blue-alt'], #bdz-ppns-blue-module[type='blue-alt'], #bdz-blue-module-alt[type='blue-alt'], #bdz-srm-blue-module[type='blue-alt'], #bdz-ppns-pink-module[type='blue-alt'], #bdz-srm-pink-module[type='blue-alt'], #bdz-srm-blue-module-alt[type='blue-alt'], #bdz-ppns-white-module[type='blue-alt'], #bdz-blog-blue[type='blue-alt'], #bdz-blog-pink[type='blue-alt'] {
  background-color: #1f5bff;
  -webkit-clip-path: url(#clip-side-2);
          clip-path: url(#clip-side-2);
}

@media screen and (min-width: 1600px) {
  .bdz-colored-module[type='blue-alt'], #bdz-ppns-blue-module[type='blue-alt'], #bdz-blue-module-alt[type='blue-alt'], #bdz-srm-blue-module[type='blue-alt'], #bdz-ppns-pink-module[type='blue-alt'], #bdz-srm-pink-module[type='blue-alt'], #bdz-srm-blue-module-alt[type='blue-alt'], #bdz-ppns-white-module[type='blue-alt'], #bdz-blog-blue[type='blue-alt'], #bdz-blog-pink[type='blue-alt'] {
    -webkit-clip-path: url(#clip-side-wide-2);
            clip-path: url(#clip-side-wide-2);
  }
}

.bdz-colored-module[type='blue'], #bdz-ppns-blue-module[type='blue'], #bdz-blue-module-alt[type='blue'], #bdz-srm-blue-module[type='blue'], #bdz-ppns-pink-module[type='blue'], #bdz-srm-pink-module[type='blue'], #bdz-srm-blue-module-alt[type='blue'], #bdz-ppns-white-module[type='blue'], #bdz-blog-blue[type='blue'], #bdz-blog-pink[type='blue'] {
  background-color: #1f5bff;
  -webkit-clip-path: url(#clip-side-1);
          clip-path: url(#clip-side-1);
}

@media screen and (min-width: 1600px) {
  .bdz-colored-module[type='blue'], #bdz-ppns-blue-module[type='blue'], #bdz-blue-module-alt[type='blue'], #bdz-srm-blue-module[type='blue'], #bdz-ppns-pink-module[type='blue'], #bdz-srm-pink-module[type='blue'], #bdz-srm-blue-module-alt[type='blue'], #bdz-ppns-white-module[type='blue'], #bdz-blog-blue[type='blue'], #bdz-blog-pink[type='blue'] {
    -webkit-clip-path: url(#clip-side-wide-1);
            clip-path: url(#clip-side-wide-1);
  }
}

.bdz-sm-vertical-crop {
  background-color: white;
  padding: 24px;
  background-color: #F7F7F7;
}

.bdz-sm-vertical-crop h4 {
  text-align: center;
  color: #111111;
}

.bdz-sm-vertical-crop h2 {
  color: #FF0067;
  text-align: center;
  font-size: 72px;
  text-shadow: 0px 0px 0px transparent;
  -webkit-transition: .2s;
  transition: .2s;
}

.bdz-sm-vertical-crop p {
  color: #31333b;
  text-align: center;
}

.bdz-sm-vertical-crop[type='crop-1'] {
  -webkit-clip-path: url(#v-crop-1);
          clip-path: url(#v-crop-1);
}

.bdz-sm-vertical-crop[type='crop-2'] {
  -webkit-clip-path: url(#v-crop-2);
          clip-path: url(#v-crop-2);
}

.bdz-sm-vertical-crop[type='crop-3'] {
  -webkit-clip-path: url(#v-crop-3);
          clip-path: url(#v-crop-3);
}

.bdz-sm-vertical-crop[type='crop-4'] {
  -webkit-clip-path: url(#v-crop-4);
          clip-path: url(#v-crop-4);
}

.bdz-sm-vertical-crop:hover h2 {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  text-shadow: 0px 4px 8px #ff00662d;
  -webkit-transition: .3s;
  transition: .3s;
}

.bdz-ppns-bottom-line {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3fr 1fr;
      grid-template-columns: 3fr 1fr;
  position: relative;
  padding: 16px 48px;
  border-radius: 99px;
  background-color: white;
}

.bdz-ppns-bottom-line h4 {
  font-size: 24px;
  margin: 0;
  line-height: 1.2em;
}

.bdz-ppns-bottom-line img {
  position: absolute;
  max-width: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  right: 32px;
  top: -48px;
}

@media screen and (max-width: 1024px) {
  .bdz-ppns-bottom-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .bdz-ppns-bottom-line h4 {
    text-align: center;
    font-size: 16px;
  }
  .bdz-ppns-bottom-line img {
    display: none;
  }
}

#bdz-ppns-blue-module {
  background-color: #1f5bff;
  -webkit-clip-path: url(#clip-side-1);
          clip-path: url(#clip-side-1);
}

#bdz-ppns-blue-module h4 {
  color: #1f5bff;
}

#bdz-ppns-blue-module h3 {
  color: white;
}

#bdz-ppns-blue-module p {
  color: white;
}

@media screen and (min-width: 1600px) {
  #bdz-ppns-blue-module {
    -webkit-clip-path: url(#clip-side-wide-1);
            clip-path: url(#clip-side-wide-1);
  }
}

#bdz-blue-module-alt {
  background-color: #1f5bff;
  -webkit-clip-path: url(#clip-side-2);
          clip-path: url(#clip-side-2);
}

#bdz-blue-module-alt h3 {
  color: white;
  margin-bottom: 16px;
  font-weight: bold;
}

#bdz-blue-module-alt p {
  color: white;
}

@media screen and (min-width: 1600px) {
  #bdz-blue-module-alt {
    -webkit-clip-path: url(#clip-side-wide-2);
            clip-path: url(#clip-side-wide-2);
  }
}

#bdz-srm-blue-module {
  padding: 32px 48px;
  background-color: #1f5bff;
  -webkit-clip-path: url(#clip-side-1);
          clip-path: url(#clip-side-1);
}

#bdz-srm-blue-module h4 {
  color: #1f5bff;
}

#bdz-srm-blue-module h3 {
  color: white;
}

#bdz-srm-blue-module p {
  color: white;
}

@media screen and (min-width: 1600px) {
  #bdz-srm-blue-module {
    -webkit-clip-path: url(#clip-side-wide-1);
            clip-path: url(#clip-side-wide-1);
  }
}

#bdz-ppns-pink-module {
  background-color: #FF0067;
  -webkit-clip-path: url(#clip-side-2);
          clip-path: url(#clip-side-2);
}

#bdz-ppns-pink-module h4 {
  color: #FF0067;
}

@media screen and (min-width: 1600px) {
  #bdz-ppns-pink-module {
    -webkit-clip-path: url(#clip-side-wide-2);
            clip-path: url(#clip-side-wide-2);
  }
}

#bdz-srm-pink-module {
  background-color: #FF0067;
  -webkit-clip-path: url(#clip-side-2);
          clip-path: url(#clip-side-2);
}

#bdz-srm-pink-module li {
  padding-top: 0 !important;
  padding-bottom: 8px !important;
}

#bdz-srm-pink-module h3 {
  color: #00000066;
  margin-bottom: 16px;
  font-weight: bold;
}

#bdz-srm-pink-module img {
  max-height: 42px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-item-align: baseline;
      align-self: baseline;
  margin-bottom: 16px;
}

@media screen and (min-width: 1600px) {
  #bdz-srm-pink-module {
    -webkit-clip-path: url(#clip-side-wide-2);
            clip-path: url(#clip-side-wide-2);
  }
}

#bdz-srm-blue-module-alt {
  background-color: #1f5bff;
  -webkit-clip-path: url(#clip-side-1);
          clip-path: url(#clip-side-1);
}

#bdz-srm-blue-module-alt li {
  padding-top: 0 !important;
  padding-bottom: 8px !important;
}

#bdz-srm-blue-module-alt h3 {
  color: #00000066;
  margin-bottom: 16px;
  font-weight: bold;
}

#bdz-srm-blue-module-alt img {
  max-height: 42px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-item-align: baseline;
      align-self: baseline;
  margin-bottom: 16px;
}

@media screen and (min-width: 1600px) {
  #bdz-srm-blue-module-alt {
    -webkit-clip-path: url(#clip-side-wide-1);
            clip-path: url(#clip-side-wide-1);
  }
}

#bdz-ppns-white-module h3 {
  color: #111111;
}

#bdz-ppns-white-module p {
  color: #111111;
}

#bdz-blog-blue {
  background-color: #1f5bff;
  -webkit-clip-path: url(#clip-side-wide-1);
          clip-path: url(#clip-side-wide-1);
  border: none !important;
  color: white !important;
}

#bdz-blog-blue p, #bdz-blog-blue h2, #bdz-blog-blue h3, #bdz-blog-blue h4, #bdz-blog-blue h5 {
  color: white !important;
  padding: 0;
}

#bdz-blog-pink {
  padding: 42px !important;
  background-color: #FF0067;
  -webkit-clip-path: url(#clip-side-wide-2);
          clip-path: url(#clip-side-wide-2);
  border: none !important;
}

#bdz-blog-pink p, #bdz-blog-pink h2, #bdz-blog-pink h3, #bdz-blog-pink h4, #bdz-blog-pink h5 {
  color: white !important;
  padding: 0;
}

.bdz-ppns-span, .bdz-ppns-span-false, .bdz-ppns-span-true {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin: 16px 0;
}

.bdz-ppns-span img, .bdz-ppns-span-false img, .bdz-ppns-span-true img {
  max-width: 42px;
}

.bdz-ppns-span p, .bdz-ppns-span-false p, .bdz-ppns-span-true p, .bdz-ppns-span span, .bdz-ppns-span-false span, .bdz-ppns-span-true span {
  font-size: 18px !important;
}

.bdz-ppns-2-col-statistic {
  margin-bottom: 48px;
}

.bdz-ppns-2-col-statistic h2 {
  text-align: left;
  font-weight: normal;
  margin: 0;
  color: #FF0067;
}

.bdz-ppns-2-col-statistic p {
  font-size: 20px;
  font-weight: normal;
}

@media screen and (max-width: 1024px) {
  .bdz-ppns-2-col-statistic h2 {
    font-size: 42px;
    text-align: center;
    gap: 0;
    text-align: center;
  }
  .bdz-ppns-2-col-statistic p {
    text-align: center;
  }
}

.bdz-ppns-img-block {
  max-width: 1400px;
  margin: 32px auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bdz-ppns-img-block img {
  max-width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  justify-self: center;
}

.bdz-ppns-features-block {
  max-width: 1200px;
  margin: 0 auto;
}

.bdz-feature {
  padding: 32px;
  border-radius: 32px;
  background-color: #F5F5F5;
  -webkit-animation: fadeIn .3s ease-in;
          animation: fadeIn .3s ease-in;
}

.bdz-feature h3 {
  margin: 0 !important;
}

.bdz-ns-bg-block {
  margin: 24px;
  border-radius: 42px;
  padding: 32px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
}

.bdz-ns-bg-block h2 {
  color: white;
  text-align: left;
}

.bdz-ns-bg-block h3 {
  color: #111111;
}

@media screen and (max-width: 1024px) {
  .bdz-ns-bg-block {
    -webkit-clip-path: none !important;
            clip-path: none !important;
    margin: 0 16px;
    background-image: none !important;
    margin-bottom: 32px;
    padding: 16px;
  }
  .bdz-ns-bg-block h2, .bdz-ns-bg-block h3 {
    text-align: center;
    margin-left: 0;
  }
  .bdz-ns-bg-block a {
    text-align: center;
    margin: 0 auto;
  }
  .bdz-ns-bg-block p {
    text-align: center;
  }
}

.bdz-ns-bg-block[bg='meditation'] {
  -webkit-clip-path: url(#clip-side-wide-2);
          clip-path: url(#clip-side-wide-2);
  background-image: url(./../img/gravity-fin.png);
  background-position: center right;
  background-color: #FF0067;
}

.bdz-ns-bg-block[bg='meditation'] h2, .bdz-ns-bg-block[bg='meditation'] h3 {
  color: white;
  text-align: left;
  margin-left: 42px;
}

.bdz-ns-bg-block[bg='meditation'] a {
  background-color: white;
  padding: 0 8px;
  border-radius: 4px;
  display: inline;
}

.bdz-ns-bg-block[bg='spaceblue'] {
  -webkit-clip-path: url(#clip-side-wide-2);
          clip-path: url(#clip-side-wide-2);
  background-image: url(./../img/space-blue.png);
  background-position: top -120px right;
  background-color: #1f5bff;
}

.bdz-ns-bg-block[bg='spaceblue'] h2, .bdz-ns-bg-block[bg='spaceblue'] h3 {
  color: white;
  text-align: left;
}

.bdz-ns-bg-block[bg='spaceblue'] a {
  margin: 0;
  text-align: left;
}

.bdz-ns-bg-block[bg='question'] {
  -webkit-clip-path: url(#clip-side-wide-2);
          clip-path: url(#clip-side-wide-2);
  background-image: url(./../img/question-blue.png);
  background-position: bottom right -56px;
  background-color: #1f5bff;
}

.bdz-ns-bg-block[bg='question'] h3 {
  text-align: center;
}

.bdz-ns-bg-block[bg='question'] a {
  margin: 0;
  text-align: left;
}

.bdz-ns-bg-block[bg='question-alt'] {
  -webkit-clip-path: url(#clip-side-wide-1);
          clip-path: url(#clip-side-wide-1);
  background-image: url(./../img/umbrella-pink.png);
  background-position: bottom left;
  background-color: #FF0067;
}

.bdz-ns-bg-block[bg='question-alt'] h3 {
  color: #111111;
  text-align: left;
}

.bdz-ns-bg-block[bg='question-alt'] a {
  margin: 0;
  text-align: left;
}

.bdz-ns-bg-block[bg='question-alt'] span {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 24px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.bdz-ns-bg-block[bg='solution'] {
  -webkit-clip-path: url(#clip-side-wide-1);
          clip-path: url(#clip-side-wide-1);
  background-image: url(./../img/with-coffee.png);
  background-position: bottom right;
  background-color: #1f5bff;
}

.bdz-ns-bg-block[bg='solution'] h3 {
  text-align: center;
}

.bdz-ns-bg-block[bg='solution'] a {
  margin: 0;
  text-align: left;
}

.bdz-ns-bg-block[bg='bdz-ai'] {
  -webkit-clip-path: url(#clip-side-wide-2);
          clip-path: url(#clip-side-wide-2);
  background-image: url(./../img/ai.png);
  background-position: center right;
  background-color: #FF0067;
}

.bdz-ns-bg-block[bg='bdz-ai'] h3 {
  color: white;
  text-align: left;
}

.bdz-ns-bg-block[bg='bdz-ai'] a {
  margin-top: 24px;
  text-align: left;
  color: white;
  -webkit-text-decoration: underline dotted !important;
          text-decoration: underline dotted !important;
  width: 100%;
}

.bdz-ns-bg-block[bg='bdz-ai'] div[type='fsi'] {
  padding: 24px;
  border-radius: 16px;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  max-width: 500px;
  margin-bottom: 24px;
}

.bdz-ns-bg-block[bg='bdz-ai'] img {
  width: 125px;
}

.bdz-ns-bg-block[bg='take-srm'] {
  -webkit-clip-path: url(#clip-side-wide-2);
          clip-path: url(#clip-side-wide-2);
  background-image: url(./../img/hand-frame.png);
  background-position: center right;
  background-color: #FF0067;
}

.bdz-ns-bg-block[bg='take-srm'] h2 {
  margin: 24px 0 !important;
  text-align: left !important;
}

.bdz-ns-bg-block[bg='take-srm'] h3 {
  text-align: left !important;
  color: white;
  margin-bottom: 32px;
}

.bdz-ns-bg-block[bg='take-srm'] h4 {
  font-size: 20px;
  color: white;
  margin: 0;
}

.bdz-ns-bg-block[bg='take-srm'] span {
  color: white;
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin-top: 16px;
}

.bdz-ns-bg-block[bg='take-srm'] span span {
  margin-top: 0;
}

.bdz-ns-bg-block[bg='take-srm'] p {
  color: white;
  font-size: 18px;
  text-align: left !important;
}

.bdz-ns-bg-block[bg='crosshands'] {
  -webkit-clip-path: url(#clip-side-wide-2);
          clip-path: url(#clip-side-wide-2);
  background-image: url(/wp-content/uploads/2025/09/crosshands-blue.png);
  background-position: center center;
  background-color: #1f5bff;
}

.bdz-ns-bg-block[bg='crosshands'] h2, .bdz-ns-bg-block[bg='crosshands'] h3, .bdz-ns-bg-block[bg='crosshands'] p {
  color: white;
  text-align: left;
  margin: 0;
}

.bdz-ns-bg-block[bg='crosshands'] a {
  margin: 0;
}

.bdz-ns-bg-block[bg='spacer-blue'] {
  -webkit-clip-path: url(#clip-side-1);
          clip-path: url(#clip-side-1);
  background-color: #1f5bff;
  background-image: url(./../img/space-blue.png);
}

.bdz-ns-bg-block[bg='spacer-blue'] h2, .bdz-ns-bg-block[bg='spacer-blue'] h3 {
  color: white;
  text-align: left;
  margin: 0;
  margin-bottom: 16px;
}

.bdz-ns-bg-block[bg='spacer-blue'] a {
  margin: 0;
}

.bdz-ns-bg-block[bg='lending'] {
  -webkit-clip-path: url(#clip-side-wide-1);
          clip-path: url(#clip-side-wide-1);
  background-color: #1f5bff;
  background-image: url(/wp-content/uploads/2025/10/glass-bg.png);
}

.bdz-ns-bg-block[bg='lending'] h2 {
  color: white;
  margin-bottom: 24px;
}

.bdz-ns-bg-block[bg='lending'] p {
  text-align: center;
}

.bdz-ns-bg-block[bg='lending'] h3 {
  color: #111111;
  margin: 0;
}

.bdz-ns-bg-block[bg='lending'] a {
  margin: 0;
}

.bdz-ns-cards-block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0;
}

.bdz-ns-cards-block span {
  position: relative;
  background-color: white;
  border-radius: 20px;
  padding: 24px;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #FF0067;
  -webkit-box-shadow: inset 0 0 #FF0067;
          box-shadow: inset 0 0 #FF0067;
  -webkit-transition: .5s;
  transition: .5s;
}

.bdz-ns-cards-block span[type='bubble-pink'] {
  background-color: #FF0067;
  color: white;
}

.bdz-ns-cards-block span[type='bubble-pink'] h3 {
  color: white !important;
}

.bdz-ns-cards-block span[type='bubble-pink']::after {
  content: "";
  background-color: #FF0067;
  height: 42px;
  width: 42px;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 0, 100% 0);
          clip-path: polygon(0 0, 0 100%, 100% 0, 100% 0);
  position: absolute;
  right: -41px;
}

.bdz-ns-cards-block span:hover {
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.bdz-ns-cards-block img {
  width: 100%;
  max-width: 32px;
}

@media screen and (max-width: 1024px) {
  .bdz-ns-cards-block span[type='bubble-pink']::after {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .bdz-ns-cards-block {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.bdz-ns-numbered-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.bdz-ns-numbered-block h3 {
  text-align: left !important;
  margin-bottom: 8px;
}

.bdz-ns-numbered-block section {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 9fr;
      grid-template-columns: 1fr 9fr;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bdz-ns-numbered-block span {
  font-size: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.bdz-ns-numbered-block[type='blue-white'] section {
  color: white;
}

.bdz-ns-numbered-block[type='blue-white'] span {
  background-color: white;
  color: #1f5bff;
}

.bdz-ns-numbered-block[type='blue-black'] p {
  color: black;
}

.bdz-ns-numbered-block[type='blue-black'] h3 {
  color: #1f5bff;
}

.bdz-ns-numbered-block[type='blue-black'] span {
  background-color: #1f5bff;
  color: white;
}

.bdz-ns-numbered-block[type='pink-black'] p {
  color: black;
}

.bdz-ns-numbered-block[type='pink-black'] h3 {
  color: #FF0067;
}

.bdz-ns-numbered-block[type='pink-black'] span {
  background-color: #FF0067;
  color: white;
}

.bdz-ns-ai-ills-block {
  -webkit-clip-path: url(#clip-side-wide-2);
          clip-path: url(#clip-side-wide-2);
  background-color: #F5F5F5;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 32px 1fr 32px 2fr;
      grid-template-columns: 2fr 32px 1fr 32px 2fr;
  gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 32px 24px;
}

.bdz-ns-ai-ills-block img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.bdz-ns-ai-ills-block span {
  font-size: 32px;
  color: #31333b;
}

@media screen and (max-width: 700px) {
  .bdz-ns-ai-ills-block {
    -webkit-clip-path: none;
            clip-path: none;
    background-color: #F5F5F5;
    border-radius: 42px;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    justify-items: center;
  }
  .bdz-ns-ai-ills-block span {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    width: 32px;
  }
}

.bdz-ns-ai-fsi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 24px;
  border-radius: 8px;
  text-align: center;
}

.bdz-ns-ai-fsi img {
  max-height: 72px;
}

.bdz-ns-sm-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

.bdz-ns-sm-features span {
  -webkit-clip-path: url(#clip-side-1);
          clip-path: url(#clip-side-1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #1f5bff;
  padding: 24px;
  width: 100%;
  color: white;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bdz-ns-sm-features span h4 {
  font-size: 24px;
  margin: 0;
  color: white;
}

.bdz-ns-sm-features span p {
  margin: 0;
  color: white !important;
}

@media screen and (max-width: 1200px) {
  .bdz-ns-sm-features {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 24px;
  }
  .bdz-ns-sm-features span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    width: 100%;
    -webkit-clip-path: none;
            clip-path: none;
    border-radius: 16px;
  }
}

.bdz-ns-sm-container {
  max-width: 1200px;
  margin: 0 auto;
  gap: 32px;
}

.bdz-ns-rates-container {
  display: -ms-grid;
  display: grid;
  padding: 0 32px;
  gap: 32px;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 1400px) {
  .bdz-ns-rates-container {
    -ms-grid-columns: 1fr 2fr;
        grid-template-columns: 1fr 2fr;
  }
}

@media screen and (max-width: 769px) {
  .bdz-ns-rates-container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    padding: 0 16px;
  }
}

.bdz-ns-rate-block {
  -webkit-clip-path: url(#clip-side-2);
          clip-path: url(#clip-side-2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 32px;
  background-color: #F7F7F7;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  -webkit-transition: 1s;
  transition: 1s;
}

.bdz-ns-rate-block h3 {
  font-size: 32px;
  margin: 0;
  color: #FF0067;
}

.bdz-ns-rate-block img {
  max-width: 120px;
  margin-bottom: 24px;
}

.bdz-ns-rate-block a {
  color: #ACACAC;
  font-size: 14px;
  -webkit-text-decoration: underline dotted !important;
          text-decoration: underline dotted !important;
}

.bdz-ns-rate-block a:hover {
  color: #1f5bff;
}

.bdz-ns-rate-block:hover {
  background-color: #F5F5F5;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 1024px) {
  .bdz-ns-rate-block h3 {
    font-size: 24px;
  }
  .bdz-ns-rate-block img {
    max-width: 120px;
  }
}

.bdz-ns-certification-rate {
  -webkit-clip-path: url(#clip-side-1);
          clip-path: url(#clip-side-1);
  background-color: #FF0067;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 32px 46px;
  gap: 24px;
  overflow: hidden;
}

.bdz-ns-certification-rate div {
  margin: 16px 0;
}

.bdz-ns-certification-rate h3 {
  text-align: left !important;
  color: white;
  font-size: 48px;
}

.bdz-ns-certification-rate h4 {
  color: white;
  font-size: 24px;
}

.bdz-ns-certification-rate a {
  color: white;
  margin: 0;
  margin-top: 16px;
  -webkit-text-decoration: dotted underline !important;
          text-decoration: dotted underline !important;
}

.bdz-ns-certification-rate img {
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: -64px;
  max-height: 380px;
}

@media screen and (max-width: 769px) {
  .bdz-ns-certification-rate h3 {
    font-size: 24px;
  }
}

.bdz-ns-rates-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 32px;
  border-radius: 20px;
  background-color: #cfd0ff5d;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-clip-path: url(#clip-side-1);
          clip-path: url(#clip-side-1);
}

.bdz-ns-rates-feature h3 {
  font-size: 24px;
}

.bdz-ns-rates-feature img {
  max-width: 230px;
}

.bdz-ns-feature-with-img, .bdz-ns-sm-feature-with-img {
  margin-top: 72px;
  background-color: #F5F5F5;
  border-radius: 42px;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  width: 100%;
}

.bdz-ns-feature-with-img p, .bdz-ns-sm-feature-with-img p {
  font-size: 20px;
  text-align: center;
  color: #111111;
  margin: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  line-height: 24px;
}

.bdz-ns-feature-with-img span, .bdz-ns-sm-feature-with-img span {
  color: #FF0067;
}

.bdz-ns-feature-with-img img, .bdz-ns-sm-feature-with-img img {
  margin-top: -64px;
  max-width: 160px;
}

.bdz-ns-sm-feature-with-img h3 {
  margin-bottom: 0;
}

.bdz-ns-sm-feature-with-img p {
  font-size: 14px;
}

.bdz-sm-card {
  padding: 24px;
  border-radius: 16px;
  background-color: #F7F7F7;
}

.bdz-sm-card h3 {
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .bdz-sm-card h3 {
    text-align: center;
  }
}
/*# sourceMappingURL=bdz-style.css.map */