.outside {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  padding-top: 100px;
  height: fit-content;
}
.row-left {
  height: fit-content;
}
.row-left-header {
  margin-left: 200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.row-left-content {
  margin-left: 200px;
  width: 50%;
}
.row-left-content h3 {
  margin-bottom: 30px;
}
.row-left-header h2 {
  position: relative;
}
.row-left-header h2::before {
  content: "";
  position: absolute;
  top: 15px;
  left: -40px;
  width: 20px;
  height: 2px;
  background-color: var(--highlight-color);
}
.row-left-image {
  width: 100%;
  margin: 50px 0;
}
.row-left-image img {
  width: 100%;
  object-fit: contain;
}
.row-right {
  padding: 50px 150px 0;
}
.row-right-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* .row-right-content p {
  font-weight: 300;
  font-size: 12px;
} */
.row-right-image {
  width: 100%;
  margin: 50px 0;
}
.row-right-image img {
  width: 100%;
  object-fit: contain;
}
.outside-mobile {
  display: none;
}
@media (max-width: 1400px) {
  .row-left-header {
    margin-left: 80px;
  }
  .row-left-content {
    margin-left: 80px;
  }
}
@media (max-width: 1200px) {
  .row-left-header {
    margin-left: 80px;
  }
  .row-left-content {
    margin-left: 80px;
    width: 70%;
  }
}
@media (max-width: 1100px) {
  .row-right {
    padding: 50px 100px 0;
  }
}
@media (max-width: 900px) {
  .row-right {
    padding: 50px 80px 0;
  }
}
@media (max-width: 700px) {
  .outside {
    display: none;
  }

  .outside-mobile {
    display: flex;
    width: 90%;
    margin: auto;
    padding: 70px 0;
    flex-direction: column;
    gap: 50px;
  }
  .outside-mobile-header {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}
