.home-banner-profile {
  width: 200px;
  height: 200px;
  box-shadow: #ff4a1385 0px 0px 20px;
}
@media (min-width: 768px) {
  .home-banner-profile {
    width: 300px;
    height: 300px;
  }
}

.home-top-banner {
  margin-bottom: 100px !important;
}

.typing {
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 1.4px;
  font-size: 24px;
  border-right: 2px solid black;
  font-size: 2rem;
  animation: typing 4s steps(50, end) forwards, blink 0.7s step-end;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: #76ffe7;
  }
}

.my-team-card {
  border: 1px solid #8a8a8a;
  background-color: #252525;
  box-shadow: rgba(255, 255, 255, 0.35) 0px 0px 10px;
  border-radius: 10px;
  padding: 15px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.my-team-card:hover {
  transform: translateY(-8px);
}
.my-team-card:hover::before {
  opacity: 1;
  transform: scale(1.02);
}

.my-team-card-title {
  font-size: 1.4rem;
  font-weight: 500;
  color: #b9b9b9;
  text-shadow: 0px 0px 5px #741b00;
}

.my-team-card-body {
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.45;
  margin-top: 8px;
  flex-grow: 1;
  text-align: justify;
  display: flex;
  align-items: center;
}

.my-team-btn-business {
  outline: none;
  border: none;
  border-radius: 4px;
  background-color: #ff9d80;
  color: black;
  font-weight: 500;
}

.home-big-desc-box {
  background-color: #252525;
  padding: 30px;
  border-radius: 20px;
  box-shadow: rgba(255, 255, 255, 0.35) 0px 0px 10px;
}

.home-big-desc-title {
  font-weight: 700;
  font-size: 28px;
}

.chart-container {
  position: relative;
  width: min(90vw, 500px);
  height: min(90vw, 500px);
  margin-top: -30px;
}

canvas {
  filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.445));
}

.home-about-title {
  font-weight: 700;
  font-size: 30px;
}

.home-about-quote-box {
  background-color: #632c0077;
  padding: 30px;
  border-radius: 20px;
  box-shadow: rgba(255, 255, 255, 0.35) 0px 0px 10px;
  font-style: italic;
  font-weight: 500;
  font-size: 1.1rem;
  color: #fff;
}

.home-hr-border {
  border: 1px solid #444;
}

/* --- */

.home-works-box {
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 40px;
  padding-left: 30px;
  padding-right: 30px;
}

.home-btn-experience-works-more-fidea {
  background-color: #ff6105;
  color: black;
  font-weight: 600;
  margin-top: 15px;
}
.home-btn-experience-works-more-fidea:hover {
  background-color: #e85004;
  color: black;
}

.home-btn-blog-more {
  background-color: #ffa154;
  color: rgb(0, 0, 0);
  font-weight: 300;
  transition: background-color 0.3s ease;
}
.home-btn-blog-more:hover {
  background-color: #ff8c1a;
  color: rgb(0, 0, 0);
}
