:root {
  --color-black: #000;
  --color-white: #fff;
}
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}
.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: red solid 2px;
  outline-offset: 2px;
}
.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}
html {
  box-sizing: border-box;
}
*,
::after,
::before {
  box-sizing: inherit;
}
body {
  font-family: Inter, sans-serif;
  background-color: #000;
  background-image: url(../img/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: #fff;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
.site-container {
  overflow: hidden;
}
.btn-reset {
  border: none;
  padding: 0;
  background: 0 0;
  cursor: pointer;
}
.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}
.container {
  margin: 0 auto;
  width: 1140px;
}
@media screen and (max-width: 1200px) {
  .container {
    width: 932px;
  }
}
@media screen and (max-width: 991px) {
  .container {
    width: 728px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    width: calc(100% - 60px);
  }
}
@media screen and (max-width: 400px) {
  .container {
    width: calc(100% - 40px);
  }
}
.js-focus-visible :focus:not(.focus-visible) {
  outline: 0;
}
.hero {
  padding: 400px 0 370px;
}
@media screen and (max-width: 1660px) {
  .hero {
    padding: 300px 0 370px;
  }
}
@media screen and (max-width: 991px) {
  .hero {
    padding: 300px 0 250px;
  }
}
.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 68px;
}
.hero__title {
  font-size: 28px;
  line-height: 37px;
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 5px;
}
.steps {
  padding-bottom: 300px;
}
.steps-item {
  padding-top: 150px;
  border-top: 1px solid #fff;
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 98px;
}
@media screen and (max-width: 1660px) {
  .steps-item {
    gap: 70px;
  }
}
.steps-item:not(:last-child) {
  margin-bottom: 150px;
}
@media screen and (max-width: 1200px) {
  .steps-item {
    gap: 40px;
    padding-top: 100px;
  }
  .steps-item:not(:last-child) {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 600px) {
  .steps-item {
    grid-template-columns: 1fr;
    padding-top: 80px;
  }
  .steps-item:not(:last-child) {
    margin-bottom: 80px;
  }
}
.steps-item__image {
  width: 200px;
  height: 200px;
}
.steps-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.steps-item__title {
  font-size: 40px;
  line-height: 78px;
  font-weight: 500;
  text-transform: uppercase;
}
@media screen and (max-width: 1200px) {
  .steps-item__title {
    font-size: 36px;
    line-height: 70px;
  }
}
@media screen and (max-width: 991px) {
  .steps {
    padding-bottom: 200px;
  }
  .steps-item__title {
    font-size: 26px;
    line-height: 50px;
  }
}
.steps-item__desc {
  font-size: 40px;
  line-height: 78px;
  font-weight: 300;
  max-width: 781px;
}
.footer {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 20px;
}
.footer__container {
  border-top: 1px solid #fff;
  padding: 30px 0 134px;
}
@media screen and (min-width: 1700px) {
  .footer__container {
    width: 1640px;
    margin: 0 auto;
  }
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 372px);
  gap: 30px;
  margin-bottom: 150px;
}
@media screen and (max-width: 1200px) {
  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 991px) {
  .footer-nav {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 100px;
  }
}
.footer-nav__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-nav__title {
  font-size: 22px;
  line-height: 40px;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .footer-nav {
    grid-template-columns: 1fr;
  }
  .footer-nav__title {
    font-size: 20px;
    line-height: 36px;
  }
}
.footer-nav__info {
  font-size: 20px;
  line-height: 36px;
  font-weight: 400;
}
.footer-nav__link {
  text-decoration: underline;
}
.footer-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 38px;
}
@media screen and (max-width: 991px) {
  .footer-items {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-left {
    margin-bottom: 20px;
  }
}
.footer-rights:not(:last-child) {
  margin-bottom: 38px;
}
