@charset "UTF-8";
@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
:root {
  --bs-font-family: "Inter", sans-serif;
  --bs-font-size: 16px;
  --bs-font-weight: 400;
  --bs-line-height: 1;
  --bs-font-color: #222;
  --bs-transition: 0.3s ease-in-out;
  --bs-radius: 10px;
  --primary-color: #131313;
  --primary-hover-color: #2d2d2d;
  --secondary-color: #ff4040;
  --white-color: #fff;
  --black-color: #131313;
  --bs-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1), 0px 8px 3px rgba(0, 0, 0, 0.1);
  --hover-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1), 0 0 10px 0 rgba(0, 0, 0, 0.1), 0 0 15px 0 rgba(0, 0, 0, 0.1);
}

/** Обнуление */
* {
  margin: 0;
  border: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
*, *::before, *::after {
  box-sizing: border-box;
}
*:focus, *:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html {
  scroll-behavior: smooth;
}
html.lock {
  touch-action: none;
  overflow: hidden;
}
html.lock [data-lp] {
  padding-inline-end: var(--bh-scrollbar-width, 1rem);
}
html.lock .wrapper {
  margin-inline-end: var(--bh-scrollbar-width, 1rem);
}

html,
body {
  inline-size: 100%;
  block-size: 100%;
  min-inline-size: 320px;
}

body {
  overscroll-behavior: none;
  line-height: 1;
  text-rendering: optimizeLegibility;
  text-size-adjust: 100%;
  font-family: var(--bs-font-family), sans-serif;
  font-size: 16px;
  font-weight: 400;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

input[type=number] {
  appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  appearance: none;
}

button {
  color: inherit;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
}
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

a {
  user-select: none;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:focus, a:active {
  outline: none;
}
a:visited {
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

sup {
  color: inherit;
}

*::-webkit-scrollbar {
  inline-size: 0.5rem;
  background-color: var(--white-color);
}
*::-webkit-scrollbar-track {
  border-radius: 0.25rem;
  box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.2);
  background: #eee;
}
*::-webkit-scrollbar-thumb {
  border-radius: 0.25rem;
  border: 0 none #fff;
  background-color: var(--primary-color);
}
@media (any-hover: hover) {
  *::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-hover-color);
  }
}

@keyframes show-header {
  0% {
    inset-block-start: -100%;
  }
  100% {
    inset-block-start: 0;
  }
}
@keyframes fade-up-big {
  0% {
    opacity: 0;
    transform: translateY(1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(359deg);
  }
}
/*
* (i) Стили будут применяться ко
* всем классам содержащим *__container
* Например header__container, main__container и т.д.
*/
[class*=__container] {
  margin-inline: auto;
  max-inline-size: 74.375rem;
  padding-inline: 0.9375rem;
}

.ibg {
  position: relative;
}
.ibg img {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  object-fit: cover;
  block-size: 100%;
  inline-size: 100%;
}
.ibg_contain img {
  object-fit: contain;
}

.wrapper {
  display: flex;
  min-block-size: 100%;
  overflow: hidden;
  flex-direction: column;
}

.page {
  position: relative;
  flex: 1 1 auto;
}
.page [data-observ] {
  pointer-events: none;
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  block-size: 0.125rem;
  inline-size: 100%;
  background: transparent;
}
.page_start {
  padding-block-start: 6.25rem;
}

h1 {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/bg.jpg);
  background-repeat: no-repiat;
  background-size: cover;
  min-height: 100vh;
}

.message {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  padding: 1.5rem 3rem;
  border-radius: 1rem;
  width: 600px;
  max-width: 100%;
}
.message img {
  width: 16rem;
  margin-bottom: 3rem;
}
.message p {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.phone {
  font-size: 1.5rem;
  font-weight: 600;
  color: black;
}

.social {
  font-size: 1.25rem;
  color: #ad660f;
  font-weight: 600;
}

small {
  margin-top: 1.5rem;
  color: #6e6e6e;
}
/*# sourceMappingURL=main.min.css.map */
