.about-section,
.scale-section,
.product-section,
.application-section,
.safety-section {
  padding: 160px 0;
}

@media only screen and (max-width: 768px) {
  .about-section,
  .scale-section,
  .product-section,
  .application-section,
  .safety-section {
    padding: 80px 0;
  }
}

.container {
  display: flex;
}

.column {
  flex: 1;
}

.row {
  display: flex;
}

.column:first-child {
  max-width: 600px;
}

.column:last-child img {
  width: 100%;
}

/**                                                ABOUT SECTION
     */

.about-section .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-section .container > .row:first-child {
  gap: 80px;
}

.about {
  margin-bottom: 60px;
}

.location {
  display: flex;
  align-items: center;
  gap: 16px;
}

.location > .icon {
  width: 32px;
  height: 32px;
}

.location > p {
  display: inline-block;
}

.location > p > span:first-child {
  display: block;
  color: var(--gray-700);
  font-family: Open Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 28px */
  letter-spacing: 1px;
}

.location > p > span:last-child {
  opacity: 0.8;
  color: var(--gray-400);
  font-family: Open Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.9px;
}

.goal {
  display: flex;
  max-width: 635px;
  padding: 16px 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border-radius: 4px;
  background: var(--gray-50);
}

@media only screen and (max-width: 768px) {
  .container {
    text-align: center;
  }
  .row {
    flex-direction: column;
  }

  .img-container img {
    width: 100%;
    height: auto;
  }
  .location {
    flex-direction: column;
  }
  .goal {
    align-items: center;
  }
}

/**                                                PRODUCT SECTION
     */

.product-section > .container {
  flex-direction: column;
  text-align: center;
  gap: 60px;
}

.product-section .product-header {
  flex-direction: column;
  gap: 16px;
}

.product-section-image {
  max-width: 960px !important;
  margin: 0 auto;
  width: 100%;
}

.feature-cards {
  text-align: left;
  justify-content: space-between;
  gap: 80px;
}

.feature-card {
  flex: 1;
}

@media only screen and (max-width: 768px) {
  .product-section > .container {
    gap: 80px;
  }
  .product-section .feature-cards {
    gap: 32px;
  }
}

/**                                                SCALE SECTION
     */
.scale-section > .container {
  gap: 120px;
}
.scale-cta.desktop {
  margin: 120px auto;
  display: flex;
  flex-direction: column;
  text-align: left;
  border-radius: 8px;
  background-color: var(--gray-50);
  padding: 24px;
  gap: 8px;
}

.scale-cta.mobile {
  display: none;
}

.scale-image {
  max-width: 960px;
  width: 100%;
  max-height: 600px;
  object-fit: contain;
}

.scale-cta a {
  color: #3f75ff;
  font-family: Space Grotesk;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 1px;
  text-align: left;
}

@media only screen and (max-width: 768px) {
  .scale-section > .container {
    gap: 80px;
  }
  .scale-section > .container {
    flex-direction: column-reverse;
  }

  .scale-cta.desktop {
    display: none;
  }

  .scale-cta.mobile {
    margin: 120px auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    border-radius: 8px;
    background: var(
      --full-radial,
      radial-gradient(491.45% 141.42% at -0% 0%, #3ffff3 16.15%, #00e7e7 93.75%)
    );
    padding: 16px 8px;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }

  .scale-cta a {
    text-align: center;
  }
}

/**                                                APPLICATION SECTION
     */

.application-section > .container {
  flex-direction: row;
  gap: 80px;
}

.applications-list-container > img {
  width: 100%;
  max-width: 960px;
  display: none;
}

.application-desktop {
  position: relative;
  height: 240px;
  overflow: hidden;
  margin-top: 20%;
}

.application-section-image-desktop {
  position: absolute;
  width: 100%;
  overflow: hidden;
  height: 100%;
}
.application-section-image-desktop > span {
  width: 48px;
  height: 100%;
  background: linear-gradient(to right, transparent, white);
  position: absolute;
  right: 0;
  top: 0;
}

.application-section-image-desktop > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.application-desktop-image {
  display: inline-block;
  height: 100%s;
}

.applications-list {
  gap: 32px;
  display: flex;
  flex-direction: column;
  margin-top: 88px;
}

.application-item {
  display: flex;
  gap: 16px;
}

.application-item > img {
  max-width: 24px;
  max-height: 24px;
}

.application-item > p {
  color: var(--gray-900) !important;
}

.application-section .img-container {
  margin-top: 60%;
}

@media only screen and (max-width: 768px) {
  .application-section {
    padding: 40px 0;
  }
  .application-section > .container {
    flex-direction: column;
  }

  .applications-list-container {
    margin-top: 24px;
  }

  .applications-list-container > img {
    display: inline-block;
  }

  .applications-list > li {
    flex-direction: column;
    align-items: center;
  }

  .application-desktop {
    display: none;
  }

  .feature-card h6 {
    font-size: 18px;
  }
}
/**                                                SAFETY SECTION
     */

.safety-section > .container {
  gap: 80px;
}

.safety-image {
  width: 100%;
  max-width: 960px;
  object-position: right;
  object-fit: none;
}

.safety-section p {
  margin-bottom: 12px;
}

@media only screen and (max-width: 768px) {
  .safety-section > .container {
    gap: 0;
    flex-direction: column;
  }

  .safety-image {
    display: none;
  }
}
