/* ---------------SERVICES----------------------- */
.services .sub-heading {
  margin-bottom: 0;
}

.services .service-section {
  padding: 4rem 0;
}

.services .service-one {
  background-color: #f5f5f5;
}

.services .service-two {
  background-color: #58669f20;
}

.services .service-three {
  background-color: #f0f0f0;
}

.services .service-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 2rem;
}

.services .service-section .service-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0rem;
  width: 100%;
  height: auto;
}

.services .service-section .service-image-grid .image-column {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0rem;
  border-radius: 0px;
  overflow: hidden;
}

.services .service-section .service-image-grid .image-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services .service-section .service-image-grid .image-column .image-row {
  display: flex;
  flex-direction: row;
  gap: 0rem;
  border-radius: 0px;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.services .service-section .service-image-grid .image-column .image-row img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.services .service-section .service-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.5rem;
}

.services .service-section .service-content p {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
}

@media only screen and (max-width: 768px) {
  .service-content {
    gap: 0.5rem !important;
  }
  .services .service-section .container {
    flex-direction: column;
  }

  .services .service-section {
    padding: 2rem 0;
  }

  .services .service-section .container {
    gap: 1rem !important;
  }
}
