.third-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 150px;
  background-image: url("../../images/allcontent/wavebg.png");
  background-repeat: no-repeat;
  background-position: center -480px;
  background-size: cover;
}
.third-block img {
  width: 100%;
}
@media screen and (max-width: 1600px) {
  .third-block {
      padding-bottom: 60px;
    }
}
@media screen and (max-width: 1360px) {
  .third-block {
    background-size: 100% 80%;
  }
}
@media screen and (max-width: 1045px) {
  .third-block {
    background-size: 100% 70%;
  }
}
@media screen and (max-width: 860px) {
  .third-block {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 780px) {
  .third-block {
    background-size: 100% 40%;
  }
}

.third-block__text {
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  padding-left: 18px;
  margin-bottom: 55px;
  border-left: 5px solid #f2cf30;
}
.third-block__text p > span {
  color: #f2cf30;
  font-weight: 600;
}
@media screen and (max-width: 1360px) {
  .third-block__text {
    font-size: 28px;
  }
}
@media screen and (max-width: 1045px) {
  .third-block__text {
    font-size: 24px;
  }
}
@media screen and (max-width: 780px) {
  .third-block__text {
    font-size: 22px;
  }
}
@media screen and (max-width: 560px) {
  .third-block__text {
    font-size: 20px;
  }
}

.third-block__cards {
  display: flex;
  gap: 20px;
  row-gap: 60px;
  justify-content: center;
  max-width: 1720px;
}
.third-block__cards div{
    display: flex;
    gap: 20px;
    justify-content: center;
}
@media screen and (max-width: 1440px) {
  .third-block__cards{
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1454px) {
  .third-block__cards {
    justify-content: center;
  }
}
@media screen and (max-width: 1000px) {
    
  .third-block__cards {
    row-gap: 40px;
  }
  .third-block__cards .third-block__card:nth-child(2n) p {
    order: 0;
  }
}
@media screen and (max-width: 756px){
    .third-block__cards div{
         flex-wrap: wrap;
    }
}
.third-block__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  font-size: calc(16px + 9 * (100vw - 320px) / 1600);
  font-weight: 500;
}
.third-block__card p,
.third-block__card img {
  max-width: 405px;
  font-size: calc(16px + 9 * (100vw - 320px) / 1600);
}
.third-block__card span {
  color: #f2cf30;
  font-weight: 600;
}

.third-block__card:nth-child(2n) p {
  order: 2;
}

.card__photo__container {
  position: relative;
}
.card__photo__container:hover p {
  opacity: 1;
}
.card__photo__container p {
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  background: var(--kpb_dark_opacity, rgba(12, 14, 17, 0.4));
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  font-size: 24px;
  font-weight: 500;
  padding: 30px 25px 25px 25px;
  transition: all ease-out 0.4s;
  
  font-size: calc(15px + 6 * (100vw - 320px) / 1600);
}
.card__photo__container.first p {
  padding-top: 14%;
}
@media screen and (max-width: 500px) {
  .card__photo__container.first p {
  padding-top: 50px;
  }
}

/*# sourceMappingURL=third-block__styles.css.map */