@import url("https://fonts.googleapis.com/css2?family=Commissioner:wght@100..900&family=Unbounded:wght@200..900&display=swap");
@font-face {
  font-family: "Beikho";
  font-weight: 400;
  src: url("../font/Beikho.otf") format("opentype");
  font-display: swap;
}
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a {
  transition: 0.3s;
}

a:focus,
a:active {
  outline: none;
}

nav,
header,
footer {
  display: block;
}

html,
body {
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  color: #4C4C4C;
  font-family: "Commissioner", "Beikho", sans-serif;
  scroll-behavior: smooth;
  background: #fff;
  overflow-x: hidden;
  scroll-padding-top: 100px;
  /* touch-action: none; */
}

html.active {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
  transition: 0.3s;
  background: transparent;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.container {
  max-width: 1350px;
  margin: auto;
  padding: 0 20px;
  width: 100%;
}

.title {
  font-family: "Beikho";
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  line-height: 50px;
  /* 100% */
}

.indent {
  margin-top: 100px;
}

.btn-hov {
  border-radius: 8px;
  background: #5D101E;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  text-align: center;
  font-family: Commissioner;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  padding: 16px 22px;
  /* 122.222% */
}

.btn-hov:hover {
  background: #D2A751;
}

.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1240px) {
  .title {
    font-size: 40px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 750px;
  }
  .title {
    font-size: 38px;
  }
  .indent {
    margin-top: 50px;
  }
  .btn-hov {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: none;
  }
  .title {
    font-size: 35px;
  }
}

/* Стили для уведомлений заявок */
.application-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  padding: 15px 20px;
  border-radius: 5px;
  color: white;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  max-width: 400px;
  animation: slideIn 0.3s ease-out;
}

.application-notification--success {
  background-color: #10b981;
}

.application-notification--error {
  background-color: #ef4444;
}

.application-notification--info {
  background-color: #3b82f6;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.notification-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notification-close {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  margin-left: 15px;
  padding: 0;
  line-height: 1;
}

.notification-close:hover {
  opacity: 0.8;
}

/* Стили для уведомлений заявок */
.application-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  padding: 15px 20px;
  border-radius: 5px;
  color: white;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  max-width: 400px;
  animation: slideIn 0.3s ease-out;
}

.application-notification--success {
  background-color: #10b981;
}

.application-notification--error {
  background-color: #ef4444;
}

.application-notification--info {
  background-color: #3b82f6;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.notification-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notification-close {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  margin-left: 15px;
  padding: 0;
  line-height: 1;
}

.notification-close:hover {
  opacity: 0.8;
}

.validation-error {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
  margin-bottom: 10px;
}
