@font-face {
  font-family: 'Gilroy';
  src: 
       url('/static/fonts/gilroy-light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: 
       url('/static/fonts/gilroy-regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: 
       url('/static/fonts/gilroy-bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: 
       url('/static/fonts/gilroy-black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
}
:root {
  --font-family-gilroy: 'Gilroy', sans-serif;
  --font-family-proxima-nova: 'Gilroy', sans-serif;
  --text-rgb-70-73-81: #464951;
  --text-rgb-51-51-51: #333;
  --text-rgb-89-88-229: #5958e5;
  --text-rgb-205-254-105: #cdfe69;
  --text-white: #fff;
  --text-rgb-25-30-40: #191e28;
}
body, h1, h2, p, ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}
body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
.header {
  background: #363636;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 40px;
  font-family: var(--font-family-gilroy);
  border-radius: 15px;
  position: relative;
}
.text-293, .text-299, .text-15 {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  font-family: var(--font-family-gilroy);
  font-weight: 700;
  text-decoration: none;
  text-transform: none;
  color: var(--text-white);
}
.text-293 {
  font-size: 18px;
  line-height: 135%;
  text-align: right;
}
.text-299 {
  font-size: 18px;
  line-height: 135%;
}
.text-15 {
  font-size: 24px;
  color: var(--text-rgb-70-73-81);
}
.yellow-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: #abf15a;
  box-shadow: 0 6px 10px rgba(0,0,0,0.4);
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  width: 50px;
  height: auto;
  margin-right: 10px;
}
.university-text,
.digital-dept {
  font-size: 20px;
  line-height: 1.2;
  font-family: var(--font-family-gilroy);
  font-weight: 700;
}
.title {
  font-size: 44px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  text-align: center;
  flex-grow: 1;
}
.title .gray-text {
  margin-left: 110px;
  font-size: 36px;
  color: #7b7b7b;
}
.year-select-container {
  text-align: center;
  margin-top: 50px;
}
.year-select {
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  font-family: var(--font-family-gilroy);
  font-weight: 700;
  font-size: 25px;
  color: var(--text-rgb-70-73-81);
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  width: 350px;
  height: 70px;
}
.text-23 {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  text-shadow: 1px -4px 2px rgba(57,190,30,0.4);
  font-family: var(--font-family-gilroy);
  font-weight: 700;
  font-size: 120px;
  line-height: 135%;
  color: var(--text-rgb-205-254-105);
  margin-top: 20px;
  margin-bottom: 0;
  text-align: center;
}
.text-437 {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  font-family: var(--font-family-gilroy);
  font-weight: 700;
  font-size: 38px;
  line-height: 135%;
  color: var(--text-rgb-70-73-81);
}
.text-22 {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  text-shadow: 0 4px 4px rgba(0,0,0,0.5);
  font-family: var(--font-family-gilroy);
  font-weight: 700;
  font-size: 90px;
  line-height: 135%;
  color: var(--text-rgb-89-88-229);
  margin-top: 100px;
  text-align: center;
}
.text-432 {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  font-family: var(--font-family-gilroy);
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  margin: 50px 25px;
  text-align: center;
}
.text-24 {
  position: absolute;
  top: 20px;
  right: 520px;
  margin-top: 120px;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  font-family: var(--font-family-gilroy);
  font-weight: 300;
  font-size: 42px;
  line-height: 135%;
  color: var(--text-rgb-70-73-81);
}
.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  margin-top: 120px;
}
.stat-card {
  background: #fff;
  border-radius: 25px;
  padding: 40px;
  width: 500px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  transition: transform 0.3s;
}
.stat-card:hover {
  transform: scale(1.05);
}
.stat-card img {
  width: 100px;
  height: auto;
  margin-right: 10px;
}
.stat-card .text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.stat-card .title {
  font-family: var(--font-family-gilroy);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-rgb-70-73-81);
  margin-bottom: 5px;
  text-shadow: none;
}
.stat-card .value {
  font-family: var(--font-family-gilroy);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-rgb-89-88-229);
}
@media (max-width: 768px) {
  .stat-card {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .stat-card img {
    margin-bottom: 10px;
    margin-right: 0;
  }
}
.panel-container {
  width: 98%;
  max-width: 98%;
  margin: 0 auto;
  margin-top: 50px;
}
.panel-header {
  background: #fff;
  color: #333;
  width: 100%;
  height: 130px;
  padding: 15px;
  border: none;
  text-align: left;
  cursor: pointer;
  outline: none;
  font-size: 16px;
  border-radius: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s, border-radius 0.3s;
}
.panel-header:hover {
  background: #e0e0e0;
}
.panel-header .arrow {
  font-size: 1.2em;
  transition: transform 0.3s;
  display: inline-block;
}
.panel-content {
  background: #fff;
  padding: 20px 15px;
  border: none;
  margin-top: 0;
  border-radius: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s, opacity 0.3s 0.1s, padding 0.3s;
  opacity: 0;
  visibility: hidden;
}
.panel-header.active + .panel-content {
  padding: 15px;
  border-bottom: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-radius: 0 0 25px 25px;
  opacity: 1;
  visibility: visible;
  max-height: 1000px;
  margin-bottom: 20px;
}
.panel-header.active {
  background: #fff;
  border-radius: 25px 25px 0 0;
  border: 1px solid #ddd;
  border-bottom: none;
}
.panel-header.active .arrow {
  transform: rotate(180deg);
}
.white-section {
  position: relative;
  background: #f4f4f4;
  padding: 20px 20px 950px 20px;
  height: auto;
  background-image: url('/static/images/3-7.svg'), url('/static/images/2-8.svg');
  background-size: 45%, 140%;
  background-position: 900px -100px, -1200px -130px;
  background-repeat: no-repeat;
}
.text-287 {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  font-family: var(--font-family-gilroy);
  font-weight: 700;
  font-size: 14px;
  line-height: 135%;
  color: var(--text-white);
}
.icon-buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.side-by-side {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.side-by-side .stat-section2 {
  flex: 0 1 48%;
  max-width: 48%;
  box-sizing: border-box;
}

.chart-tooltip-bar {
  background: rgba(255, 255, 255, 0.8); 
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  font-family: var(--font-family-gilroy);
  font-size: 16px;
  transition: opacity 0.2s ease;
  white-space: normal;
  z-index: 100;
}

.chart-tooltip-bar .tooltip-content-bar {
  display: flex;
  align-items: center;
  gap: 4px;
}

.chart-tooltip-bar .tooltip-label {
  color: #333;
  font-weight: 500;
}

.chart-tooltip-bar .tooltip-value-bar {
  font-weight: bold;
}


.social-button {
  background: #000;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 20px;
  transition: background 0.3s;
  text-decoration: none;
  position: relative;
  top: -120px;
  left: 800px;
}
.social-button img {
  width: 50px;
  height: 50px;
  transition: opacity 0.3s;
}
.social-button:hover img {
  filter: brightness(0) saturate(100%) invert(45%) sepia(100%) saturate(3000%) hue-rotate(90deg) brightness(95%) contrast(110%);
}
.text-gray {
  color: #a09e9e;
}
.panel-header2 {
  width: 100%;
  background: #fff;
  border: none;
  padding: 35px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 25px;
  transition: all 0.3s;
}
.panel-header2:hover {
  background: #e1e5eb;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.panel-content2 {
  max-height: 0;
  overflow: hidden;
  margin-top: 10px;
  opacity: 0;
  transition: max-height 0.3s, opacity 0.3s;
}
.panel-content2.active {
  max-height: 5000px;
  opacity: 1;
}
.arrow2 {
  font-size: 16px;
  transition: transform 0.3s;
}
.arrow2.active {
  transform: rotate(180deg);
}
.stats-container2 {
  font-family: var(--font-family-gilroy);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.stat-box2 {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.stat-box2:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.value-badge2 {
  display: inline-block;
  background: #cdfe69;
  border-radius: 20px;
  padding: 8px 16px;
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 18px;
  min-width: 60px;
  box-sizing: border-box;
}
.text-263 {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  font-family: var(--font-family-gilroy);
  font-weight: 700;
  font-size: 30px;
  line-height: 135%;
  color: #4747da;
  margin-top: 150px;
}
.stat-title2 {
  font-weight: bold;
  margin: 10px 0 5px;
  color: #333;
  font-size: 16px;
}
.stat-description2 {
  color: #666;
  font-size: 14px;
  line-height: 1.4;
}
.additional-stats2 {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.stat-section2 {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s;
  display: flex;
  font-family: var(--font-family-gilroy);
  flex: 1 1 24%;
  flex-direction: column;
  align-items: center;
  min-width: 220px;
  box-sizing: border-box;
}
.stat-section2:hover {
  transform: translateY(-3px);
}
.stat-section2 h3 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 25px;
  color: #2c3e50;
  font-size: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}
.stat-data2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.data-item2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(245,247,250,0.5);
  padding: 8px 16px;
  border-radius: 12px;
  transition: all 0.2s;
  box-shadow: 0 0 8px rgba(0,0,0,0.03);
  cursor: pointer;
  border-left: 4px solid transparent;
}
.data-item2:hover {
  background: rgba(225,229,235,0.7);
}
.data-item2.active {
  background: rgba(225,229,235,0.9);
  box-shadow: 0 0 0 2px rgba(66,133,244,0.3);
}
.data-label2 {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: #222;
}
.data-value {
  font-weight: bold;
  margin-left: 15px;
  font-size: 15px;
  min-width: 50px;
  text-align: right;
  color: #333;
}
.histogram-container {
  display: flex;
  font-family: var(--font-family-gilroy);
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
}
.histogram {
  position: relative;
  width: calc(45% - 100px);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  flex: 1 1 40%;
  min-width: 300px;
  max-width: 600px;
  min-height: 350px;
  border-bottom: none;
}
.histogram-axes {
  position: relative;
  height: 200px;
  margin-bottom: 30px;
  display: flex;
}
.y-axis {
  position: relative;
  width: 40px;
  border-right: 1px solid #ccc;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
}
.x-axis {
  position: absolute;
  left: 40px;
  right: 0;
  bottom: -30px;
  height: 30px;
  border-top: 1px solid #ccc;
}
.y-tick {
  position: relative;
  width: 100%;
  text-align: right;
  padding-right: 5px;
  font-size: 12px;
  color: #666;
  transform: translateY(50%);
}
.y-tick::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  width: 5px;
  height: 1px;
  background: #ccc;
}
.y-gridline {
  position: absolute;
  left: 40px;
  right: 0;
  height: 1px;
  background: rgba(0,0,0,0.1);
  z-index: 0;
}
.bars-container {
  flex: 1;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  height: 100%;
  position: relative;
  z-index: 1;
  padding-left: 10px;
}
.bar2-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30%;
  position: relative;
}
.bar2 {
  width: 60%;
  background: #44bf48;
  border-radius: 5px 5px 0 0;
  transition: height 0.5s cubic-bezier(0.68,-0.55,0.265,1.55);
  will-change: height;
  position: relative;
}
.value-indicator {
  position: absolute;
  top: -25px;
  left: 50%;
  width: 1px;
  height: 20px;
  background: rgba(0,0,0,0.2);
  transform: translateX(-50%);
  display: none;
}
.bar2:hover .value-indicator {
  display: block;
}
.bar2-value {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.9);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  display: none;
}
.bar2:hover .bar2-value {
  display: block;
}
.bar2-label {
  margin-top: 10px;
  font-size: 14px;
}
.histogram-title {
  text-align: center;
  margin-bottom: 20px;
  color: #2c3e50;
}
.time-series-container {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}
.time-series-chart {
  min-height: 10px;
}
.chart-wrapper {
  width: 100%;
  height: 200px !important;
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.chart-wrapper canvas {
  width: 100% !important;
  height: 100% !important;
}
.stage-charts-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-top: 20px;
}
.stage-chart {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}
.stage-chart:hover {
  transform: translateY(-3px);
}
.stage-chart-title {
  text-align: center;
  margin: -15px 0 20px;
}
canvas {
  max-width: 400px;
  max-height: 400px;
  width: 100% !important;
  height: auto !important;
}
.stage-badge {
  display: inline-block;
  background: #cdfe69;
  border-radius: 20px;
  padding: 8px 16px;
  font-weight: bold;
  font-size: 16px;
  min-width: 80px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.time-impact-container {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.direction-selector {
  margin-bottom: 30px;
  text-align: center;
}
.direction-select {
  padding: 12px 24px;
  font-family: var(--font-family-gilroy);
  border-radius: 25px;
  border: 2px solid #e0e0e0;
  background: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}
.direction-select:hover {
  border-color: #4caf50;
  box-shadow: 0 2px 8px rgba(76,175,80,0.2);
}
.impact-charts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-top: 20px;
}
.chart-container {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 20px;
}
.chart-container canvas {
  width: 100% !important;
  height: 100% !important;
}
.donut-chart {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(var(--segment-colors));
  transition: transform 0.3s;
  cursor: pointer;
}
.chart-container:hover .donut-chart {
  transform: scale(1.05);
}
.chart-tooltip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.95);
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  text-align: center;
  min-width: 140px;
  z-index: 10;
}
.chart-container:hover .chart-tooltip {
  opacity: 1;
}
.tooltip-title {
  font-weight: bold;
  margin-bottom: 5px;
  color: #2c3e50;
  font-size: 14px;
}
.tooltip-value {
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    text-align: center;
  }
  .logo, .digital-dept {
    margin-bottom: 10px;
  }
  .stats-container2 {
    grid-template-columns: 1fr;
  }
  .additional-stats2 {
    grid-template-columns: 1fr;
  }
  .histogram {
    width: 100%;
    padding: 20px 30px 40px 50px;
  }
  .stage-charts-container {
    grid-template-columns: 1fr;
  }
  .stat-card {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .stat-card img {
    margin-bottom: 10px;
    margin-right: 0;
  }
}
@media (max-width: 480px) {
  .stat-section2 {
    padding: 18px;
  }
  .histogram {
    padding: 20px 20px 40px 40px;
  }
}
.purple-boxx {
  background-color: #5958e5;
  height: 400px;
  width: 100%;
  border-radius: 15px 0 0 0;
  position: absolute;
  bottom: 540px;
  z-index: 40;
  background-image:
    url('/static/images/32237069_sl_072622_51930_13.svg'),
    url('/static/images/32237069_sl_072622_51930_13.svg'),
    url('/static/images/32237069_sl_072622_51930_13.svg');
  background-size: auto 85%, auto 85%, auto 85%;
  background-position: center bottom, left bottom, right bottom;
  background-repeat: no-repeat;
}
.hole-group {
  position: absolute;
  top: 80px;
  display: flex;
  justify-content: space-between;
  width: 120px;
}
.hole-group.left-holes {
  left: 50px;
}
.hole-group.middle-holes {
  left: 50%;
  transform: translateX(-50%);
}
.hole-group.right-holes {
  right: 50px;
}
.hole {
  width: 35px;
  height: 35px;
  border-radius: 60%;
  background: #5958e5;
}
.svg-image {
  position: absolute;
  width: auto;
  height: 80px;
  cursor: pointer;
}
#image1 {
  height: 100px;
  top: 170px;
  left: 1120px;
}
#image2 {
  height: 60px;
  top: 275px;
  left: 1090px;
}
#image3 {
  height: 60px;
  top: 290px;
  left: 1040px;
}
.learn-more-button {
  background: #b2ff59;
  color: #3f51b5;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 30px;
  display: inline-flex;
  align-items: center;
  transition: background 0.3s;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-family-gilroy);
  font-weight: 800;
}
.learn-more-button:hover {
  background: #9ccc3f;
}
.histogram-title, .stat-section2 h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: none;
  box-shadow: none;
  padding-bottom: 0;
}
.arrow-icon {
  margin-top: 6px;
  margin-left: 13px;
  width: 30px;
  height: auto;
}
.overall-wrapper {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  padding: 35px 30px 40px;
  margin-top: 25px;
  margin-bottom: 10px;
}
.overall-wrapper .direction-selector {
  text-align: center;
  margin-bottom: 35px;
}
.overall-wrapper .additional-stats2 {
  margin: 0;
  gap: 22px;
}
.team-listing {
  font-family: var(--font-family-gilroy);
  position: relative;
  margin: 300px 0;
  transform: translateX(-550px);
}
.team-listing .project-manager {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  font-family: var(--font-family-gilroy);
  font-weight: 700;
  font-size: 14px;
  line-height: 135%;
  color: var(--text-white);
  text-align: center;
  margin-bottom: 15px;
}
.team-grid {
  display: flex;
  width: 100%;
}
.team-grid .team-column {
  margin-left: 15px;
  width: 50%;
  text-align: left;
}
.team-grid p {
  margin: 5px 0;
  font-size: 14px;
}
.text_ck {
  width: 100px;
  height: 50px;
  flex-grow: 0;
  flex-shrink: 1;
  font-family: var(--font-family-gilroy);
  font-weight: 700;
  font-size: 24px;
  line-height: 135%;
  color: #fff;
  transition: color 0.3s;
  white-space: nowrap;
  text-align: right;
  transform: translate(500px, 50px);
}
.text_ck:hover {
  color: #4caf50;
}
.down_logo {
  display: inline-block;
  margin-right: 20px;
  margin-top: 40px;
  margin-left: 40px;
}
.down_logo img {
  width: 70px;
  height: auto;
}
.down_logo.small {
  width: 100px;
}
.down_logo.bordered {
  border: 2px solid blue;
  border-radius: 10px;
}
.down_logo img.grayscale {
  filter: grayscale(100%);
}
.purple-box {
  background: #6a0ead;
  height: 100px;
  width: 95%;
  border-radius: 15px 15px 0 0;
  position: absolute;
  bottom: 500px;
  left: 2.5%;
  z-index: 20;
}
.black-box {
  margin-top: 10px;
  background: #262626;
  height: 500px;
  width: 100%;
  border-radius: 0 15px 0 0;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: flex;
  padding: 20px;
}
.left-text {
  text-align: left;
}
.right-text {
  text-align: right;
}