.hero-product {
  display: flex;
}

.hero-product-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 75px;
  box-sizing: border-box;
  padding-left: 37px;
  padding-top: 18px;
}

.hero-product-text {
  max-width: 550px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-right: 15px;
}

.hero-product-subtitle {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
  color: #282828;
}

.hero-product-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  color: #326ea3;
}

.hero-product-desc {
  font-size: 18px;
  font-weight: 400;
}

.btn-product {
  margin-top: auto;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  background-color: #326ea3;
  color: #fff;
  padding: 17px 27px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

.hero-product-img {
  width: 50%;
}

.hero-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .hero-product-subtitle {
    font-size: 13px;
  }

  .hero-product-title {
    font-size: 40px;
  }

  .hero-product-desc {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .hero-product {
    display: flex;
    flex-direction: column-reverse;
    height: auto;
  }

  .hero-product-img {
    width: 100%;
  }

  .hero-product-content {
    padding: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 25px;
  }

  .hero-product-text {
    margin: 0;
  }
}

@media (max-width: 480px) {
  .hero-product-img {
    height: 240px;
  }

  .hero-product-img img {
    height: 100%;
    object-fit: cover;
  }

  .hero-product-subtitle {
    font-size: 12px;
  }

  .hero-product-title {
    font-size: 36px;
  }

  .hero-product-desc {
    font-size: 12px;
    line-height: 1.3;
  }

  .btn-product {
    font-size: 14px;
  }
}

.describ-med-complete {
  width: 100%;
}

.describ-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: center;
  margin-top: 40px;
  margin-inline: auto;
  width: 90%;
}

.title-blue {
  color: var(--color-blue);
}

.describ-medcomplete.describ {
  width: 90%;
  margin: 0 auto;
  background-color: #f5f8fe;
  border-radius: 15px;
  box-sizing: border-box;
  padding: 20px;
  margin-top: 45px;
}

.describ-medcomplete .describ-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.describ-cards-up {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.describ-cards-down {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.describ-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  background-color: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 10px;
}

.describ-card-cols-down {
  width: calc((100% - 20px) / 2);
}

.describ-card-cols-up {
  width: calc((100% - 3 * 20px) / 4);
}

.describ-card-icon {
}

.describ-card-icon img {
  width: 85px;
  height: 85px;
}

.describ-card-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}

.describ-card-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
  width: 80%;
}

.describ-body {
  display: flex;
  gap: 20px;
}

.describ-img {
  width: 50%;
}

.describ-img img {
  width: 100%;
  /* height: 100%; */
  overflow: hidden;
}

.describ-side {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 20px;
}

.describ-desc {
  font-size: 32px;
  font-weight: 500;
  color: #282828;
}

@media (max-width: 1024px) {
  .describ-body {
    flex-direction: column;
  }

  .describ-img {
    width: 100%;
    height: 500px;
  }

  .describ-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
  }

  .describ-side {
    width: 100%;
  }

  .describ-card-cols-up {
    width: calc((100% - 20px) / 2);
  }

  .describ-cards-down {
    width: 100%;
  }

  .describ-card-cols-down {
    width: 100%;
    width: calc((100% - 20px) / 2);
  }

  .describ-card-icon img {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 768px) {
  .describ-title {
    font-size: 28px;
    margin-top: 0;
  }

  .describ-card {
    gap: 10px;
  }

  .describ-card-title {
    font-size: 20px;
  }

  .describ-card-desc {
    font-size: 14px;
  }

  .describ-desc {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .describ-title {
    font-size: 24px;
    margin-top: 0;
  }

  .describ-card {
    gap: 5px;
  }

  .describ-card-cols-up {
    width: 100%;
  }

  .describ-img {
    height: auto;
  }

  .describ-cards-down {
    flex-direction: column;
  }

  .describ-card-cols-down {
    width: 100%;
  }

  .describ-desc {
    font-size: 20px;
  }
}

.opport {
  width: 90%;
  margin: 0 auto;
  margin-top: 50px;
  box-sizing: border-box;
  padding: 20px;
}

.opport-text {
  display: flex;
  flex: 0 0 50%;
}

.opport-titles {
  display: flex;
  flex-direction: column;
}

.opport-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3125;
  letter-spacing: 0;
  color: #000;
}

.opport-subtitle {
  font-size: 64px;
  font-weight: 700;
  color: #326ea3;
}

.opport-desc {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.083;
  flex: 0 0 50%;
}

.opport-content {
  display: flex;
  margin-top: 60px;
  gap: 60px;
}

.opport-cards {
  display: flex;
  flex-direction: column;
  gap: 35px;
  width: calc((100% - 60px) / 2);
}

.opport-img {
  width: calc((100% - 60px) / 2);
}

.opport-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.opport-card {
  background-color: #fff;
  padding: 40px;
  background-color: #f5f8fe;
  border-radius: 10px;
}

.opport-card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}

.opport-card-list {
  display: flex;
  flex-direction: column;
  height: auto;
  margin-top: 25px;
  gap: 15px;
}

.opport-card-list-el {
  display: flex;
}

.opport-card-list-el-img {
  width: 15px;
  height: 15px;
  margin-right: 4px;
}

.opport-card-list-el-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
  color: #4a4a4a;
}

@media (max-width: 1024px) {
  .opport-text {
    flex-direction: column;
  }

  .opport-titles {
    gap: 20px;
  }

  .opport-title {
    font-size: 40px;
  }

  .opport-subtitle {
    font-size: 56px;
  }

  .opport-desc {
    font-size: 32px;
    margin-top: 40px;
  }

  .opport-content {
    flex-direction: column-reverse;
  }

  .opport-cards {
    width: 100%;
  }

  .opport-img {
    width: 100%;
    height: 800px;
    /* height: 78.125; */
  }

  .opport-img img {
    width: 100%;
    height: 100%;
    object-position: 0 0;
  }
}

@media (max-width: 756px) {
  .opport-title {
    font-size: 28px;
  }

  .opport-subtitle {
    font-size: 52px;
  }

  .opport-desc {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .opport-title {
    font-size: 18px;
  }

  .opport-subtitle {
    font-size: 32px;
  }

  .opport-desc {
    font-size: 18px;
    margin-top: 20px;
  }

  .opport-content {
    margin-top: 20px;
  }

  .opport-img {
    height: 100%;
  }

  .opport-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .opport {
    padding: 0;
  }

  .opport-content {
    width: 100%;
  }

  .opport-card-title {
    font-size: 20px;
  }

  .opport-card-list-el-text {
    font-size: 14px;
  }
}

.advantages-medcomplete {
  margin: 0 auto;
}

.advantages-medcomplete-text {
  display: flex;
  gap: 60px;
  margin-top: 90px;
}

.advantages-medcomplete-desc {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.083;
  letter-spacing: 0;
  width: 50%;
  text-align: right;
}

.advantages-medcomplete-titles {
  display: flex;
  flex-direction: column;
  width: 50%;
}

.advantages-medcomplete-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3125;
  letter-spacing: 0;
  color: #282828;
}

.advantages-medcomplete-subtitle {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.40625;
  letter-spacing: 0;
  color: #326ea3;
}

.advantages-medcomplete-cards {
  display: flex;
  flex-wrap: wrap;
  column-gap: 74px;
  row-gap: 27px;
  border-radius: 50px;
  background-color: #e1e5ed;
  padding: 35px 80px;
  box-sizing: border-box;
  margin-top: 87px;
  width: 100%;
  margin-inline: auto;
}

.advantages-medcomplete-card {
  flex: 1 1 calc((100% - 2 * 74px) / 3);
}

.advantages-medcomplete-card-inner {
  background-color: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 36px 41px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  height: 100%;
}

.advantages-medcomplete-card-icon {
  display: block;
}

.advantages-medcomplete-card-icon img {
  width: 100%;
  height: 100%;
}

.advantages-medcomplete-card-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.advantages-medcomplete-card-desc {
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 1200px) {
  .advantages-medcomplete-cards {
    padding: 35px;
    column-gap: 40px;
  }

  .advantages-medcomplete-card {
    flex: 1 1 calc((100% - 2 * 40px) / 3);
  }
}

@media (max-width: 1200px) {
  .advantages-medcomplete-text {
    margin-top: 30px;
  }

  .advantages-medcomplete-desc {
    font-size: 24px;
    margin-block: auto;
  }

  .advantages-medcomplete-title {
    font-size: 36px;
  }

  .advantages-medcomplete-subtitle {
    font-size: 52px;
  }

  .advantages-medcomplete-cards {
    margin-top: 20px;
    column-gap: 50px;
  }
  .advantages-medcomplete-card {
    flex: 1 1 calc((100% - 50px) / 2);
  }
}

@media (max-width: 1024px) {
  .advantages-medcomplete-text {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .advantages-medcomplete-desc {
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }

  .advantages-medcomplete-titles {
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }
}

@media (max-width: 680px) {
  .advantages-medcomplete-cards {
    padding-inline: 75px;
  }
  .advantages-medcomplete-card {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .advantages-medcomplete-cards {
    padding-inline: 20px;
  }

  .advantages-medcomplete-title {
    font-size: 28px;
  }

  .advantages-medcomplete-subtitle {
    font-size: 38px;
  }

  .advantages-medcomplete-desc {
    font-size: 18px;
  }

  .advantages-medcomplete-text {
    gap: 10px;
  }

  .advantages-medcomplete-card-icon img {
    width: 60px;
    height: 60px;
  }

  .advantages-medcomplete-card-title {
    font-size: 20px;
  }

  .advantages-medcomplete-card-desc {
    font-size: 14px;
  }
}

.features-medcomplete {
  padding: 80px;
}

.features-medcomplete-titles {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 80%;
  gap: 15px;
}

.features-medcomplete-title {
  color: #326ea3;
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0;
  text-align: center;
}

.features-medcomplete-subtitle {
  color: #282828;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.083;
  text-align: center;
  margin-bottom: 70px;
}

.features-medcomplete-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  margin-bottom: 30px;
}

.features-medcomplete-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  width: calc((100% - 3 * 35px) / 4);
  background-color: #f0f2f6;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 25px;
}

.features-medcomplete-card-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.features-medcomplete-card-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
}

.features-img {
  width: 100%;
}

.features-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .features-medcomplete-card {
    width: calc(50% - 35px / 2);
  }
}

@media (max-width: 768px) {
  .features-medcomplete {
    padding-inline: 0px;
  }

  .features-medcomplete-titles {
    width: 100%;
  }

  .features-medcomplete-title {
    font-size: 32px;
  }

  .features-medcomplete-subtitle {
    font-size: 20px;
  }

  .features-medcomplete-card {
    width: 100%;
  }
}

.napriem {
  width: 100%;
  box-sizing: border-box;
  padding: 80px;
}

.napriem-text {
  display: flex;
  gap: 60px;
  text-align: right;
}

.napriem-titles {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
}

.napriem-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.31;
}

.napriem-subtitle {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.41;
  color: #326ea3;
}

.napriem-desc {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.08;
  flex: 1 1 50%;
  text-align: left;
}

.napriem-img {
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  margin-top: 40px;
}

.napriem-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.napriem-app {
  background-color: #f0f2f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 50px;
  border-radius: 15px;
  margin-top: 60px;
}

.napriem-app-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: center;
}

.napriem-app-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 21px;
  max-width: 370px;
  /* width: 40%; */
}

.napriem-app-card {
  /* height: auto; */
}

.napriem-app-card > a {
  display: block;
  height: auto;
}

.napriem-app-card img {
}

@media (max-width: 1024px) {
  .napriem-text {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .napriem-subtitle {
    font-size: 36px;
  }

  .napriem-title {
    font-size: 40px;
  }

  .napriem-desc {
    font-size: 28px;
  }

  .napriem-app {
    flex-direction: column;
  }

  .napriem-app-title {
    margin-bottom: 30px;
  }

  .napriem-app-cards {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .napriem {
    padding-inline: 0;
  }

  .napriem-text {
    padding-inline: 20px;
    gap: 10px;
  }

  .napriem-desc {
    font-size: 24px;
    text-align: center;
  }

  .napriem-app-title {
    font-size: 24px;
  }
}

.infomat {
  display: flex;
  gap: 35px;
  box-sizing: border-box;
  padding: 80px;
}

.infomat-img {
  width: 50%;
  /* flex: 0 0 50%; */
}

.infomat-img img {
  border-radius: 20px;
}

.infomat-content {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.infomat-text {
  display: flex;
  flex-direction: column;
}

.infomat-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #326ea3;
}

.infomat-desc {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.infomat-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  width: 100%;
  margin-top: 35px;
}

.infomat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background-color: #f0f2f6;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 15px 60px;
  width: calc((100% - 35px) / 2);
  text-align: center;
}

.infomat-card-img {
  width: 50%;
}

.infomat-img img {
  width: 100%;
}

.infomat-card-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
}

.infomat-card-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
}

@media (max-width: 1200px) {
  .infomat {
    flex-direction: column;
  }

  .infomat-content {
    /* width: auto;
    min-width: 50%;
    max-width: 60%; */
    display: contents;
  }

  .infomat-text {
    /* display: contents; */
    order: 1;
  }

  .infomat-cards {
    order: 3;
  }

  .infomat-img {
    width: auto;
    order: 2;
  }

  .infomat-img img {
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .infomat-card {
    width: 100%;
  }

  .infomat-title {
    font-size: 48px;
  }

  .infomat-desc {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .infomat {
    padding: 0;
  }

  .infomat-text {
    padding-inline: 20px;
  }
}

.suggestion {
  width: 100%;
  box-sizing: border-box;
  padding: 80px;
  display: flex;
  flex-direction: column;
}

.suggestion-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.suggestion-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 70px;
}

.suggestion-card {
  width: calc(50% - 20px / 2);
  box-sizing: border-box;
  padding: 30px 40px;
  background-color: #f0f2f6;
  border-radius: 20px;
  height: 250px;
  display: flex;
  flex-direction: column;
}

.suggestion-card-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.suggestion-card-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}

.suggestion-card-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
}

.suggestion-card-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.suggestion-card-button {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
  box-sizing: border-box;
  padding: 15px 20px;
  color: #ffffff;
  background-color: #326ea3;
  border-radius: 10px;
  border: none;
  margin-top: auto;
  width: fit-content;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .suggestion-card {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .suggestion-card-buttons {
    margin-top: 20px;
  }
}
