* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
a, a:link, a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
aside, nav, footer, header, section, main {
  display: block;
}
h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

img, svg {
  max-width: 100%;
  height: auto;
}
html {
  scroll-behavior: smooth;
  background-color: #000;
}
html,
body {
  height: 100%;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}
body {
  background-color: #fff;
  color: #000;
  font-family: "Prosto One", sans-serif;
  min-width: 280px;
	overflow-x: hidden;
}
img {
  display: block;
}
a {
  color: #3939d7;
}

.page-main {
  display: flex;
  flex-direction: column;
  position: relative;
  height: calc(var(--vh) * 100);
}
.logo {
  position: relative;
  display: block;
  width: 100%;
  max-width: 339px;
}
.logo::after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 20.65%;
}
.logo__img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.under-construction {
  flex: 1 0 auto;
  position: relative;
  min-height: 100%; 
  width: 100vw;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("./../img/bg.jpg");
  overflow: hidden; 
}
.under-construction__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
  width: 100%;
  max-width: 699px;
  padding: 140px 20px 50px;
  margin: 0 auto;
}
.under-construction__title {
  font-family: "Prosto One", sans-serif;
  font-weight: 400;
  color: #000;
  font-size: 32px;
  text-align: center;
}
.under-construction__contacts {
  display: flex;
  align-items: center;
  font-family: "Prosto One", sans-serif;
  font-weight: 400;
  color: #000;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.under-construction__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.under-construction__contacts.link {
  color: #3939d7;
}
.under-construction__contacts.link:hover {
  color: #2d2da8;
}
.under-construction__contacts.ls-04 {
  letter-spacing: 0.04em;
}
@media (max-width: 1259px) {
  .under-construction__inner {
    padding: 100px 20px 50px;
    gap: 40px;
  }
  .under-construction__title {
    font-size: 30px;
  }
  .under-construction__contacts {
    display: block;
    font-size: 16px; 
  }
}