@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,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: "Raleway", 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: 1320px;
  margin: auto;
  padding: 0 20px;
  width: 100%;
}

.title {
  color: #1E1E1E;
  font-family: Raleway;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px; /* 116.667% */
}

.indent {
  margin-top: 108px;
}

.btn-hov {
  background: #284157;
  display: flex;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #FFF;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 120% */
  border-radius: 40px;
}

.btn-hov:hover {
  background: #0098ac;
}
.btn-hov:hover svg path {
    fill: #d0be5a;
}
.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  object-position: bottom;
}

@media (max-width: 1240px) {
  .title {
    font-size: 42px;
    line-height: 48px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 750px;
  }
  .title {
    font-size: 38px;
    line-height: 48px;
  }
  .indent {
    margin-top: 58px;
  }
  .btn-hov {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: none;
  }
  .title {
    font-size: 36px;
  }
}
