.dashboard {
  overflow: hidden;
  position: relative;
}
.dashboard__content {
  padding: 80px 0;
  display: grid;
  grid-template-columns: 54.7% 1fr;
  gap: 32px;
}
.dashboard__content-img {
  position: relative;
  min-width: 0 !important;
  max-width: 100% !important;
}
.dashboard__content-img img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none;
  height: 100%;
}
.dashboard__content-text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  min-height: 560px;
  min-width: 0 !important;
  max-width: 100% !important;
}
.dashboard__content-text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #404040;
}
.dashboard__content-text p:not(:last-child) {
  margin-bottom: 24px;
}
.dashboard__title {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #1c1c20;
  margin-bottom: 24px;
}
.dashboard__trusted {
  border-top: 1px solid #e5e5e5;
  padding-top: 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}
.dashboard__trusted-list {
  display: flex;
  align-items: center;
  margin-right: 24px;
  flex-shrink: 0;
}
.dashboard__trusted-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
}
.dashboard__trusted-img:not(:first-child) {
  margin-left: -12px;
}
.dashboard__trusted-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dashboard__trusted-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #7d7d82;
  text-align: left;
}
.dashboard__btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  color: #fff;
  background-color: #3b82f6;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  transition: all 0.3s ease-in-out;
  width: 250px;
  max-width: 100%;
}
.dashboard__btn:hover, .dashboard__btn:active {
  background-color: #3d209f;
}

@media (max-width: 1200px) {
  .dashboard__content {
    grid-template-columns: 50% 1fr;
  }
}
@media (max-width: 992px) {
  .dashboard__content {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .dashboard__content-text {
    min-height: 0;
  }
  .dashboard__content-img img {
    position: relative;
    max-height: 560px;
  }
}
@media (max-width: 767px) {
  .dashboard__title {
    font-size: 32px;
    line-height: 40px;
  }
  .dashboard__content-text p {
    font-size: 14px;
    line-height: 20px;
  }
  .dashboard__trusted-text {
    font-size: 12px;
    line-height: 20px;
  }
}
@media (max-width: 640px) {
  .dashboard__content {
    text-align: center;
  }
  .dashboard__content-img img {
    position: relative;
    max-height: 280px;
    margin-left: auto;
    margin-right: auto;
    width: auto;
  }
  .dashboard__btn {
    width: 100%;
  }
}