.collaborations {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
}
.collaborations__header-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 25vh;
  background-color: #ffffff;
  padding: 2rem;
  position: relative;
}
.collaborations__title {
  color: #000000;
  font-family: "Dallas-Regular", Helvetica;
  font-size: clamp(40px, 6.3vw, 91px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: normal;
  text-align: center;
  margin: 0;
}
.collaborations__header-line {
  width: clamp(300px, 78.1vw, 1124px);
  height: 1px;
  object-fit: cover;
  margin-top: 2rem;
}
.collaborations__content-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 75vh;
  padding: 2rem;
  box-sizing: border-box;
}
.collaborations__content-section--green {
  background-color: #6c7363;
}
.collaborations__content-section--with-bg {
  background-image: url("/images/IoXmggJw/img/rectangle-64.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0;
  position: relative;
}
.collaborations__content-section--brown {
  background-color: #736a63;
}
.collaborations__content-section--animate .collaborations__section-title {
  opacity: 1;
  transform: translateY(0);
}
.collaborations__content-section--animate .collaborations__description {
  opacity: 1;
  transform: translateY(0);
}
.collaborations__content-section--animate .collaborations__circle-title {
  opacity: 1;
  transform: translateY(0);
}
.collaborations__content-section--animate .collaborations__circle-description {
  opacity: 1;
  transform: translateY(0);
}
.collaborations__content-section--animate .collaborations__circle {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.collaborations__content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  gap: 3rem;
  position: relative;
}
.collaborations__main-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
.collaborations__text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  text-align: center;
}
.collaborations__text-content--center {
  text-align: center;
  align-items: center;
  max-width: 740px;
  margin: 0 auto;
}
.collaborations__text-content--offset {
  margin-top: 2rem;
}
.collaborations__section-title {
  color: #ffffff;
  font-family: "Dallas-Light", Helvetica;
  font-size: clamp(35px, 5.3vw, 77px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: normal;
  margin: 0;
}
.collaborations__section-title--dark {
  color: #000000;
}
.collaborations__description {
  color: #ffffff;
  font-family: "Playfair Display", Helvetica;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
  margin: 0;
}
.collaborations__description--dark {
  color: #000000;
}
.collaborations__circle-text-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 3rem 2rem;
  backdrop-filter: blur(2px);
  position: relative;
}
.collaborations__circle-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.collaborations__circle-title {
  color: #000000;
  font-family: "Dallas-Light", Helvetica;
  font-size: clamp(35px, 5.3vw, 77px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: normal;
  margin: 0;
  text-align: center;
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0 10%;
  box-sizing: border-box;
  z-index: 3;
}
.collaborations__circle {
  width: calc(100% - 4rem);
  height: calc(100% - 4rem);
  border: 1px solid #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  z-index: 1;
}
.collaborations__circle-line {
  width: 80%;
  height: 1px;
  object-fit: cover;
  border-bottom: 1px solid #000;
}
.collaborations__circle-description {
  color: #000000;
  font-family: "Playfair Display", Helvetica;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
  margin: 0;
  text-align: center;
  position: absolute;
  bottom: 30%;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0 16%;
  box-sizing: border-box;
  z-index: 3;
}
@media (max-width: 1024px) {
  .collaborations__content-wrapper {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .collaborations__circle-text-container {
    width: 75%;
  }
  .collaborations__circle-wrapper {
    width: 600px;
    height: 600px;
  }
  .collaborations__circle {
    width: 600px;
    height: 600px;
  }
}
@media (max-width: 768px) {
  .collaborations__content-section {
    min-height: 75vh;
    padding: 1.5rem;
  }
  .collaborations__circle-text-container {
    width: 85%;
    padding: 2rem 1.5rem;
  }
  .collaborations__circle-wrapper {
    width: 400px;
    height: 400px;
  }
  .collaborations__circle {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 480px) {
  .collaborations__header-section {
    min-height: 20vh;
    padding: 1rem;
  }
  .collaborations__content-section {
    min-height: 80vh;
    padding: 1rem;
  }
  .collaborations__circle-text-container {
    width: 90%;
    padding: 1.5rem 1rem;
  }
  .collaborations__circle-wrapper {
    width: 280px;
    height: 280px;
  }
  .collaborations__circle {
    width: 280px;
    height: 280px;
  }
  .collaborations__circle-title {
    font-size: clamp(24px, 4vw, 35px);
    width: 75%;
  }
  .collaborations__circle-description {
    font-size: clamp(12px, 1vw, 14px);
    width: 75%;
  }
}
.collaborations__circle, .collaborations__circle-wrapper {
  will-change: transform;
  transform: translate3d(0, 0, 0);
}