/* [project]/src/styles/service/ServiceTrusted.css [client] (css) */
.service-trusted-new {
  background-color: #000;
  width: 100%;
  padding: 50px 0;
}

.trusted-new-container {
  align-items: stretch;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
}

.trusted-new-left {
  flex-direction: column;
  flex: 1.1;
  display: flex;
}

.trusted-new-right {
  text-align: left;
  flex-direction: column;
  flex: .9;
  padding: 5px 0;
  display: flex;
}

.trusted-image-wrapper {
  border-radius: 24px;
  flex-grow: 1;
  width: 100%;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px #00000080;
}

.trusted-main-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.trusted-new-title {
  color: #fff;
  margin-bottom: 30px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
}

.trusted-new-title .text-primary {
  color: #54b248;
}

.trusted-new-content {
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
  display: flex;
}

.trusted-new-content p {
  color: #fff;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.book-meeting-btn {
  color: #fff;
  font-size: 19px;
  font-family: var(--font-body);
  cursor: pointer;
  background-color: #54b248;
  border: none;
  border-radius: 60px;
  width: fit-content;
  margin-top: auto;
  padding: 20px 55px;
  font-weight: 700;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: inline-block;
  box-shadow: 0 4px 25px #54b2484d;
}

.book-meeting-btn:hover {
  background-color: #469c3a;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px #54b24880;
}

@media (max-width: 1200px) {
  .trusted-new-container {
    gap: 40px;
    padding: 0 30px;
  }
}

@media (max-width: 1024px) {
  .trusted-new-container {
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
  }

  .trusted-new-left {
    flex: none;
    width: 100%;
  }

  .trusted-image-wrapper {
    flex-grow: 0;
    width: 100%;
    height: 400px;
    min-height: 400px;
  }

  .trusted-new-right {
    text-align: center;
  }

  .trusted-new-title {
    font-size: 36px;
  }

  .book-meeting-btn {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .service-trusted-new {
    padding: 60px 15px;
  }

  .trusted-new-container {
    gap: 30px;
    padding: 0;
  }

  .trusted-image-wrapper {
    border-radius: 16px;
    width: 100%;
    height: 350px;
    min-height: 350px;
  }

  .trusted-new-title {
    margin-bottom: 25px;
    font-size: 30px;
  }

  .trusted-new-content p {
    font-size: 16px;
  }

  .book-meeting-btn {
    padding: 15px 35px;
    font-size: 16px;
  }
}

/*# sourceMappingURL=src_styles_service_ServiceTrusted_css_65f1660e._.single.css.map*/