.hero {
  display: block;
  width: 100%;
  height: calc(100svh - 106px);
  min-height: 698px;
  background: url("../images/content/hero.webp") no-repeat center center/cover;
  padding: 54px 0px;
}

.hero h1,
.hero p {
  padding: 0;
  margin: 0;
}

.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  height: 100%;
}

.hero__info {
  font-weight: 400;
  font-size: 28px;
  max-width: 200px;
}

.hero__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}

.hero__content h1 {
  color: #fff;
  font-weight: 700;
  font-family: "Inria Serif", serif;
  font-size: 150px;
  line-height: 0.85;
}

.hero__content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.12;
  max-width: 390px;
}

.hero__content .btn {
  flex-shrink: 0;
}

.section-about {
  padding-top: 80px;
}

.section-about .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}

.about__text {
  max-width: 50%;
  display: flex;
  width: 55%;
  gap: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.about__text p {
  /*max-width: 570px;*/
  font-size: 16px;
  line-height: 1.13;
  font-weight: 400;
}

.about__text p,
.about__text span {
  margin: 0;
}

.about__links {
  width: 45%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about__links button {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  width: 100%;
  min-height: 140px;
  background: #f0e4d3;
  padding: 25px;
  border-radius: 15px;
  border: none;
  text-align: left;
  transition: 0.3s;
}

.about__links button:hover {
  background: #f1ddc1;
}

.about__links button:before {
  content: "";
  display: block;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 38px;
  height: 38px;
  border-radius: 38px;
  background: url("../images/icons/arrow-right.svg") no-repeat center
    center/cover;
}

.about__links button span {
  display: inline-flex;
  gap: 10px;
}

.about__links button span:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("../images/icons/pin.svg") no-repeat center center/cover;
}

.disconts {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 40px;
}

.discont {
  display: flex;
  justify-content: space-between;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  z-index: 1;
  flex-direction: row;
  background: #f0e4d3;
  width: calc((100% - 40px) / 2);
}

.discont__image {
  display: block;
  position: relative;
  width: 200px;
  height: 100%;
  order: 2;
  border-radius: 15px;
  overflow: hidden;
  flex-shrink: 0;
}

.discont__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discont__text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 30px;
  flex: 1;
  gap: 30px;
}

.discont__text b,
.discont__text p,
.discont__text h3,
.discont__text span {
  margin: 0;
}

.discont__text a,
.discont__text button {
  margin-top: auto;
}

.discont__text b {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
}

.discont__text h3 {
  font-size: 34px;
}

.discont__text p {
  color: #000;
  margin-top: -15px;
  font-size: 14px;
  line-height: 1.2;
  max-width: 300px;
}

.discont__text span {
  font-size: 12px;
}

@media (max-width: 1199px) {
  .hero__info {
    font-size: 18px;
    max-width: 220px;
  }
  .hero__content h1 {
    font-size: 70px;
  }
}

@media (max-width: 991px) {
  .hero__content {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
  }

  .section-about .container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
  }

  .about__text,
  .about__links {
    width: 100%;
    max-width: 100%;
  }

  .disconts {
    flex-direction: column;
    gap: 30px;
  }

  .discont {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero {
    height: 486px;
    min-height: 486px;
    background: url("../images/content/hero-mobil.webp") no-repeat center
      center/cover;
  }
  .hero .container {
    justify-content: center;
    gap: 16px;
  }
  .hero__info {
    font-size: 16px;
    line-height: 1.12;
    max-width: 196px;
  }
  .hero__content p {
    font-size: 14px;
    max-width: 255px;
  }
}

@media (max-width: 499px) {
  .discont {
    flex-direction: column;
  }

  .discont__image {
    width: 100%;
    height: auto;
  }

  .discont__image img {
    height: auto;
  }

  .discont__text {
    padding: 28px 20px;
    gap: 15px;
  }

  .discont__text p {
    margin-top: 0px;
  }

  .discont__text a,
  .discont__text button {
    margin-top: 20px;
  }
}
