.mosaics {
  background: var(--090909, #090909);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: Montserrat, sans-serif;
  padding-bottom: 120px;
}

.mosaic-intro {
  position: relative;
  min-height: 231px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 43px 70px;
}

.intro-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-title {
  position: relative;
  color: #fff;
  font-size: 58px;
  font-weight: 800;
  line-height: 67px;
  max-width: 646px;
}

.mosaic-content {
  display: grid;
  grid-auto-rows: 1fr;
  width: 100%;
  margin-top: 55px;
}

.mosaic-item {
  width: 100%;
  overflow: hidden;
}

.mosaic-layout {
  display: flex;
  height: 100%;
}

.mosaic-info {
  color: #fafafa;
  width: 50%;
  padding: 84px 88px;
  margin-left: max(0px, calc(50% - 690px));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.mosaic-info ul {
  margin-left: 0;
  margin-bottom: 0;
}

.reverse .mosaic-info {
  margin-right: max(0px, calc(50% - 690px));
  margin-left: 0px;
}

.mosaic-title {
  color: #ed2a35;
  font-size: 38px;
  font-weight: 600;
  line-height: 49px;
  margin-top: 0;
  margin-bottom: 42px;
}

.mosaic-description {
  font-size: 22px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 42px;
  margin-top: 0;
}

.mosaic-details {
  font-size: 17px;
  font-weight: 400;
  line-height: 29px;
  margin-top: 0;
}


.mosaic-image {
  mask-image: linear-gradient(45deg, transparent 36px, white 36px);
  -webkit-mask-image: linear-gradient(45deg, transparent 36px, white 36px);
}

.reverse .mosaic-image {
  mask-image: linear-gradient(-45deg, transparent 36px, white 36px);
  -webkit-mask-image: linear-gradient(-45deg, transparent 36px, white 36px);
}

.mosaic-image {
  width: 50%;
  min-width: 50%;
}

.mosaic-image img {
  object-fit: cover;
  width: 100%;
  position: relative;
  top: -10%;
  height: 120%;
}

.mosaic-icon {
  width: 63px;
  margin-bottom: 35px;
}

.reverse .mosaic-layout {
  flex-direction: row-reverse;
}


@media (max-width: 991px) {

  .mosaics {
    padding-bottom: 32px;
  }

  .contact-button {
    white-space: normal;
    padding: 0 20px;
  }

  .mosaic-intro {
    max-width: 100%;
    font-size: 32px;
    line-height: 52px;
    padding: 0 20px;
  }

  .intro-title {
    max-width: 100%;
    font-size: 40px;
    line-height: 52px;
  }

  .mosaic-content {
    max-width: 100%;
    margin-top: 0px;
    grid-auto-rows: auto;
  }

  .mosaic-item {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .mosaic-layout {
    flex-direction: column;
    margin-bottom: 64px;
  }
  .reverse .mosaic-layout {
    flex-direction: column;
  }

  .mosaic-image {
    width: calc(100% + 48px);
    margin-left: -24px;
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .mosaic-info {
    width: 100%;
    margin-top: 0px;
    padding: 0px;
    margin-bottom: 0px;
    padding-bottom: 24px;
  }

  .mosaic-icon {
    margin-bottom: 12px;
    width: 48px;
  }

  .mosaic-title {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .mosaic-description {
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 18px;
  }
  .mosaic-details {
    font-size: 14px;
    line-height: 1.8;
  }


}


.industries {
  max-width: 1245px;
  margin: 0 auto;
  padding: 0 24px;
  margin-top: 180px;
  padding-bottom: 120px;
  overflow: hidden;
  position: relative;
}

.industries-header {
  display: flex;
  justify-content: space-between;
}
.industries-title {
  font-size: 58px;
  line-height: 70px;
  font-weight: 700;
  margin: 0;
  color: #FAFAFA; 
  max-width: 700px;
}

.industries-callout {
  max-width: 284px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.industries-callout p {
  font-size: 19px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 47px;
  color: #FAFAFA;
}

.industries-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 160px;
}

.industry-item {
  width: 284px;
  padding: 12px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FAFAFA;
  gap: 24px;
}

.industries-icons img {
  width: 180px;
  filter: drop-shadow(0px 24.2px 34.54px #e306156d);

}
.industry-item-title {
  font-size: 19px;
  line-height: 25px;
  text-align: center;
  font-weight: 400;
  margin: 0;
}

@media screen and (max-width: 991px) {
  .industries {
    margin-top: 40px;
    padding-bottom: 24px;
    margin-bottom: -32px;
  }
  .industries-header {
    flex-direction: column;
    gap: 24px;
  }

  .industries-header h2 {
    font-size: 32px;
    line-height: 1.4;
  }

  .industries-callout {
    max-width: 100%;
  }
}

@media screen and (max-width: 1190px) {

  .industries-icons {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    position: relative;
    z-index: 1;
  }

  .industry-item {
    width: 100%;
    height: 270px;
    padding: 22px 42px;
    box-sizing: border-box;
  }

  .industries-icons img {
    width: 120px;
  }
}

.industry-rhino {
  position: absolute;
  right: 0;
  width: 100vw;
  filter: none;
  z-index: 0;
  transform: translate(40%, -80%);
  opacity: 0.6;
}

@media screen and (min-width: 1191px) {
  .industry-rhino {
    display: none;
  }
}

@media screen and (max-width: 601px) {

  .industries-icons {
    justify-content: start;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  .industry-item {
    padding: 12px;
    height: 190px;
  }

  .industries-icons img {
    width: 65px;
  }
  .industry-item-title {
    font-size: 14px;
    line-height: 20px;
  }
}


@media screen and (min-width: 1600px) {
  .mosaic-details {
    font-size: 22px;
    line-height: 36px;
  }
  .mosaic-description {
    font-size: 28px;
    line-height: 42px;
  }
  .mosaic-title {
    font-size: 54px;
    line-height: 64px;
  }

  .mosaic-info {
    margin-left: max(0px, calc(50% - 910px))
  }
  .reverse .mosaic-info {
    margin-right: max(0px, calc(50% - 910px))
  }
}
