body {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  background-color: #1B1B1B;
}

h1,
h2,
h3,
p,
ul,
li {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.h1 {
  font-weight: 900;
  font-size: 46px;
  line-height: 130%;
}

.h2 {
  font-weight: 900;
  font-size: 40px;
  line-height: 130%;
}

.regular {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
}

.upper {
  font-weight: 600;
  font-size: 12px;
  line-height: 150%;
  color: #969696;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.link {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #D66F50;
  position: relative;
}

.link::before {
  display: inline-block;
  position: absolute;
  top: 8px;
  left: -24px;
  content: ' ';
  height: 6px;
  width: 6px;
  border: 1px solid #D66F50;
  border-right: none;
  border-bottom: none;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  z-index: 3;
}

.link::after {
  display: inline-block;
  position: absolute;
  top: 8px;
  left: -16px;
  content: ' ';
  height: 6px;
  width: 6px;
  border: 1px solid #D66F50;
  border-right: none;
  border-bottom: none;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  z-index: 3;
}

b {
  font-weight: 800;
}

.article {
  color: #E8E8E8;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
}

.underlined {
  position: relative;
  display: inline-block;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 24px;
}

.underlined::after {
  content: '';
  width: 20px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.h3 {
  font-weight: 900;
  font-size: 20px;
  line-height: 130%;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1720px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 978px;
  }
}

.line {
  position: relative;
  display: inline-block;
  height: 1px;
  width: 150%;
  background-color: rgba(255, 255, 255, 0.2);
}

.line::after {
  content: '';
  width: 20px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}

main {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

main::after {
  content: "";
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  background-repeat: no-repeat;
  width: 1430px;
  height: 1430px;
  position: absolute;
  top: -542px;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

main::before {
  content: "";
  background-image: url(../img/grain.png);
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 12%;
}

.breadcrumbs {
  position: relative;
  color: #B8B8B8;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  margin-bottom: 24px;
  z-index: 5;
}

@media (max-width: 425px) {
  main::after {
    display: none;
  }

  main::before {
    display: none;
  }
}

/*# sourceMappingURL=general.css.map */