@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@font-face {
  font-family: "PF Din Text Comp Pro";
  src: url("../fonts/PFDinTextCompPro-Bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "PF Din Text Comp Pro";
  src: url("../fonts/PFDinTextCompPro-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "PF Din Text Comp Pro";
  src: url("../fonts/PFDinTextCompPro-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "PF Din Text Comp Pro";
  src: url("../fonts/PFDinTextCompPro-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  padding: 10px;
  width: 100%;
  max-width: 1255px;
  margin: 0 auto;
  position: relative;
}

.btn {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: #000;
  padding: 26px 34px;
  color: #fff;
  color: #FFF;
  text-align: center;
  font-family: "PF Din Text Comp Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  border: none;
  outline: none;
  cursor: pointer;
  text-transform: uppercase;
}

.hero {
  margin-top: 50px;
}
.hero .theHeroTexts p, .hero .theHeroTextsMobile p {
  color: #000;
  font-family: "PF Din Text Comp Pro";
  font-size: 111px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1vw;
}
.hero .theHeroTexts p img, .hero .theHeroTextsMobile p img {
  height: 1.2em;
  max-height: 87px;
  width: auto;
  max-width: 387px;
  vertical-align: middle;
}
.hero .theHeroTextsMobile {
  display: none;
}
.hero__bottom {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 28px;
  margin-top: 25px;
}
.hero__bottom p {
  flex: 0.65;
  color: #000;
  font-family: "PF Din Text Comp Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 122.222% */
  text-transform: uppercase;
}

.section__title {
  color: #000;
  text-align: justify;
  font-family: "PF Din Text Comp Pro";
  font-size: 6vw;
  font-style: normal;
  font-weight: 400;
  line-height: 107px; /* 92.241% */
  text-transform: uppercase;
  margin-bottom: 85px;
}

.main {
  margin-top: 150px;
}

.proposals {
  margin-bottom: 200px;
}
.proposals__item {
  margin: 40px 0;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #e5e5e5;
  height: 270px;
  border-radius: 40px;
  transition: all 0.3s ease-in-out;
  padding: 25px 40px;
}
.proposals__item .digit__container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: end;
  position: relative;
}
.proposals__item .digit__container p {
  position: absolute;
  bottom: -360px;
  color: #000;
  font-family: "PF Din Text Comp Pro";
  font-size: clamp(430px, 15vw, 550px);
  font-style: normal;
  font-weight: 300;
  line-height: 1; /* Можно использовать относительную высоту строки */
  text-transform: uppercase;
}
.proposals__item .list__container {
  flex: 1;
}
.proposals__item .list__container .proposals__item_ttl {
  color: #000;
  font-family: "PF Din Text Comp Pro";
  font-size: clamp(30px, 5vw, 60px);
  font-style: normal;
  font-weight: 300;
  line-height: 1.1;
  text-transform: uppercase;
  text-wrap: wrap;
}
.proposals__item .list__container ul {
  margin-top: 13px;
  margin-left: 50px;
}
.proposals__item .list__container ul li {
  color: #000;
  font-family: "PF Din Text Comp Pro";
  font-size: clamp(12px, 2vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}
.proposals__item:hover {
  background-color: #000;
  transition: 0.3s;
}
.proposals__item:hover p {
  color: #fff;
}
.proposals__item:hover .proposals__item_ttl {
  color: #fff;
}
.proposals__item:hover ul li {
  color: #fff;
}

.advantages {
  margin-bottom: 200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.advantages__item {
  gap: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  border-radius: 40px;
  height: 270px;
  padding: 10px;
}
.advantages__item img {
  width: 24px;
  height: 24px;
}
.advantages__item_ttl {
  color: #000;
  text-align: center;
  font-family: "PF Din Text Comp Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 22px */
  text-transform: uppercase;
}
.advantages__item_txt {
  color: #000;
  font-family: "PF Din Text Comp Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  text-transform: uppercase;
  text-align: center;
}

.examples {
  margin-bottom: 200px;
}
.examples__item_ttl {
  color: #000;
  -webkit-text-stroke-width: 1;
  -webkit-text-stroke-color: #000;
  font-family: "PF Din Text Comp Pro";
  font-size: 60px;
  font-style: normal;
  font-weight: 300;
  line-height: 55px; /* 91.667% */
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 40px;
}
.examples__item_txt {
  color: #000;
  font-family: "PF Din Text Comp Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 122.222% */
  text-transform: uppercase;
  margin-bottom: 30px;
}

.line {
  border-color: #000;
  border-bottom: none;
}

.importance {
  display: flex;
  justify-content: center;
  align-items: center;
}
.importance .circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(325px, 50vw, 946px);
  height: clamp(325px, 50vw, 946px);
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.importance .circle2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.5);
}
.importance .circle3 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 88%;
  height: 88%;
  border-radius: 50%;
  border: 1px solid #000;
}
.importance .circle3__ttl {
  color: #000;
  text-align: center;
  font-family: "PF Din Text Comp Pro";
  font-size: clamp(14px, 5vw, 116px);
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
}
.importance .circle3__txt {
  color: #000;
  text-align: center;
  font-family: "PF Din Text Comp Pro";
  font-size: clamp(12px, 1.5vw, 18px);
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  width: 100%;
  max-width: 70%;
}

.slogan__text {
  color: #000;
  text-align: justify;
  font-family: "PF Din Text Comp Pro";
  font-size: 164px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.slogan__subtext {
  color: #000;
  text-align: right;
  font-family: "PF Din Text Comp Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 122.222% */
  text-transform: uppercase;
  margin-bottom: 28px;
}
.slogan__container {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
}
.slogan__container button {
  width: -moz-fit-content;
  width: fit-content;
}

.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 66px 0;
  flex-wrap: wrap;
  gap: 30px;
}
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__container .copyright {
  color: #909090;
  font-family: "PF Din Text Comp Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}
.footer__contacts {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__contact {
  color: #000;
  font-family: "PF Din Text Comp Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__contact:hover {
  color: #555;
}
.footer__menu {
  display: flex;
  list-style: none;
}
.footer__menu li, .footer__menu li > a {
  color: #909090;
  text-align: right;
  font-family: "PF Din Text Comp Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  text-decoration: none;
  padding: 0 5px;
}
.footer__menu li {
  border-right: 1px solid #909090;
}
.footer__menu li:last-child {
  border: none;
}

@media screen and (max-width: 1290px) {
  .theHeroTexts p {
    font-size: 90px !important;
  }
}
@media screen and (max-width: 1100px) {
  .theHeroTexts p {
    font-size: 80px !important;
  }
  .theHeroTexts p img {
    max-height: 60px !important;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 910px) {
  .theHeroTexts p {
    font-size: 60px !important;
  }
  .theHeroTexts p img {
    max-height: 60px !important;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  .theHeroTexts p {
    font-size: 50px !important;
  }
  .theHeroTexts p img {
    max-height: 50px !important;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 620px) {
  .theHeroTexts p {
    font-size: 40px !important;
  }
  .theHeroTexts p img {
    max-height: 50px !important;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 900px) {
  .theHeroTextsMobile {
    flex-direction: column;
  }
  .theHeroTextsMobile p {
    text-wrap: nowrap !important;
  }
  .theHeroTextsMobile img {
    max-width: 150px !important;
    max-height: 50px !important;
  }
  .section__title {
    line-height: normal !important;
  }
  .hero__bottom {
    flex-direction: column-reverse;
  }
  .slogan__text {
    font-size: 13vw !important;
  }
}
@media screen and (max-width: 550px) {
  .theHeroTexts p {
    font-size: 40px !important;
  }
  .theHeroTexts p img {
    max-height: 30px !important;
    margin-bottom: 5px;
  }
  .main {
    margin-top: 50px;
  }
  .theHeroTextsMobile p {
    font-size: 26px !important;
  }
  .section__title {
    font-size: 8vw;
    line-height: normal !important;
    margin-bottom: 20px;
  }
  .proposals__item {
    flex-direction: column-reverse;
    height: auto;
  }
  .proposals__item .list__container {
    margin-bottom: 200px;
  }
  .proposals__item .proposals__item_digit {
    font-size: 420px !important;
    bottom: -230px !important;
  }
  .advantages {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }
  .slogan__text {
    font-size: 12vw !important;
  }
  .footer__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 40px 10px;
  }
  .footer__left {
    width: 100%;
    align-items: center;
  }
  .footer__contacts {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .footer__menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .footer__menu li {
    border-right: none;
    text-align: center;
  }
}
@media screen and (max-width: 460px) {
  .theHeroTexts p {
    font-size: 30px !important;
  }
  .theHeroTexts p img {
    max-height: 50px !important;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 410px) {
  .theHeroTexts p {
    font-size: 33px !important;
  }
  .theHeroTexts p img {
    max-height: 23px !important;
    margin-bottom: 3px;
  }
}/*# sourceMappingURL=subPage.css.map */