.container {
  max-width: 1390px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.due-diligence-hero-section {
  background-image: url(../img/due-bg.jpg);
}

.due-diligence-hero-section h1 {
  max-width: 950px;
  width: 100%;
}

.due-diligence-hero-section .secondary_txt {
  max-width: 560px;
  width: 100%;
  margin: 32px 0;
  font-size: 20px;
}

.due-diligence-hero-section .third_txt {
  font-size: 16px;
  max-width: 965px;
  width: 100%;
  font-family: var(--font-montserrat);
  font-weight: 500;
  line-height: 100%;
  text-align: center;
  color: #fcfaf8;
  margin-bottom: 80px;
}

/* Due Diligence Analysis Section  Start */

.due-diligence-analysis-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-color: #191c38;
}

.due-diligence-analysis-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(25, 28, 56, 0) 0%,
    rgba(25, 28, 56, 0.85) 100%
  );
  z-index: 1;
}

.due-diligence-analysis-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  height: auto;
  object-fit: cover;
}

.due-diligence-analysis-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 5;
}

.due-diligence-analysis-title {
  font-size: 32px;
  max-width: 645px;
  width: 100%;
  font-family: var(--font-montserrat);
  font-weight: 500;
  line-height: 120%;
  color: #fcfaf8;
  letter-spacing: -0.02em;
}

.due-diligence-analysis-btn {
  font-family: var(--font-montserrat);
  padding: 16px 32px;
  border-radius: 40px;
  border: 1px solid #fcfaf8;
  background: transparent;
  color: #fcfaf8;
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}

.due-diligence-analysis-btn:hover {
  background: #fcfaf8;
  color: #191c38;
}

@media (max-width: 1024px) {
  .due-diligence-analysis-title {
    font-size: 24px;
    max-width: 100%;
    text-align: center;
  }

  .due-diligence-analysis-btn {
    font-size: 16px;
    white-space: normal;
    text-align: center;
  }

  .due-diligence-analysis-btn span {
    display: none;
  }

  .due-diligence-analysis-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .due-diligence-analysis-bg {
    width: 100%;
  }
}
/* Due Diligence Analysis Section  End */

/* Due Diligence Speed Section  Start */

.due-diligence-speed-section {
  padding: 120px 0;
}

.due-diligence-speed-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
}

.due-diligence-speed-content-left {
  max-width: 665px;
  width: 100%;
}

.due-diligence-speed-content-title {
  font-size: 36px;
  font-family: var(--font-montserrat);
  font-weight: 600;
  line-height: calc(43 / 36);
  color: #191c38;
  margin-bottom: 28px;
}

.due-diligence-speed-content-title span {
  color: #dba77b;
}

.due-diligence-speed-content-text {
  font-size: 16px;
  font-family: var(--font-montserrat);
  font-weight: 400;
  line-height: calc(27 / 16);
  color: #191c38cc;
  margin-bottom: 28px;
}

.due-diligence-speed-content-right {
  max-width: 630px;
  width: 100%;
  position: relative;
}

.due-diligence-speed-content-right::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #dba77b;
  border-radius: 16px;
  z-index: -1;
}

.due-diligence-speed-content-right-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  max-width: 250px;
  width: 100%;
  background: #191c38;
  border-radius: 8px;
  padding: 20px 25px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.due-diligence-speed-content-right-badge span {
  font-size: 32px;
  font-family: var(--font-montserrat);
  font-weight: 700;
  line-height: calc(43 / 32);
  color: #dba77b;
}

.due-diligence-speed-content-right-badge p {
  font-size: 16px;
  font-family: var(--font-montserrat);
  font-weight: 500;
  color: #fcfaf8;
}

.due-diligence-speed-content-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 1024px) {
  .due-diligence-speed-section {
    padding: 80px 0;
  }

  .due-diligence-speed-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .due-diligence-speed-content-left {
    max-width: 100%;
    width: 100%;
  }

  .due-diligence-speed-content-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .due-diligence-speed-content-right {
    max-width: 100%;
    width: 95%;
    margin: 0 auto;
  }

  .due-diligence-speed-content-right-badge {
    left: -10px;
    padding: 15px 20px;
  }
}

/* Due Diligence Speed Section  End */

/* Due Diligence Check Section  Start */

.due-diligence-check-section {
  padding: 100px 0;
}

.due-diligence-check-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
}

.due-diligence-check-content-left {
  max-width: 621px;
  width: 100%;
  display: flex;
  gap: 19px;
}

.due-diligence-check-content-left-img-1 {
  display: inline-block;
  max-width: 300px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  margin-top: 40px;
  position: relative;
}

.due-diligence-check-content-left-img-1::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #dba77b;
  border-radius: 16px;
  z-index: -1;
}

.due-diligence-check-content-left-img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.due-diligence-check-content-left-img-2 {
  max-width: 300px;
  width: 100%;
  height: 100%;
  position: relative;
  display: inline-block;
}

.due-diligence-check-content-left-img-2::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #dba77b;
  border-radius: 16px;
  z-index: -1;
}

.due-diligence-check-content-left-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.due-diligence-check-content-right {
  max-width: 660px;
  width: 100%;
}

.due-diligence-check-content-right-title {
  max-width: 567px;
  width: 100%;
  font-size: 36px;
  font-family: var(--font-montserrat);
  font-weight: 600;
  line-height: 120%;
  color: #191c38;
  margin-bottom: 40px;
}

.due-diligence-check-content-right-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
}

.due-diligence-check-content-right-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 20px;
  font-weight: 500;
  color: #45485e;
  font-family: var(--font-montserrat);
}

.due-diligence-check-content-right-list li::before {
  content: '';
  margin-top: 2px;
  min-width: 20px;
  max-width: 20px;
  min-height: 20px;
  max-height: 20px;
  background-image: url(../../page-catalog/images/check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 1024px) {
  .due-diligence-check-section {
    padding: 80px 0;
  }

  .due-diligence-check-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .due-diligence-check-content-left {
    max-width: 100%;
    justify-content: center;
    gap: 10px;
  }

  .due-diligence-check-content-left-img-1 {
    margin-top: 0;
  }

  .due-diligence-check-content-right {
    max-width: 100%;
    width: 95%;
    margin: 0 auto;
  }

  .due-diligence-check-content-right-title {
    max-width: 100%;
    font-size: 24px;
    margin-bottom: 24px;
  }

  .due-diligence-check-content-right-list {
    gap: 16px;
  }

  .due-diligence-check-content-right-list li {
    font-size: 16px;
  }
}

/* Due Diligence Check Section  End */

/* Due Diligence Order Section  Start */

.due-diligence-order-section {
  padding: 120px 0;
  background-color: #191c38;
}

.due-diligence-order-content-title {
  font-size: 48px;
  font-family: var(--font-montserrat);
  font-weight: 800;
  line-height: calc(58 / 48);
  color: #fcfaf8;
  margin-bottom: 20px;
  text-align: center;
}

.due-diligence-order-content-text {
  max-width: 680px;
  width: 100%;
  margin: 0 auto 20px;
  font-size: 19px;
  font-family: var(--font-montserrat);
  font-weight: 600;
  line-height: calc(30 / 19);
  color: #d19969;
  text-align: center;
}

.due-diligence-order-content-text-small {
  font-size: 16px;
  color: rgba(252, 250, 248, 0.7);
  font-family: var(--font-montserrat);
  text-align: center;
  margin-bottom: 20px;
}

.due-diligence-order-content {
  max-width: 1125px;
  width: 100%;
  margin: 64px auto 0;
  display: grid;
  grid-template: 1fr 1fr 1fr / 1fr 1fr 1fr;
  gap: 35px 20px;
}

.due-diligence-order-content-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  border: 2px solid #dba77b40;
  border-radius: 18px;
}

.due-diligence-order-content-item:last-child {
  grid-column: 2 / 4;
  background-color: #dba77b;
}

.due-diligence-order-content-item:last-child
  .due-diligence-order-content-item-check {
  width: 48px;
  height: 48px;
}

.due-diligence-order-content-item:last-child
  .due-diligence-order-content-item-text {
  font-size: 20px;
  color: #191c38;
}

.due-diligence-order-content-item-number {
  font-family: var(--font-montserrat);
  font-size: 28px;
  font-weight: 800;
  color: #dba77b;
  position: relative;
}

.due-diligence-order-content-item-number::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
  background-color: #dba77b;
  filter: blur(22px);
}

.due-diligence-order-content-item-text {
  font-family: var(--font-montserrat);
  font-size: 15px;
  line-height: calc(24 / 15);
  font-weight: 500;
  color: #fcfaf8;
}

@media (max-width: 1024px) {
  .due-diligence-order-section {
    padding: 80px 0;
  }

  .due-diligence-order-content-title {
    font-size: 32px;
  }

  .due-diligence-order-content-text {
    font-size: 16px;
  }

  .due-diligence-order-content {
    grid-template: 1fr 1fr / 1fr 1fr;
  }

  .due-diligence-order-content-item:last-child {
    grid-column: 2 / 3;
  }

  .due-diligence-order-content-item:last-child
    .due-diligence-order-content-item-text {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .due-diligence-order-content {
    grid-template: 1fr / 1fr;
    gap: 24px;
  }

  .due-diligence-order-content-item {
    padding: 16px;
  }

  .due-diligence-order-content-item:last-child {
    grid-column: -1 / 1;
  }
}

/* Due Diligence Order Section  End */

/* Due Diligence Services Section  Start */
.due-diligence-services-section {
  padding: 120px 0;
}

.due-diligence-services-content-title {
  font-size: 48px;
  font-family: var(--font-montserrat);
  font-weight: 800;
  line-height: 120%;
  color: #191c38;
  text-align: center;
  max-width: 1030px;
  width: 100%;
  margin: 0 auto 24px;
}

.due-diligence-services-content-title span {
  color: #dba77b;
}

.due-diligence-services-content-text {
  font-size: 17px;
  font-family: var(--font-montserrat);
  font-weight: 400;
  line-height: calc(30 / 17);
  color: #191c38cc;
  text-align: center;
  max-width: 760px;
  width: 100%;
  margin: 0 auto 64px;
}

.due-diligence-services-content-items {
  max-width: 1232px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 24px;
}

.due-diligence-services-content-item {
  border-radius: 22px;
  border: 1px solid #dba77b35;
  padding: 32px;
  background-color: #ecece8;
  position: relative;
  display: flex;
  flex-direction: column;
}

.due-diligence-services-content-item::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #dba77b;
  border-radius: 22px;
  z-index: -1;
}

.due-diligence-services-content-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.due-diligence-services-content-item-header-number {
  font-size: 40px;
  font-family: var(--font-montserrat);
  font-weight: 800;
  color: #dba77b;
}

.due-diligence-services-content-item-icon {
  width: 56px;
  height: 56px;
  background-color: #dba77b20;
  border: 2px solid #dba77b40;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.due-diligence-services-content-item-icon img {
  width: 26px;
  height: 26px;
}

.due-diligence-services-content-item-title {
  font-size: 19px;
  font-family: var(--font-montserrat);
  font-weight: 700;
  line-height: calc(25 / 19);
  color: #191c38;
  margin-bottom: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid #dba77b35;
}

.due-diligence-services-content-item-text {
  font-size: 15px;
  font-family: var(--font-montserrat);
  font-weight: 400;
  line-height: calc(25 / 15);
  color: #45485e;
  margin-bottom: 20px;
}

.due-diligence-services-content-item-conclusion {
  font-size: 14px;
  font-family: var(--font-montserrat);
  font-weight: 600;
  line-height: calc(22 / 15);
  color: #a47854;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #dba77b35;
}

@media (max-width: 1024px) {
  .due-diligence-services-section {
    padding: 80px 0;
  }

  .due-diligence-services-content-title {
    font-size: 32px;
  }
}
/* Due Diligence Services Section  End */

/* Due Diligence Help Section  Start */
.due-diligence-help-section {
  padding: 112px 0;
  position: relative;
  background: url(../img/due-help-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.due-diligence-help-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    100deg,
    rgba(7, 9, 31, 0.9) 0%,
    rgba(25, 28, 56, 0.9) 100%
  );

  z-index: 1;
}

.due-diligence-help-content {
  position: relative;
  z-index: 5;
}

.due-diligence-help-content-title {
  font-size: 35px;
  font-family: var(--font-montserrat);
  font-weight: 600;
  line-height: calc(43 / 35);
  color: #fcfaf8;
  text-align: center;
  max-width: 812px;
  width: 100%;
  margin: 0 auto 28px;
}

.due-diligence-help-content-text {
  font-size: 16px;
  font-family: var(--font-montserrat);
  font-weight: 400;
  line-height: calc(27 / 16);
  color: rgba(252, 250, 248, 0.7);
  text-align: center;
  max-width: 640px;
  width: 100%;
  margin: 0 auto 28px;
}

.due-diligence-help-content-btn {
  display: block;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .due-diligence-help-section {
    padding: 80px 0;
  }

  .due-diligence-help-content-title {
    font-size: 24px;
  }
}

/* Due Diligence Help Section  End */

/* Due Diligence Receive Section  Start */

.due-diligence-receive-section {
  padding: 120px 0;
  background-color: #191c38;
}

.due-diligence-receive-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 55px;
}

.due-diligence-receive-content-left {
  max-width: 645px;
  width: 100%;
}

.due-diligence-receive-content-left-title {
  font-size: 48px;
  font-family: var(--font-montserrat);
  font-weight: 800;
  line-height: 120%;
  color: #fcfaf8;
  margin-bottom: 64px;
}

.due-diligence-receive-content-left-title span {
  color: #dba77b;
}

.due-diligence-receive-content-left-text {
  max-width: 545px;
  width: 100%;
  font-size: 16px;
  font-family: var(--font-montserrat);
  font-weight: 400;
  line-height: calc(27 / 16);
  color: rgba(252, 250, 248, 0.7);
  margin-bottom: 64px;
}

.due-diligence-receive-content-left-img {
  max-width: 545px;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.due-diligence-receive-content-right {
  border-radius: 28px;
  border: 1px solid #f5efe61a;
  height: 765px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: height 0.45s ease;
}

.due-diligence-receive-content-right-items {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.due-diligence-receive-content-right-items::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(
    to top,
    #191c38 0%,
    rgba(25, 28, 56, 0.92) 28%,
    rgba(25, 28, 56, 0.55) 58%,
    rgba(25, 28, 56, 0.18) 82%,
    transparent 100%
  );
  opacity: 1;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.due-diligence-receive-content-right.is-expanded
  .due-diligence-receive-content-right-items {
  overflow: visible;
}

.due-diligence-receive-content-right.is-expanded
  .due-diligence-receive-content-right-items::after {
  opacity: 0;
}

.due-diligence-receive-content-right-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  border-bottom: 1px solid #f5efe61a;
}

.due-diligence-receive-content-right-item-number {
  font-size: 13px;
  font-weight: 600;
  min-width: 44px;
  min-height: 44px;
  max-width: 44px;
  max-height: 44px;
  background-color: #dba77b2e;
  border: 1px solid #dba77b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dba77b;
  font-family: var(--font-montserrat);
}

.due-diligence-receive-content-right-item-title {
  font-size: 16px;
  font-weight: 600;
  color: #f5efe6;
  font-family: var(--font-montserrat);
  margin-bottom: 8px;
}

.due-diligence-receive-content-right-item-text {
  font-size: 14px;
  font-weight: 400;
  color: #f5efe69e;
  font-family: var(--font-montserrat);
}

.due-diligence-receive-content-right-item-bottom {
  flex-shrink: 0;
  width: 100%;
  background-color: #191c38;
  border-top: 1px solid #f5efe61a;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.due-diligence-receive-content-right-item-bottom button {
  font-size: 16px;
  font-weight: 600;
  color: #f5efe6;
  font-family: var(--font-montserrat);
  background: #dba77b2e;
  border: 1px solid #dba77b;
  cursor: pointer;
  border-radius: 30px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.due-diligence-receive-content-right-toggle-icon {
  transition: transform 0.35s ease;
}

.due-diligence-receive-content-right.is-expanded
  .due-diligence-receive-content-right-toggle-icon {
  transform: rotate(180deg);
}

@media (max-width: 1024px) {
  .due-diligence-receive-section {
    padding: 80px 0;
  }

  .due-diligence-receive-content {
    flex-direction: column;
    gap: 40px;
  }

  .due-diligence-receive-content-left {
    text-align: center;
  }

  .due-diligence-receive-content-left-title {
    font-size: 32px;
    margin-bottom: 36px;
  }

  .due-diligence-receive-content-left-text {
    margin-bottom: 24px;
  }

  .due-diligence-receive-content-right-item {
    padding: 16px;
  }

  .due-diligence-receive-content-right-items::after {
    height: 10%;
  }
}

/* Due Diligence Receive Section  End */

/* Due Diligence Presentation Section  Start */

.due-diligence-presentation-section {
  padding: 120px 0;
}

.due-diligence-presentation-section-title {
  font-size: 32px;
  font-family: var(--font-montserrat);
  font-weight: 500;
  line-height: 120%;
  color: #191c38;
  margin-bottom: 80px;
  text-align: center;
}

.due-diligence-presentation-section-title span {
  color: #dba77b;
}

.due-diligence-presentation-section-content {
  max-width: 1130px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.due-diligence-presentation-section-content-item {
  width: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 545px;
}

.due-diligence-presentation-section-content-item.blue-item
  .due-diligence-presentation-section-content-item-inner {
  background-color: #191c38;
}

.due-diligence-presentation-section-content-item.blue-item
  .due-diligence-presentation-section-content-item-title {
  color: #fcfaf8;
}

.due-diligence-presentation-section-content-item.blue-item
  .due-diligence-presentation-section-content-item-list
  li {
  color: #fcfaf8;
}

.due-diligence-presentation-section-content-item.blue-item
  .due-diligence-presentation-section-content-item-list
  li::before {
  margin-top: 3px;
  background-image: url(../../page-catalog/images/check.svg);
}

.due-diligence-presentation-section-content-item-img-wrapper {
  width: 100%;
  height: 185px;
  position: relative;
}

.due-diligence-presentation-section-content-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.due-diligence-presentation-section-content-item-icon {
  position: absolute;
  bottom: -22%;
  left: 5%;
  width: 80px;
  height: 80px;
  z-index: 1;
}

.due-diligence-presentation-section-content-item-inner {
  position: relative;
  background-color: #ecece8;
  padding: 64px 40px;
  border-radius: 0 0 16px 16px;
}

.due-diligence-presentation-section-content-item-inner::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d19969;
  border-radius: 0 0 16px 16px;
  z-index: -1;
}

.due-diligence-presentation-section-content-item-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 100%;
  color: #191c38;
  margin-bottom: 16px;
  font-family: var(--font-montserrat);
}

.due-diligence-presentation-section-content-item-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.due-diligence-presentation-section-content-item-list li {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-montserrat);
  color: #45485e;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.due-diligence-presentation-section-content-item-list li::before {
  content: '';
  display: block;
  min-width: 20px;
  max-width: 20px;
  min-height: 20px;
  max-height: 20px;
  background-image: url(../img/dot.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 1024px) {
  .due-diligence-presentation-section {
    padding: 80px 0;
  }

  .due-diligence-presentation-section-title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .due-diligence-presentation-section-content {
    flex-direction: column;
    gap: 40px;
  }

  .due-diligence-presentation-section-content-item-title {
    font-size: 20px;
  }

  .due-diligence-presentation-section-content-item {
    width: 100%;
  }

  .due-diligence-presentation-section-content-item-img-wrapper {
    height: 115px;
  }

  .due-diligence-presentation-section-content-item-img {
    height: 100%;
    object-fit: cover;
  }

  .due-diligence-presentation-section-content-item-inner {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .due-diligence-presentation-section-content-item-inner {
    padding: 40px 24px 24px;
  }

  .due-diligence-presentation-section-content-item-icon {
    width: 60px;
    height: 60px;
    bottom: -25%;
    left: 5%;
  }
}

/* Due Diligence Presentation Section  End */

/* Due Diligence Invest Section  Start */

.due-diligence-invest-section {
  background-color: #191c38;
}

.due-diligence-invest-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.due-diligence-invest-content {
  display: flex;
  align-items: center;
}

.due-diligence-invest-content-left {
  max-width: 655px;
  width: 100%;
}

.due-diligence-invest-content-left-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.due-diligence-invest-content-right {
  width: 100%;
  padding: 0 76px;
}

.due-diligence-invest-content-right-title {
  font-size: 48px;
  font-family: var(--font-montserrat);
  font-weight: 800;
  line-height: 120%;
  color: #fcfaf8;
  margin-bottom: 28px;
}

.due-diligence-invest-content-right-text {
  max-width: 530px;
  width: 100%;
  font-size: 17px;
  font-family: var(--font-montserrat);
  font-weight: 400;
  line-height: calc(30 / 17);
  color: rgba(252, 250, 248, 0.7);
  margin-bottom: 28px;
}

@media (max-width: 1024px) {
  .due-diligence-invest-section {
    padding-top: 80px;
  }

  .due-diligence-invest-content {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .due-diligence-invest-content-right {
    padding: 0 15px;
    text-align: center;
  }

  .due-diligence-invest-content-right-title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .due-diligence-invest-content-right-text {
    font-size: 16px;
    margin: 0 auto 24px;
  }
}
