.police_container {
  --color-text-title-police: #7661FC;
}

.app {
  --color-text-logo: #000;
}

/*_reset.scss*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

ul,
ol {
  list-style: none;
}

img, svg {
  display: block;
}

video {
  width: 100%;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
}

select {
  appearance: none;
  border: none;
  background: none;
}

input {
  appearance: none;
  background: none;
  border: none;
}

@font-face {
  font-family: "Inter";
  src: url("src/Views/fonts/Inter/Inter-Regular.woff2") format("woff2");
  src: url("src/Views/fonts/Inter/Inter-Regular.woff") format("woff");
  src: url("src/Views/fonts/Inter/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("src/Views/fonts/Montserrat/Montserrat.woff2") format("woff2");
  src: url("src/Views/fonts/Montserrat/Montserrat.woff") format("woff");
  src: url("src/Views/fonts/Montserrat/Montserrat.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat-Variable";
  src: url("src/Views/fonts/Montserrat/Montserrat-Variable.woff2") format("woff2");
  src: url("src/Views/fonts/Montserrat/Montserrat-Variable.woff") format("woff");
  src: url("src/Views/fonts/Montserrat/Montserrat-Variable.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Soyuz Grotesk";
  src: url("src/Views/fonts/Soyuz Grotesk/Soyuz Grotesk Bold.woff2") format("woff2");
  src: url("src/Views/fonts/Soyuz Grotesk/Soyuz Grotesk Bold.woff") format("woff");
  src: url("src/Views/fonts/Soyuz Grotesk/Soyuz Grotesk Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: Inter, Arial, sans-serif;
  font-style: 14px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}

body.lock {
  overflow: hidden;
}

.app {
  background-color: var(--bg-color-all);
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

header,
main,
footer {
  width: 100%;
}

section {
  width: 100%;
  padding-top: 60px;
}

section.main {
  padding-top: 0;
}

h2 {
  /* 22-28  320-1400 */
  font-size: clamp(1.375rem, 1.264rem + 0.56vw, 1.75rem);
  font-weight: 700;
  padding-bottom: 20px;
}

h3,
h4 {
  font-family: "Montserrat", sans-serif;
  /* 18-24  320-1400 */
  font-size: clamp(1.125rem, 1.014rem + 0.56vw, 1.5rem);
  font-weight: 600;
  margin-top: 0;
}

h6 {
  /* 14-16  320-1400 */
  font-size: clamp(0.875rem, 0.838rem + 0.19vw, 1rem);
  font-weight: 600;
}

ul {
  list-style: none;
  padding: 0;
}

.police_container {
  width: 100%;
  background: white;
  padding: 80px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.police_container_title {
  width: 100%;
  text-align: center;
  font-family: "Soyuz Grotesk";
  font-size: clamp(1.75rem, 1.157rem + 2.96vw, 3.75rem);
  color: var(--color-text-title-police);
}
.police_container_title .police_title_site {
  display: block;
}
.police_container .section {
  margin: 20px 0;
}
.police_container h2 {
  color: #333;
  padding-bottom: 5px;
}
.police_container p {
  margin-top: 15px;
}
.police_container a {
  color: #007bff;
  text-decoration: none;
}
.police_container a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .police_container {
    padding: 50px 15px;
  }
}

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