.block-1 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 700px; */
  height: 600px;
  width: 100%;
  /* background-image: url("/assets/imgs/IMG_4646.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    background-size: cover; */
  overflow: hidden;
}

.block-1::before {
  content: "";
  position: absolute;
  inset: 0;
  /* backdrop-filter: blur(8px); */
  /* background-color: rgba(0, 0, 0, 0.65); */
  z-index: 1;
}

.block-1__content {
  display: flex;
  align-items: center;
  z-index: 20;
  /* color: #fff; */
}

.slogan {
  font-size: 36px;
  color: var(--color-text);
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
}

.slogan-mini {
  margin: 10px 0 15px 0;
  color: var(--color-text);
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
}

.contacts-button {
  margin-top: 10px;
  display: inline-block;
  color: #0c9f7f;
  padding: 10px 15px;
  font-size: 20px;
  font-weight: 600;
  border: 1.5px solid #0c9f7f;
  background-color: transparent;
  transition: 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.contacts-button:hover {
  background-color: #0c9f7f;
  border-radius: 10px;
  color: #fff;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.big-logo {
  width: 600px;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.3));
}

.block-2 {
  width: 100%;
  margin-bottom: 75px;
}

.stat-blocks {
  margin: 0 auto;
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: rgba(127, 127, 127, 0.05);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  max-width: 200px;
  border-radius: 10px;
  padding: 15px 10px;
}

.stat-icon img {
  width: 125px;
}

.stat-int,
.stat-int span {
  font-size: 40px;
  font-weight: 600;
}

.stat-label {
  font-size: 20px;
}

.block-3 {
  width: 100%;
  margin-top: 75px;
  padding-bottom: 50px;
}

.our-values {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.our-values__left {
  width: 50%;
}

.our-values__main-text {
  max-width: 100%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.our-values__main-text h4 {
  margin: 0;
  max-width: 80%;
}

.our-values__main-text .line {
  margin-right: 10px;
  flex-grow: 1;
  width: 0;
  height: 2px;
  background-color: rgba(112, 185, 92, 0.5);
  max-width: 80%;
}

.our-values__content {
  width: 95%;
}

.our-values-item {
  margin: 15px 0;
  font-weight: 300;
  font-style: italic;
  font-size: 18px;
}

.our-values__right {
  width: 50%;
}

.our-values__right img {
  max-width: 100%;
  overflow: hidden;
  border-radius: 25px;
}

@media (max-width: 1280px) {
  .slogan {
    font-size: 32px;
  }

  .slogan-mini {
    margin: 10px 0 15px 0;
  }

  .big-logo {
    width: 400px;
  }

  .stat-block {
    width: 160px;
  }

  .stat-block img {
    width: 100px;
  }

  .stat-int,
  .stat-int span {
    font-size: 26px;
  }

  .stat-label {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .block-1 {
    height: 500px;
  }

  .slogan {
    font-size: 28px;
  }

  .big-logo {
    width: 350px;
  }

  .stat-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    justify-items: center;
    gap: 25px;
  }

  .stat-block {
    max-width: 160px;
  }

  .our-values__left {
    width: 60%;
  }

  .our-values__right {
    width: 40%;
  }
}

@media (max-width: 768px) {
  .slogan {
    font-size: 24px;
  }

  .slogan-mini {
    font-size: 14px;
  }

  .big-logo {
    width: 300px;
  }

  .our-values {
    flex-direction: column;
  }

  .our-values__main-text h3 {
    margin: 0 auto;
    text-align: center;
  }

  .our-values__left {
    width: 100%;
  }

  .our-values__main-text .line {
    display: none;
  }

  .our-values__right {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .block-1__content {
    flex-direction: column-reverse;
  }

  .block-1__left {
    margin-top: 30px;
    text-align: center;
  }

  .stat-blocks {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .stat-block {
    min-width: 250px;
    max-width: 300px;
    padding: 40px 50px;
  }

  .stat-icon img {
    width: 125px;
  }

  .stat-int,
  .stat-int span {
    font-size: 40px;
  }

  .stat-label {
    font-size: 20px;
  }

  .our-values {
    max-width: 95%;
    margin: 0 auto;
  }
}