:root {
  --vd-clr-dark: #1a1a1a;
  --vd-clr-darker: #111111;
  --vd-clr-green: #5eb555;
  --vd-clr-green-shadow: #42823a;
  --vd-clr-orange: #e59a4c;
  --vd-clr-text-main: #333333;
  --vd-clr-text-muted: #888888;
  --vd-clr-white: #ffffff;
  --vd-clr-border: #e0e0e0;
  --vd-font-base: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

body {
  font-family: var(--vd-font-base);
  background-color: var(--vd-clr-white);
  color: var(--vd-clr-text-main);
}

.ad-container {
  margin: 16px auto;
}

.ad-container[data-ad-index="0"] {
  margin-top: 0;
}

.gptslot {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  min-height: 250px;
  max-width: 300px;
  margin: 0 auto;
}

.ad-label {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: start;
     -moz-box-align: start;
          align-items: start;
  position: relative;
  padding: 5px 0px 2px 0px;
  font-size: 14px;
  color: rgb(73, 73, 73);
}

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

.vd-top-plate {
  background-color: var(--vd-clr-dark);
  height: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  padding: 0 40px;
}

.vd-top-group-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  gap: 30px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
          flex: 1;
}

.vd-brand-cube {
  background-color: var(--vd-clr-green);
  color: var(--vd-clr-white);
  padding: 8px 18px;
  font-size: 22px;
  font-weight: bold;
  border-radius: 4px;
  box-shadow: 0 4px 0 var(--vd-clr-green-shadow);
  cursor: pointer;
}

.vd-menu-trigger {
  background: transparent;
  border: 1px solid #444;
  color: var(--vd-clr-white);
  font-size: 24px;
  padding: 4px 10px;
  cursor: pointer;
  border-radius: 4px;
}

.vd-nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 30px;
}

.vd-nav-node {
  color: var(--vd-clr-white);
  font-size: 15px;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.vd-nav-node:hover {
  color: var(--vd-clr-green);
}

.vd-search-zone {
  border: 1px solid #444;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  padding: 5px 15px;
  border-radius: 20px;
}

.vd-search-field {
  background: transparent;
  border: none;
  color: var(--vd-clr-white);
  outline: none;
}

.vd-sidebar-panel {
  position: fixed;
  top: 0;
  left: -300px;
  width: 250px;
  height: 100vh;
  background: var(--vd-clr-darker);
  z-index: 1000;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
  padding: 20px 0;
  color: var(--vd-clr-white);
}

.vd-sidebar-panel.active {
  left: 0;
}

.vd-sidebar-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.vd-sidebar-mask.active {
  display: block;
}

.vd-sidebar-head {
  padding: 0 20px 20px;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #333;
}

.vd-sidebar-node {
  padding: 15px 20px;
  cursor: pointer;
  border-bottom: 1px solid #222;
}

.vd-sidebar-node:hover {
  color: var(--vd-clr-green);
  background: #222;
}

.vd-core-wrapper {
  max-width: 1400px;
  margin: 30px auto;
  padding: 0 20px;
}

.vd-section-head {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--vd-clr-text-main);
}

.vd-matrix-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-bottom: 50px;
}

.vd-grid-tertiary {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.vd-grid-binary {
  margin-bottom: 60px;
}

.vd-binary-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.vd-stack-flow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
}

.vd-border-decoration {
  border: 1px solid var(--vd-clr-border);
  padding: 10px;
  border-radius: 10px;
}

.vd-action-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  margin-top: 20px;
}

.vd-btn-outline {
  background: transparent;
  border: 2px solid var(--vd-clr-green);
  color: var(--vd-clr-green);
  padding: 8px 30px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 2px 0 var(--vd-clr-green-shadow);
}

.vd-btn-outline:hover {
  background: var(--vd-clr-green);
  color: var(--vd-clr-white);
}

.vd-btn-solid {
  background: var(--vd-clr-green);
  color: var(--vd-clr-white);
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  width: 100%;
  white-space: nowrap;
}

.vd-card-overlay {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  cursor: pointer;
  overflow: hidden;
  background-color: gainsboro;
}

.vd-card-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vd-card-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.9)), to(rgba(0, 0, 0, 0)));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 30px 10px 10px;
  color: var(--vd-clr-white);
}

.vd-badge-tag {
  background: var(--vd-clr-green);
  color: var(--vd-clr-white);
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 5px;
}

.vd-card-overlay-content .vd-txt-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 38px;
}

.vd-card-overlay-content .vd-txt-sub {
  font-size: 11px;
  color: #ccc;
}

.vd-card-split-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 15px;
  cursor: pointer;
  padding: 15px 0;
  border-bottom: 1px solid var(--vd-clr-border);
}

.vd-thumb-wrap {
  background-color: gainsboro;
}

.vd-card-split-row .vd-thumb-wrap {
  width: 100px;
  aspect-ratio: 16/9;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}

.vd-card-split-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vd-card-split-row .vd-info-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
          flex: 1;
}

.vd-card-split-row .vd-txt-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 5px;
  max-height: 37px;
  overflow: hidden;
}

.vd-card-split-row .vd-txt-sub {
  font-size: 11px;
  color: var(--vd-clr-text-muted);
}

.vd-card-large-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 20px;
  cursor: pointer;
  padding: 20px 0;
  border-bottom: 1px solid var(--vd-clr-border);
}

.vd-card-large-row .vd-thumb-wrap {
  width: 220px;
  aspect-ratio: 16/9;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}

.vd-card-large-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vd-card-large-row .vd-badge-tag {
  background: var(--vd-clr-orange);
}

.vd-card-large-row .vd-txt-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  max-height: 48px;
  overflow: hidden;
}

.vd-card-large-row .vd-txt-sub {
  font-size: 12px;
  color: var(--vd-clr-text-muted);
  line-height: 1.6;
}

.vd-card-action {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  cursor: pointer;
  padding: 15px 0;
  border-bottom: 1px solid var(--vd-clr-border);
}

.vd-card-action .vd-thumb-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 10px;
  overflow: hidden;
}

.vd-card-action img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vd-card-action .vd-txt-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  max-height: 38px;
  overflow: hidden;
}

.vd-card-action .vd-txt-sub {
  font-size: 12px;
  color: var(--vd-clr-text-muted);
  margin-bottom: 10px;
}

.vd-bottom-plate {
  background-color: var(--vd-clr-dark);
  color: var(--vd-clr-white);
  padding: 50px 0 20px;
}

.vd-bottom-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-bottom: 1px solid #333;
  padding-bottom: 40px;
}

.vd-cluster-head {
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.vd-cluster-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  gap: 10px;
}

.vd-cluster-node {
  color: #717070;
  font-size: 13px;
  cursor: pointer;
}

.vd-cluster-node:hover {
  color: var(--vd-clr-green);
}

.vd-bottom-legal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  gap: 30px;
  margin: 20px auto;
  font-size: 13px;
  color: #888;
}

.vd-bottom-brand {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: var(--vd-clr-white);
  letter-spacing: 2px;
}

@media (max-width: 900px) {
  .vd-top-plate {
    padding: 0 20px;
  }

  .vd-nav-links {
    display: none;
  }

  .vd-matrix-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .vd-grid-tertiary {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .vd-binary-content {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  .vd-bottom-wrapper {
    grid-template-columns: repeat(2, 1fr);
    padding-left: 20px;
    padding-right: 20px;
  }

  .vd-card-large-row .vd-thumb-wrap {
    width: 180px;
  }
}

@media (max-width: 480px) {
  .vd-top-plate {
    height: 60px;
    padding: 0 15px;
  }

  .vd-brand-cube {
    font-size: 18px;
    padding: 6px 12px;
  }

  .vd-search-zone {
    width: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
            flex: 1;
    margin: 0 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    padding: 5px 12px;
  }

  .vd-search-field {
    display: block !important;
    width: 100%;
    font-size: 13px;
  }

  .vd-brand-cube {
    font-size: 16px;
    padding: 5px 10px;
    -webkit-flex-shrink: 0;
            flex-shrink: 0;
  }

  .vd-menu-trigger {
    -webkit-flex-shrink: 0;
            flex-shrink: 0;
  }

  .vd-core-wrapper {
    margin: 15px auto;
  }

  .vd-matrix-gallery {
    grid-template-columns: 1fr;
  }

  .vd-card-overlay {
    aspect-ratio: auto;
    height: 300px;
  }

  .vd-thumb-wrap {
    aspect-ratio: auto !important;
    height: 200px !important;
    width: 100% !important;
  }

  .vd-card-split-row,
  .vd-card-large-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
  }

  .vd-card-large-row .vd-txt-title {
    font-size: 16px;
    margin-top: 10px;
    height: 42px;
  }

  .vd-card-split-row .vd-txt-title,
  .vd-card-action .vd-txt-title {
    height: 37px;
  }

  .vd-card-large-row .vd-txt-title {
    height: 48px;
  }

  .vd-bottom-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .vd-bottom-legal {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
@media (max-width: 900px) {}

@media (max-width: 480px) {

    .vd-matrix-gallery .vd-card-overlay:nth-child(n+4),
    .vd-grid-tertiary .vd-col-wide,
    .vd-grid-tertiary .vd-border-decoration,
    .vd-grid-tertiary .vd-col-narrow .vd-card-split-row:nth-child(n+4),
    .vd-binary-content .vd-card-large-row:nth-child(n+4) {
        display: none;
    }
}
