:root {
  --base-color: #444d60;
  --base-white-color: #fff;
  --base-color-tr: rgba(68, 77, 96, 0.1);
  --main-color: #ca9b64;
  --primary-color: #191850;
  --accent-color: #e0b17b;
  --background-color: #fafffe;
  --main-font: "Montserrat", sans-serif;
}
body {
  background-color: #fafafa;
  display: inline-block;
  position: relative;
}
html,
body {
  width: 100%;
}
.preloader {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(43, 43, 43, 0.9);
  z-index: 9999999;
}
.preloader img {
  width: 400px;
}
.preloader h4 {
  height: 3px;
}
.preloader-hidden {
  visibility: hidden;
  display: none;
}
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--main-font);
  transition: all 0.15s ease;
}
a {
  text-decoration: none;
  color: #000;
  white-space: pre;
  display: block;
}
button {
  cursor: pointer;
}
.wrapper {
  width: 100%;
  max-width: 1200px;
  padding-right: 35px !important;
  padding-left: 35px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  position: relative;
  --wrapperPadding: 70px;
  margin-bottom: 40px;
}
label {
  display: inline-block;
  margin-right: 10px; /* Регулируйте по вашему усмотрению */
  margin-bottom: 10px;
}
label span {
  display: block;
  margin-bottom: 3px;
}
input {
  padding: 10px 15px;
  transition: all ease 0.4s;
  border: 2px solid #ccc; /* Линия границы для ясной видимости */
  border-radius: 4px;
  background-color: #fff; /* Белый фон */
  color: #333; /* Цвет текста */
}
input:focus {
  outline: none;
  border-color: #e0b17b; /* Новый цвет границы при активации фокуса */
}
.nomarginbottom {
  margin-bottom: 0 !important;
}
.separator {
  width: 100%;
  height: 1px;
  background-color: #898989;
  margin-bottom: 50px;
}
.big {
  font-size: 50px;
  font-weight: 700;
}
main {
  margin-top: 80px;
  background-image: url(./assets/images/IMG_2347.JPEG);
  height: 900px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(
    180deg,
    rgba(68, 50, 24, 0.4) 0%,
    rgb(59, 43, 21) 100%
  );
  z-index: 0;
  backdrop-filter: blur(1px);
}
