@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&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: "Inter", sans-serif;
  scroll-behavior: smooth;
  background: #fff;
  overflow-x: hidden;
  scroll-padding-top: 100px;
}

html.active {
  overflow: hidden;
}

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

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

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

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: 1690px;
  margin: auto;
  padding: 0 20px;
  width: 100%;
}

.title {
  color: #181818;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Inter;
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 128%; /* 61.44px */
}

.indent {
  margin-top: 100px;
}

.btn-hov {
  color: #FFF;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 50px;
  background: #DD2B1C;
  padding: 14px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

@media (max-width: 1440px) {
  .container {
    max-width: 1480px;
  }
  .title {
    font-size: 32px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 750px;
  }
  .title {
    font-size: 28px;
  }
  .indent {
    margin-top: 50px;
  }
  .btn-hov {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: none;
  }
  .title {
    font-size: 25px;
  }
}