/* About Us page only */

.role {
  margin-top: 100px;
}

.role_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.role_txt {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.role_txt_main {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.role_txt_main p {
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 18px;
  line-height: 142%;
  color: #45485e;
}

.role_txt_main p span {
  font-weight: 700;
  font-size: 18px;
  line-height: 142%;
}

.gold_txt {
  font-family: var(--font-geist);
  font-weight: 600;
  font-size: 20px;
  line-height: 142%;
  color: #dba77b;
}

.role_txt .select_an_asset {
  width: fit-content;
}

.role_img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.role_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.role_txt_main h3 {
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 32px;
  line-height: 142%;
  color: #dba77b;
}

.role_txt_main h4 {
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 20px;
  line-height: 142%;
  color: #dba77b;
}

.role_txt_main ul {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.role_txt_main ul li {
  display: flex;
  align-items: start;
  gap: 8px;
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 20px;
  line-height: 142%;
  color: #45485e;
}

.role_txt_main .aboutus-check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}

.role_txt_bold p {
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 18px;
  line-height: 142%;
  color: #45485e;
}

.aboutus {
  margin-top: 100px;
  margin-bottom: 120px;
}

.aboutus__container {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.aboutus__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.aboutus__media {
  width: 100%;
}

.aboutus__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

.aboutus__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-montserrat);
  color: #45485e;
}

.aboutus__title {
  margin: 0;
  font-weight: 700;
  font-size: 32px;
  line-height: 142%;
  color: #dba77b;
}

.aboutus__content p {
  margin: 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 142%;
}

.aboutus__strong {
  font-weight: 700;
}

.aboutus__muted {
  font-weight: 600;
}

.aboutus__list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.aboutus__list li {
  position: relative;
  padding-left: 32px;
  font-weight: 500;
  font-size: 20px;
  line-height: 142%;
  color: #45485e;
}

.aboutus__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px;
  height: 20px;
  background-image: url(../../page-catalog/images/check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.aboutus__list li::after {
  content: none;
}

.aboutus__card {
  background-color: #ecece8;
  border-radius: 16px;
  box-shadow: 0px 8px 0px 0px #dba77b;
  padding: 32px 32px 28px;
  box-sizing: border-box;
}

.aboutus__cta {
  margin-top: 8px;
  padding: 16px 24px;
  border-radius: 40px;
  background: linear-gradient(91.02deg, #dba77b 0.12%, #a47854 100.12%);
  color: #fcfaf8;
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
}

@media (max-width: 1000px) {
  .role {
    margin-top: 80px;
  }

  .role_container {
    grid-template-columns: 1fr;
  }

  .aboutus {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .aboutus__container {
    gap: 60px;
  }

  .aboutus__row {
    grid-template-columns: 1fr;
  }

  .aboutus__card {
    padding: 28px 20px 22px;
  }
}

@media (max-width: 768px) {
  .role_txt .select_an_asset {
    text-align: center;
  }
}

