.title {
  font-weight: 700;
  font-size: 62px;
  line-height: 64px;  
  text-align: center;
  color: var(--navy);
  padding-bottom: 30px;
}

.subtitle {
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  color: var(--navy);
  padding-bottom: 46px;
  max-width: 660px;
}

.ind {
  background-color: var(--light_grey);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  margin-bottom: 96px;
  max-width: 856px;
  cursor: pointer;
}
.ind:nth-child(even) {
  flex-direction: row-reverse;
}
.ind-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding: 38px;
}
.icon {
  height: 46px;
  width: 46px;
  object-fit: contain;
  margin-bottom: 16px;
}
.ind-title {
  font-weight: 600;
  font-size: 42px;
  line-height: 46px;
  color: var(--navy);
  padding-bottom: 18px;
  transition: 400ms linear;
}
.ind-title:hover {
  color: var(--muted_blue);
}
.ind-desc {
  font-size: 19px;
  line-height: 25px;
  color: var(--navy);
  padding-bottom: 26px;
}
.learn-more-btn {
  font-size: 19px;
  color: var(--mid_blue);
  border: none;
  display: flex;
  align-items: center;
  background: none;
  padding-left: 0;
  transition: 400ms linear;
}
.learn-more-btn img {
  transition: 400ms cubic-bezier(0,0,0,1);
}
.long-arrow {
  margin-left: 10px;
}
.ind-right {
  width: 50%;
  overflow: hidden;
}
.ind-img {
  width: 100%;
  object-fit: cover;
  transition: 400ms cubic-bezier(0,0,0,1);
}
.ind:hover {
  background-color: var(--fade_grey);
}
.ind:hover .ind-title {
  color: var(--muted_blue);
}
.ind:hover .learn-more-btn {
  color: var(--navy);
}
.ind:hover .long-arrow {
  transform: translateX(50%);
}
.ind:hover .ind-img {
  transform: scale(1.1);
}

@media only screen and (max-width: 992px) {
  .title {
    font-size: 45px;
    line-height: 48px;
    padding-bottom: 36px;
  }
  .subtitle {
    font-size: 20px;
    line-height: 24px;
  }
  .ind {
    flex-direction: column;
    margin-bottom: 50px;
  }
  .ind:nth-child(even) {
    flex-direction: column;
  }
  .ind-left {
    width: 100%;
    text-align: center;
    align-items: center;
  }
  .ind-right {
    width: 100%;
    text-align: center;
  }
  .ind-title {
    font-size: 36px;
    line-height: 40px;
    max-width: auto;
    padding-bottom: 12px;
  }
  .ind-desc {
    font-size: 19px;
    line-height: 25px;
  }
}

@media only screen and (max-width: 768px) {
  .ind {
    margin-bottom: 25px;
  }
  .title {
    font-size: 32px;
    line-height: 36px;
    padding-bottom: 30px;
  }
  .ind-title {
    font-size: 28px;
    line-height: 32px;
  }
}