.insights-section {
  max-width: 1807px;
  margin: 0 auto;
  padding: 17px 21.5px 100px;

}


.insights-card {

  height: 876px;
  margin: 0 auto;

  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #d9d9d9;
}

.insights-card::before {

  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/insights.jpg") center / cover no-repeat;
}

.insights-card::after {

  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.insights-content {
  position: absolute;
  left: 88px;

  bottom: 86px;

  z-index: 2;
  color: #fff;
  max-width: 980px;
}

.insights-title {
  font-size: 56px;
  line-height: 64px;
  font-weight: 400;
  margin: 0 0 24px 0;
}

.insights-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 13px 28px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  line-height: 22px;
  background: transparent;
  transition: all 0.5s ease;
}


.insights-btn svg{  
    transition: all 0.5s ease;
}
.insights-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.insights-btn:hover svg{
    transform: translateX(4px);
}

.insights-btn__icon {
  width: 18px;
  height: 18px;
  display: block;
}





@media (max-width: 768px) {
  .insights-content {
    left: 20px;
    bottom: 24px;
    max-width: 88%;
  }

  .insights-title {
    font-size: 32px;
    line-height: 39px;
  }

  .insights-btn {
    gap: 0;
    width: 100%;
    padding: 13px 34.5px;
    justify-content: space-between;
  }

  .insights-btn__icon {
    width: 16px;
    height: 16px;
  }
}

@media (min-width: 800px) and (max-width: 1600px) {
  .insights-section {
    max-width: 1446px;
    padding: 14px 17px 80px;
  }

  .insights-card {
    height: 700px;
    border-radius: 16px;
  }

  .insights-content {
    left: 70px;
    bottom: 69px;
    max-width: 784px;
  }

  .insights-title {
    font-size: 45px;
    line-height: 54px;
    margin-bottom: 19px;
  }

  .insights-btn {
    gap: 14px;
    padding: 10px 22px;
    border-radius: 16px;
    font-size: 16px;
    line-height: 20px;
  }

  .insights-btn__icon {
    width: 14px;
    height: 14px;
  }
}