@import url("https://fonts.googleapis.com/css2?family=Cuprum:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cuprum:ital,wght@0,400..700;1,400..700&family=Onest:wght@100..900&display=swap");
* {
  font-family: "Onest", sans-serif;
}

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

body {
  background: #F7F7F7;
  overflow-x: hidden;
}

html, body {
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}
html ::-webkit-scrollbar, body ::-webkit-scrollbar {
  width: 5px;
}
html ::-webkit-scrollbar-track, body ::-webkit-scrollbar-track {
  background: #F7F7F7;
}
html ::-webkit-scrollbar-thumb, body ::-webkit-scrollbar-thumb {
  background-color: #f1d2a7;
  border-radius: 20px;
}

body.hidden {
  overflow: hidden;
}

.mobile {
  display: none;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1000;
  user-select: none;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.popup.show {
  opacity: 1;
  user-select: auto;
  pointer-events: auto;
}
.popup.show .popup-wrapper {
  transform: translateY(0);
}

.popup-close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -20px;
  right: -20px;
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 3px 7px 0 rgba(87, 10, 10, 0.01), 0 13px 13px 0 rgba(87, 10, 10, 0.01), 0 29px 17px 0 rgba(87, 10, 10, 0), 0 51px 20px 0 rgba(87, 10, 10, 0), 0 80px 22px 0 rgba(87, 10, 10, 0);
}

.popup-wrapper {
  position: relative;
  max-width: 500px;
  width: 100%;
  background: #F7F7F7;
  padding: 40px;
  border-radius: 15px;
  transition: 0.5s ease-in-out;
  transform: translateY(100%);
}

.success {
  display: none;
}
.success .success-icon {
  text-align: center;
}
.success .success-text {
  text-align: center;
  margin-top: 10px;
}
.success .success-title {
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
  color: #612b05;
  text-align: center;
  font-family: "Cuprum", sans-serif;
  margin-bottom: 40px;
}

.form-title {
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
  color: #612b05;
  text-align: center;
  font-family: "Cuprum", sans-serif;
  margin-bottom: 40px;
}

.input-wrapper {
  height: 40px;
  width: 100%;
  margin-bottom: 20px;
}
.input-wrapper input {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  outline: none;
  padding: 0 20px;
  border-radius: 15px;
  border: 1px solid #612b05;
}

label {
  display: block;
  margin-bottom: 10px;
}
button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #612b05;
  border-radius: 60px;
  width: 100%;
  height: 50px;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  box-sizing: border-box;
  cursor: pointer;
  border: none;
  outline: none;
}

.header-wrapper {
  position: relative;
  max-width: 1100px;
  width: 100%;
  margin: 26px auto auto auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  color: #000;
  font-family: "Cuprum", sans-serif;
  transition: 0.3s ease-in-out;
}
.nav-link:before {
  position: absolute;
  top: 20px;
  content: "";
  width: 0;
  height: 2px;
  background: #612b05;
  transition: 0.3s ease-in-out;
}
.nav-link:hover {
  color: #612b05;
}
.nav-link:hover:before {
  width: 100%;
}

.phone {
  font-size: 24px;
  color: #d8dbb9;
  font-weight: 700;
  font-family: "Cuprum", sans-serif;
}

.contacts-line-header {
  display: flex;
  gap: 20px;
}

.section-container {
  max-width: 1100px;
  width: 100%;
  margin: auto;
}

h1 {
  font-weight: 700;
  font-size: 96px;
  text-transform: uppercase;
  color: #612b05;
  font-family: "Cuprum", sans-serif;
  margin: 0;
}

.sub-title {
  font-family: "Cuprum", sans-serif;
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
  color: #2c2c2c;
}

p {
  font-weight: 400;
  font-size: 16px;
  color: #000;
  line-height: 120%;
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #612b05;
  border-radius: 60px;
  width: 100%;
  height: 51px;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 100;
  transition: 0.3s ease-in-out;
}
.btn:hover {
  background: #f1d2a7;
  color: #000;
}

#screen1 {
  margin-top: 158px;
}
#screen1:before {
  position: absolute;
  top: 0;
  right: 300px;
  content: "";
  background: url("../img/screen1-lights.webp") no-repeat center;
  width: 1028px;
  height: 869px;
  z-index: -1;
}
#screen1 .btn {
  max-width: 267px;
}
#screen1 p {
  margin: 26px 0;
}

.screen1-right-side .bg {
  position: absolute;
  top: 0;
  right: 0;
}
.screen1-right-side .img {
  position: absolute;
  top: 100px;
  right: 0;
}

#screen2 {
  margin: 269px 0 160px 0;
  scroll-margin-top: 50px;
}
#screen2 .image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#screen2 .image:before {
  position: absolute;
  content: "";
  background: url("../img/screen2-lights.webp") no-repeat center;
  width: 783px;
  height: 712px;
  z-index: -1;
}
#screen2 .btn {
  max-width: 348px;
}

.flex-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.section-title {
  font-family: "Cuprum", sans-serif;
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
  color: #612b05;
  margin-bottom: 30px;
}

ul {
  margin: 30px 0;
}
ul li {
  font-size: 16px;
}

#screen3 {
  scroll-margin-top: 50px;
}

h2 {
  font-family: "Cuprum", sans-serif;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
  color: #2c2c2c;
  margin-top: 0;
}

.advantages-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.advantages {
  position: relative;
  max-width: 350px;
  width: 100%;
  box-sizing: border-box;
  margin-top: 60px;
}
.advantages .icon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: #D8DBB9;
  border-radius: 50%;
  z-index: 10;
}
.advantages .title {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  color: #000;
  background: #fff;
  box-shadow: 0 3px 7px 0 rgba(87, 10, 10, 0.01), 0 13px 13px 0 rgba(87, 10, 10, 0.01), 0 29px 17px 0 rgba(87, 10, 10, 0), 0 51px 20px 0 rgba(87, 10, 10, 0), 0 80px 22px 0 rgba(87, 10, 10, 0);
  border-radius: 15px;
  height: 132px;
  padding-bottom: 15px;
  box-sizing: border-box;
}

#screen4 {
  margin-top: 120px;
}
#screen4 h2 {
  text-align: center;
  margin-bottom: 60px;
}
#screen4 .image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#screen4 .image:before {
  position: absolute;
  content: "";
  background: url("../img/screen3-lights.webp") no-repeat center;
  width: 1505px;
  height: 1461px;
  z-index: -1;
}
#screen4 .image span {
  position: absolute;
  font-size: 32px;
  color: #612b05;
  font-family: "Cuprum", sans-serif;
}
#screen4 .w {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -50px;
}
#screen4 .w span {
  bottom: -45px;
}
#screen4 .l {
  position: absolute;
  top: 0;
  right: 120px;
}
#screen4 .l span {
  right: -30px;
  top: 60px;
}
#screen4 .h {
  position: absolute;
  bottom: 0;
  left: 120px;
}
#screen4 .h span {
  left: -75px;
  bottom: 70px;
}

#screen5 {
  position: relative;
  z-index: 10;
  margin: 260px 0 160px 0;
  scroll-margin-top: 50px;
}
#screen5 .btn {
  max-width: 450px;
  background: #f1d2a7;
  color: #612b05;
  margin-top: 40px;
  transition: 0.3s ease-in-out;
}
#screen5 .btn:hover {
  background: #fff;
  color: #000;
}

.background-block {
  background: url("../img/screen5-bg.webp");
  border-radius: 15px;
  padding: 50px 35px;
}
.background-block .title {
  font-family: "Cuprum", sans-serif;
  font-weight: 700;
  font-size: 56px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 40px;
}
.background-block p {
  max-width: 561px;
  width: 100%;
  font-weight: 400;
  font-size: 20px;
  color: #fff;
}

#screen6 {
  margin: 160px 0;
  scroll-margin-top: 50px;
}
#screen6 .section-container {
  position: relative;
}
#screen6 .section-container:before {
  position: absolute;
  top: -700px;
  content: "";
  background: url("../img/screen4-lights.webp") no-repeat center;
  width: 1505px;
  height: 1461px;
  z-index: -1;
}

.review {
  max-width: 253px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 30px;
}
.review-header .ava {
  width: 65px;
  height: 65px;
}
.review-header .name {
  font-family: "Cuprum", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #612b05;
}

.review-body {
  font-weight: 400;
  font-size: 14px;
  color: #000;
  margin-top: 12px;
}

.swiper-slide {
  max-width: 253px;
}

.slider-prev, .slider-next {
  position: absolute;
  top: 60%;
  cursor: pointer;
}

.slider-prev {
  left: -45px;
}

.slider-next {
  right: -45px;
}

.social {
  transition: 0.3s ease-in-out;
}
.social path, .social svg {
  transition: 0.3s ease-in-out;
}
.social:hover path {
  opacity: 0.7;
}

.phone {
  transition: 0.3s ease-in-out;
}
.phone:hover {
  opacity: 0.7;
}

#screen7 {
  scroll-margin-top: 50px;
}
#screen7 .btn {
  max-width: 303px;
  margin-top: 26px;
}

.contacts-block {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 77px;
}

.info {
  max-width: 270px;
  width: 100%;
}

.map {
  width: 100%;
  box-sizing: border-box;
  border-radius: 15px;
  overflow: hidden;
}

.contacts-line {
  display: flex;
  gap: 30px;
  align-items: center;
  white-space: nowrap;
  margin: 32px 0;
}
.contacts-line .phone {
  color: #612b05;
}

.mail {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 19px;
}
.mail:before {
  content: "";
  background: url("../img/mail.svg") no-repeat center;
  width: 25px;
  height: 25px;
}

.address {
  display: flex;
  gap: 7px;
}
.address:before {
  content: "";
  background: url("../img/loc.svg") no-repeat center;
  width: 25px;
  height: 25px;
}

.footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 115px;
  height: 62px;
  background: #612b05;
}

.copyright {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #fff;
}

@media screen and (max-width: 1880px) {
  .screen1-right-side .bg {
    width: 800px;
  }
  .screen1-right-side .img {
    right: -100px;
  }
}
@media screen and (max-width: 1600px) {
  .screen1-right-side .bg {
    width: 700px;
  }
  .screen1-right-side .img {
    max-width: 800px;
    right: -50px;
    top: 180px;
  }
  .screen1-right-side .img img {
    width: 100%;
  }
}
@media screen and (max-width: 1440px) {
  .screen1-right-side .bg {
    width: 650px;
  }
}
@media screen and (max-width: 1366px) {
  .screen1-right-side .bg {
    width: 600px;
  }
  .screen1-right-side .img {
    max-width: 750px;
    right: -50px;
    top: 200px;
  }
}
@media screen and (max-width: 1280px) {
  .screen1-right-side .bg {
    width: 550px;
  }
  .screen1-right-side .img {
    max-width: 700px;
    right: -80px;
    top: 250px;
  }
}
@media screen and (max-width: 1100px) {
  .header-wrapper {
    max-width: 900px;
  }
  .section-container {
    max-width: 900px;
  }
  nav {
    gap: 22px;
  }
  .logo {
    max-width: 100px;
    width: 100%;
  }
  .logo img {
    width: 100%;
  }
  h1 {
    font-size: 77px;
  }
  .sub-title {
    font-size: 24px;
  }
  .screen1-right-side .bg {
    width: 500px;
  }
  .screen1-right-side .img {
    max-width: 650px;
    right: -80px;
    top: 280px;
  }
  .section-title {
    font-size: 24px;
  }
  #screen4 .w {
    bottom: -50px;
  }
  #screen4 .w span {
    bottom: -45px;
  }
  #screen4 .l {
    top: 0;
    right: 30px;
  }
  #screen4 .l span {
    right: -30px;
    top: 60px;
  }
  #screen4 .h {
    bottom: 0;
    left: 40px;
  }
  #screen4 .h span {
    left: -75px;
    bottom: 70px;
  }
}
@media screen and (max-width: 768px) {
  .logo {
    max-width: 140px;
  }
  .header-wrapper {
    max-width: 90%;
  }
  .section-container {
    max-width: 95%;
  }
  nav {
    display: none;
  }
  h1 {
    font-size: 52px;
    text-align: center;
    color: #fff;
  }
  .sub-title {
    font-size: 18px;
    text-align: center;
    color: #fff;
  }
  #screen1 {
    margin-top: 70px;
  }
  #screen1 p {
    text-align: center;
  }
  #screen1 .btn {
    margin: auto;
  }
  p {
    font-size: 14px;
  }
  ul li {
    font-size: 14px;
  }
  .btn {
    font-size: 16px;
  }
  .flex-block {
    flex-direction: column;
    gap: 50px;
  }
  .advantages-grid {
    flex-direction: column;
  }
  .contacts-block {
    flex-direction: column;
  }
  img {
    width: 100%;
  }
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
  .screen1-right-side .bg {
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
  }
  .screen1-right-side .bg img {
    width: 100%;
  }
  .screen1-right-side .img {
    display: none;
  }
  #screen2 {
    margin: 50px 0 80px 0;
  }
  #screen2 .image {
    width: 100%;
  }
  #screen2 .image img {
    width: 100%;
  }
  #screen2 .btn {
    margin: auto;
  }
  h2 {
    text-align: center;
    font-size: 28px;
  }
  .advantages .icon img {
    width: 70%;
  }
  .background-block {
    padding: 15px;
  }
  .background-block .title {
    font-size: 32px;
  }
  .background-block p {
    font-size: 16px;
  }
  #screen5 {
    margin: 60px 0;
  }
  #screen5 .btn {
    text-align: center;
    font-size: 14px;
  }
  #screen6 {
    margin: 80px 0;
  }
  #screen7 .btn {
    margin: 20px auto;
  }
  .contacts-block {
    gap: 20px;
  }
  .footer-wrapper {
    margin-top: 80px;
  }
  #screen4 {
    margin: 80px 0;
  }
  #screen4 .w, #screen4 .l, #screen4 .h {
    display: none;
  }
  .sizes {
    max-width: 180px;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    margin: 30px auto 0 auto;
  }
  .sizes p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    margin: 0;
  }
  .sizes p:nth-child(1):before {
    content: "";
    background: url("../img/w.webp") no-repeat center/contain;
    width: 30px;
    height: 30px;
  }
  .sizes p:nth-child(2):before {
    content: "";
    background: url("../img/l.webp") no-repeat center/contain;
    width: 30px;
    height: 30px;
  }
  .sizes p:nth-child(3):before {
    content: "";
    background: url("../img/h.webp") no-repeat center/contain;
    width: 30px;
    height: 30px;
  }
  .section-title {
    text-align: center;
  }
  #screen2 .image:before {
    display: none;
  }
  #screen1:before {
    background: url("../img/screen3-lights.webp") no-repeat center;
    top: 500px;
    right: -200px;
  }
  .popup-wrapper {
    margin: 20px;
    padding: 40px 20px;
  }
  .form-title {
    font-size: 28px;
  }
  .success-title {
    font-size: 28px;
  }
  .burger {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 24px;
    height: 24px;
  }
  .burger span {
    position: absolute;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: 0.3s ease-in-out;
  }
  .burger span:nth-child(1) {
    top: 0;
  }
  .burger span:nth-child(2) {
    top: 8px;
  }
  .burger span:nth-child(3) {
    top: 16px;
  }
  .burger.open span:nth-child(1) {
    top: 0;
    transform: rotate(45deg);
  }
  .burger.open span:nth-child(2) {
    transform: rotate(-45deg);
    top: 0;
  }
  .burger.open span:nth-child(3) {
    top: 0;
    width: 1px;
  }
  .mobile-menu {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.8);
    padding-top: 40px;
    transform: translateX(100%);
    transition: 0.3s ease-in-out;
  }
  .mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }
  .mobile-menu nav .nav-link {
    color: #fff;
    font-size: 24px;
  }
  .mobile-menu.open {
    transform: translateX(0);
  }
}
@media screen and (max-width: 415px) {
  #screen1 {
    margin-top: 60px;
  }
}
@media screen and (max-width: 395px) {
  #screen1 {
    margin-top: 40px;
  }
}
@media screen and (max-width: 370px) {
  #screen1 {
    margin-top: 25px;
  }
}

/*# sourceMappingURL=style.css.map */
