.btn-primary {
  border: none;
  padding: 16px 56px;
  background-color: #DF4133;
  color: #FFF;
  display: flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  position: relative;
  text-transform: uppercase;
  transition: 200ms ease;
  font-weight: 500;
  cursor: pointer;
  line-height: normal;
  text-align: center;
}
@media all and (max-width: 767px) {
  .btn-primary {
    padding: 16px 48px;
  }
}

.btn-secondary {
  border: none;
  padding: 16px 56px;
  background-color: #DF4133;
  color: #FFF;
  display: flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  position: relative;
  text-transform: uppercase;
  transition: 200ms ease;
  font-weight: 500;
  cursor: pointer;
  line-height: normal;
  text-align: center;
}
@media all and (max-width: 767px) {
  .btn-secondary {
    padding: 16px 48px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-style: normal;
  line-height: 1.5em;
  font-family: "Roboto", sans-serif;
  color: #000;
}

html {
  overflow-x: hidden;
}

body {
  width: 100%;
  height: 100%;
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  image-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
}

img {
  pointer-events: none;
}

a {
  text-decoration: none;
  transition: 200ms ease;
}

::-moz-selection {
  background: #DF4133;
}

::selection {
  background: #DF4133;
}

label {
  -webkit-user-select: none;
  user-select: none;
}

.container {
  max-width: 1256px;
  margin: 0 80px;
  display: flex;
  position: relative;
  width: 100%;
}
@media all and (max-width: 1200px) {
  .container {
    margin: 0 40px;
  }
}
@media all and (max-width: 767px) {
  .container {
    margin: 0 16px;
  }
}

span, a {
  vertical-align: middle;
  line-height: normal;
}

.fs-12 {
  font-size: 12px;
}
.fs-14 {
  font-size: 14px;
}
.fs-16 {
  font-size: 16px;
}
.fs-20 {
  font-size: 20px;
}
.fs-24 {
  font-size: 24px;
}
.fs-32 {
  font-size: 32px;
}
.fs-40 {
  font-size: 40px;
}
.fs-56 {
  font-size: 56px;
}
@media all and (max-width: 767px) {
  .fs-56 {
    font-size: 40px;
  }
}

.title {
  font-weight: 400;
  font-family: "Roboto Condensed", sans-serif;
  padding: 0 80px;
  line-height: 1.15;
}
.title.wide {
  padding: 0;
}
@media all and (max-width: 1200px) {
  .title {
    padding: 0 40px;
  }
}
@media all and (max-width: 767px) {
  .title {
    padding: 0 16px;
  }
}
.title * {
  font-family: inherit;
  line-height: 1.15;
}

header, main, footer {
  display: flex;
  justify-content: center;
  align-items: center;
}

main {
  flex-direction: column;
}

main.static {
  margin-top: 104px;
}

.content {
  padding: 40px 200px;
  position: relative;
  width: 100%;
}
@media all and (max-width: 1200px) {
  .content {
    padding: 40px 80px;
  }
  .content.wide {
    padding: 40px;
  }
}
@media all and (max-width: 767px) {
  .content {
    padding: 40px 16px;
  }
  .content.wide {
    padding: 40px 16px;
  }
}

.section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.lines {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.lines div {
  height: 100%;
  width: 1px;
  background-color: #EDEFF2;
}

.overlay {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  z-index: 999998;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}