@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-family: "Raleway", system-ui, sans-serif;
  --fs-slogan-bold-xl: 42px;
  --fs-slogan-regular-xl: 42px;
  --fs-slogan-bold-l: 36px;
  --fs-slogan-regular-l: 36px;
  --fs-header-l: 30px;
  --fs-header-m: 28px;
  --fs-header-s: 24px;
  --fs-header-xs: 20px;
  --fs-label-xl: 20px;
  --fs-label-l: 18px;
  --fs-label-m: 16px;
  --fs-label-s: 14px;
  --fs-medium-l: 18px;
  --fs-medium-m: 16px;
  --fs-medium-s: 14px;
  --fs-text-l: 18px;
  --fs-text-m: 16px;
  --fs-text-s: 14px;
  --lh-slogan: 1.3;
  --weight-bold: 700;
  --weight-semibold: 600;
  --weight-medium: 500;
  --weight-regular: 400;
  --color-white: rgba(255, 255, 255);
  --color-black: rgba(2, 11, 8);
  --color-green: rgba(4, 80, 54);
  --color-green-dark: rgba(0, 62, 39, 1);
  --color-mustang: rgba(165, 125, 53);
  --color-gray-1: rgba(242, 243, 245);
  --color-gray-2: rgba(192, 195, 202);
  --color-gradient-1: linear-gradient(rgba(4, 11, 17, 0), rgba(4, 11, 17));
  --color-gradient-2: linear-gradient(rgba(2, 11, 8, 0), rgba(2, 11, 8));
  --color-stroke-1: rgba(238, 238, 238);
  --color-stroke-2: rgba(192, 195, 202, 0.8) ;
}

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

html,
body {
  min-height: 100dvh;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-black);
  background-color: var(--color-white);
  overflow-x: hidden;
  font-variant-numeric: tabular-nums lining-nums;
  display: flex;
  flex-direction: column;
}

main {
  display: flex;
  flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 400;
}

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

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

li {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

footer {
  margin-top: auto;
}

video {
  aspect-ratio: 16/9;
  width: 500px;
}

.contacts-form-text {
  max-width: 540px;
}/*# sourceMappingURL=style.css.map */