@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  width: 100%;
  min-width: 320px;
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  font-family: Inter, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.header {
  position: absolute;
  top: 93px;
  left: 50%;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  padding: 0 120px;
  transform: translate(-50%, -50%);
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 0 6px;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
.header__logo:hover {
  opacity: 0.8;
}
.header__logo h1 {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
}
.header__logo h1 b {
  font-weight: 500;
  color: #e4feff;
}
@media (max-width: 930px) {
  .header {
    padding: 0 80px;
  }
  .header__logo h1 {
    font-size: 20px;
  }
  .header__logo img {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 0 60px;
  }
}
@media (max-width: 576px) {
  .header {
    padding: 0 30px;
  }
  .header__logo h1 {
    font-size: 18px;
  }
  .header__logo img {
    width: 30px;
    height: 30px;
  }
}

.hero {
  display: flex;
  flex-direction: column;
  height: 781px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("./assets/hero.jpg");
  background-position: center;
  background-size: cover;
}
.hero__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1400px;
  margin: max(200px, 30vh) auto 0;
  padding: 0 120px;
}
.hero__title {
  max-width: 486px;
  font-size: 48px;
  font-weight: 400;
  color: #fff;
}
.hero__title span {
  font-weight: 300;
  color: #cbcbcb;
}
.hero__description {
  max-width: 531px;
  margin-top: 28px;
  font-size: 21px;
  font-weight: 300;
  color: #fff;
}
.hero__description b {
  font-weight: 500;
}
.hero__description em {
  color: #dfdfdf;
}
.hero__contacts {
  display: flex;
  align-items: center;
  gap: 0 30px;
  margin-top: 75px;
}
.hero__contacts__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 222px;
  padding: 12.5px 14px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  cursor: pointer;
  border-radius: 11px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  transition: 0.5s ease-in-out;
}
.hero__contacts__item:hover {
  border-radius: 9px;
  opacity: 0.8;
}
.hero__contacts__item.phone {
  color: #2f2828;
  background-color: rgba(236, 236, 236, 0.7490196078);
}
.hero__contacts__item.whatsapp {
  gap: 0 6px;
  color: #fff;
  background-color: rgba(36, 179, 77, 0.7882352941);
}
@media (max-width: 1200px) {
  .hero__title {
    font-size: 42px;
  }
  .hero__description {
    max-width: 511px;
    font-size: 20px;
  }
}
@media (max-width: 930px) {
  .hero {
    height: 600px;
  }
  .hero__container {
    margin: max(200px, 25vh) auto 0;
    padding: 0 80px;
  }
  .hero__title {
    max-width: 450px;
    font-size: 35px;
  }
  .hero__description {
    max-width: 451px;
    font-size: 18px;
  }
  .hero__contacts {
    gap: 0 20px;
    margin-top: 60px;
  }
  .hero__contacts__item {
    width: 202px;
    padding: 12.5px 14px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
  }
}
@media (max-width: 768px) {
  .hero__container {
    padding: 0 60px;
  }
}
@media (max-width: 576px) {
  .hero {
    height: 550px;
  }
  .hero__container {
    margin: max(150px, 20vh) auto 0;
    padding: 0 30px;
  }
  .hero__title {
    max-width: 380px;
    font-size: 30px;
  }
  .hero__description {
    max-width: 431px;
    font-size: 17px;
  }
  .hero__contacts {
    margin-top: 50px;
  }
  .hero__contacts__item {
    width: 180px;
    padding: 12.5px 14px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
  }
}
@media (max-width: 482px) {
  .hero {
    height: 500px;
  }
  .hero__contacts__item {
    width: 160px;
    padding: 12.5px 6px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
  }
}
@media (max-width: 410px) {
  .hero {
    height: 450px;
  }
  .hero__title {
    max-width: 300px;
    font-size: 25px;
  }
  .hero__description {
    max-width: 381px;
    font-size: 16px;
  }
  .hero__contacts {
    gap: 0 8px;
  }
  .hero__contacts__item {
    width: 140px;
    padding: 12.5px 3px;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
  }
  .hero__contacts__item.whatsapp img {
    width: 10px;
    height: 10px;
  }
}

.fix {
  display: flex;
  flex-direction: column;
  height: 973px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("./assets/fix.jpg");
  background-position: center;
  background-size: cover;
}
.fix__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 97px auto 0;
  padding: 0 120px;
}
.fix__img {
  border-radius: 38px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.fix__main {
  display: flex;
  flex-direction: column;
  padding: 28px 83px 53px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
  border-radius: 51px;
}
.fix__title {
  max-width: 385px;
  margin: 0 auto;
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.fix__title span:nth-child(1) {
  color: #cbcbcb;
}
.fix__title span:nth-child(2) {
  font-weight: 600;
  color: #a8e576;
}
.fix__list {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  width: 100%;
  max-width: 415px;
  margin: 40px auto 0;
  list-style: none;
}
.fix__list__item {
  display: flex;
  align-items: center;
  width: 100%;
  height: 54px;
  padding: 0 32px;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  border-radius: 10px;
  box-shadow: 5px 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.fix__list__item::before {
  display: block;
  width: 5px;
  height: 5px;
  margin-right: 13px;
  border-radius: 100%;
  content: "";
}
.fix__list__item span {
  font-weight: 300;
}
.fix__list__item:nth-child(even) {
  color: #191919;
  background-color: #bfbfbf;
}
.fix__list__item:nth-child(even)::before {
  background-color: #191919;
}
.fix__list__item:nth-child(odd) {
  color: #fff;
  background-color: #2a2a2a;
}
.fix__list__item:nth-child(odd)::before {
  background-color: #fff;
}
@media (max-width: 1400px) {
  .fix__img {
    width: 309px;
    height: 480px;
  }
}
@media (max-width: 1200px) {
  .fix__main {
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media (max-width: 1120px) {
  .fix__container {
    padding: 0 80px;
  }
  .fix__img {
    width: 259px;
    height: 380px;
  }
  .fix__title {
    max-width: 335px;
    font-size: 25px;
  }
  .fix__list {
    max-width: 380px;
  }
  .fix__list__item {
    font-size: 16px;
  }
}
@media (max-width: 930px) {
  .fix {
    height: 873px;
  }
  .fix__container {
    margin: auto;
    padding: 0 80px;
  }
  .fix__img {
    position: absolute;
    z-index: 1;
    width: 209px;
    height: 330px;
    opacity: 0.3;
  }
  .fix__main {
    z-index: 2;
    margin: 0 0 0 auto;
  }
  .fix__title {
    max-width: 305px;
    font-size: 23px;
  }
  .fix__list {
    gap: 10px 0;
    max-width: 336px;
    margin-top: 30px;
  }
  .fix__list__item {
    padding: 0 20px;
    font-size: 15px;
  }
}
@media (max-width: 640px) {
  .fix__container {
    padding: 0 30px;
  }
}
@media (max-width: 482px) {
  .fix {
    height: 803px;
  }
  .fix__main {
    padding-right: 20px;
    padding-left: 20px;
  }
  .fix__title {
    max-width: 275px;
    font-size: 21px;
  }
}
@media (max-width: 410px) {
  .fix {
    height: 773px;
  }
  .fix__title {
    max-width: 235px;
    font-size: 18px;
  }
  .fix__list {
    gap: 10px 0;
    max-width: 336px;
    margin-top: 30px;
  }
  .fix__list__item {
    padding: 0 12px;
    font-size: 13px;
  }
  .fix__list__item::before {
    margin-right: 8px;
  }
}

.advantages {
  display: flex;
  flex-direction: column;
  height: 948px;
  padding: 108px 25px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("./assets/advantages.jpg");
  background-position: center;
  background-size: cover;
}
.advantages__title {
  width: 100%;
  max-width: 634px;
  margin: 0 auto;
  padding: 22px 5px;
  font-size: 36px;
  font-weight: 300;
  color: white;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
}
.advantages__title b {
  font-weight: 400;
}
.advantages__list {
  position: relative;
}
.advantages__list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
.advantages__list__item h3 {
  font-size: 22px;
  font-weight: 300;
  color: #fff;
}
.advantages__list__item span {
  color: #bebebe;
}
.advantages__list__item:nth-child(1) {
  position: absolute;
  top: 40.68px;
  left: 12%;
}
.advantages__list__item:nth-child(2) {
  position: absolute;
  top: 130px;
  left: 35%;
}
.advantages__list__item:nth-child(3) {
  position: absolute;
  top: 245px;
  right: 12%;
}
.advantages__list__item:nth-child(3) h3 {
  max-width: 364px;
  padding: 18px;
  background-color: rgba(33, 33, 33, 0.5333333333);
  border-radius: 21px;
}
.advantages__list__item:nth-child(4) {
  position: absolute;
  top: 303px;
  left: 13%;
}
.advantages__list__item:nth-child(4) h3 {
  max-width: 268px;
  padding: 18px;
  background-color: rgba(33, 33, 33, 0.5333333333);
  border-radius: 21px;
}
.advantages__list__item:nth-child(5) {
  position: absolute;
  top: 470px;
  left: 32%;
}
.advantages__list__item:nth-child(5) h3 {
  max-width: 440px;
  text-align: center;
}
.advantages__list__item:nth-child(6) {
  position: absolute;
  top: 510px;
  right: 16%;
}
.advantages__list__item:nth-child(6) h3 {
  max-width: 225px;
  padding: 18px;
  background-color: rgba(33, 33, 33, 0.5333333333);
  border-radius: 21px;
}
@media (max-width: 1200px) {
  .advantages {
    height: 848px;
  }
  .advantages__list {
    display: flex;
    flex-direction: column;
    gap: 10px 0;
    margin: 50px auto 0;
  }
  .advantages__list__item {
    position: static !important;
    flex-direction: row;
    gap: 0 15px;
  }
  .advantages__list__item h3 {
    max-width: 500px !important;
    padding: 18px;
    text-align: left !important;
    background-color: rgba(33, 33, 33, 0.5333333333);
    border-radius: 10px !important;
  }
}
@media (max-width: 930px) {
  .advantages__title {
    max-width: -moz-fit-content;
    max-width: fit-content;
    padding: 22px 45px;
    font-size: 32px;
  }
  .advantages__list__item h3 {
    max-width: 450px !important;
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .advantages {
    height: -moz-fit-content;
    height: fit-content;
    padding: 60px 25px;
  }
  .advantages__title {
    padding: 22px 40px;
    font-size: 30px;
  }
  .advantages__list__item img {
    width: 50px;
    height: 50px;
  }
  .advantages__list__item h3 {
    max-width: 342px !important;
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .advantages__title {
    padding: 18px 30px;
    font-size: 27px;
  }
  .advantages__list__item {
    gap: 0 10px;
  }
}
@media (max-width: 576px) {
  .advantages__title {
    padding: 22px 35px;
    font-size: 24px;
  }
  .advantages__list__item img {
    width: 45px;
    height: 45px;
  }
  .advantages__list__item h3 {
    max-width: 302px !important;
    font-size: 16px;
  }
}
@media (max-width: 482px) {
  .advantages__title {
    padding: 22px 30px;
    font-size: 20px;
  }
  .advantages__list {
    margin-top: 20px;
  }
  .advantages__list__item {
    gap: 0 6px;
  }
  .advantages__list__item img {
    width: 40px;
    height: 40px;
  }
  .advantages__list__item h3 {
    max-width: 290px !important;
    font-size: 15px;
  }
}
@media (max-width: 410px) {
  .advantages__title {
    padding: 22px 25px;
    font-size: 18px;
  }
  .advantages__list {
    margin-top: 16px;
  }
  .advantages__list__item {
    gap: 0 4px;
  }
  .advantages__list__item img {
    width: 35px;
    height: 35px;
  }
  .advantages__list__item h3 {
    max-width: 270px !important;
    font-size: 14px;
  }
}

.final {
  display: flex;
  flex-direction: column;
  height: -moz-fit-content;
  height: fit-content;
  padding: 150px 39px 90px 121px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("./assets/final.jpg");
  background-position: center;
  background-size: cover;
}
.final__title {
  font-size: 34px;
  font-weight: 300;
  color: #fff;
}
.final__container {
  display: flex;
  align-items: center;
  gap: 0 72px;
  width: 100%;
}
.final__main {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  width: 100%;
  max-width: 670px;
  margin: 110px 0 0 -25px;
  list-style-type: none;
}
.final__main__item {
  padding: 26px 20px 40px;
  background-color: rgba(41, 41, 41, 0.6549019608);
}
.final__main__item p {
  font-size: 20px;
  font-weight: 300;
  color: #fff;
}
.final__main__item p b {
  font-weight: 500;
}
.final__odd {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px 0;
}
.final__contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 63px 0;
  padding: 40px 35px 43px;
  background-color: rgba(36, 36, 36, 0.768627451);
  border-radius: 47px;
}
.final__contacts__title {
  font-size: 27px;
  font-weight: 300;
  color: #fff;
}
.final__contacts__info {
  display: flex;
  align-items: center;
  gap: 0 23px;
}
.final__contacts__info a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 222px;
  padding: 12.5px 14px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  cursor: pointer;
  border-radius: 11px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  transition: 0.5s ease-in-out;
}
.final__contacts__info a:hover {
  border-radius: 9px;
  opacity: 0.8;
}
.final__contacts__info a.phone {
  color: #2f2828;
  background-color: rgba(236, 236, 236, 0.7490196078);
}
.final__contacts__info a.whatsapp {
  gap: 0 6px;
  color: #fff;
  background-color: rgba(36, 179, 77, 0.7882352941);
}
.final__sales {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
  max-width: 400px;
  padding: 18px 26px;
  list-style: none;
  background-color: rgba(217, 217, 217, 0.3921568627);
  border-radius: 18px;
}
.final__sales__item {
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  text-align: center;
}
.final__sales__item b {
  font-weight: 500;
}
@media (max-width: 1200px) {
  .final__container {
    flex-direction: column;
    align-items: start;
    gap: 60px 0;
  }
  .final__odd {
    flex-direction: row;
    justify-content: space-between;
    gap: 0 32px;
    width: 100%;
  }
  .final__contacts__info {
    flex-direction: column;
    gap: 10px 0;
  }
}
@media (max-width: 930px) {
  .final {
    padding: 100px 39px 90px 121px;
  }
  .final__main {
    margin-top: 65px;
  }
  .final__odd {
    flex-direction: column;
    align-items: start;
    gap: 20px 0;
  }
  .final__contacts {
    align-items: start;
    gap: 20px 0;
    width: -moz-fit-content;
    width: fit-content;
    padding: 20px 30px;
  }
  .final__contacts__info {
    flex-direction: row;
    gap: 0 20px;
  }
  .final__contacts__info a {
    width: -moz-fit-content;
    width: fit-content;
    padding: 12.5px 16px;
  }
}
@media (max-width: 640px) {
  .final {
    padding: 80px 39px 90px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url("./assets/final.jpg");
  }
  .final__title {
    font-size: 28px;
  }
  .final__container {
    gap: 35px 0;
  }
  .final__main {
    margin: 40px 0 0;
  }
  .final__main__item p {
    font-size: 18px;
  }
  .final__contacts {
    border-radius: 18px;
  }
  .final__contacts__title {
    font-size: 22px;
  }
  .final__contacts__info {
    display: flex;
    align-items: center;
    gap: 0 15px;
  }
  .final__contacts__info a {
    width: -moz-fit-content;
    width: fit-content;
    padding: 12.5px 14px;
    font-size: 14px;
  }
  .final__sales__item {
    font-size: 18px;
  }
}
@media (max-width: 482px) {
  .final__title {
    font-size: 22px;
  }
  .final__main__item p {
    font-size: 16px;
  }
  .final__contacts__title {
    font-size: 18px;
  }
  .final__contacts__info {
    display: flex;
    align-items: center;
    gap: 0 15px;
  }
  .final__contacts__info a {
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px 14px;
    font-size: 12px;
  }
  .final__sales__item {
    font-size: 16px;
    font-weight: 300;
  }
}
@media (max-width: 410px) {
  .final__main__item p {
    font-size: 14px;
  }
  .final__contacts__info {
    flex-direction: column;
    align-items: start;
    gap: 15px 0;
  }
  .final__contacts__info a {
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px 14px;
    font-size: 12px;
  }
}/*# sourceMappingURL=styles.css.map */