:root {
  --content-width: 1320px;
  --container-offset: 20px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
  padding: 0;
}

body {
  padding: 0;
  margin: 0;
  background-color: var(--black);
  font-family: var(--font-inter);
  overflow-x: hidden;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}


.preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #0d0d0d;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__right .btn {
  min-width: 186px;
  line-height: 120%;
}

header section.block-1 nav .container {
  width: unset;
}

@media (max-width: 1024px) {
  .header__right {
    flex: 1 0 0;
    margin-left: 20px;
  }
}

@media (max-width: 576px) {
  .header__right .btn {
    padding: 10px 20px;
    min-width: 160px;
    max-width: 100%;
  }
}

.btn {
  font-family: inherit;
  padding: 11.5px 63px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: inherit;
}

.btn--yellow {
  padding: 12px 20px;
  font-family: var(--font-inter);
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
  color: #191919;
  min-width: 250px;
  background-color: #E6F114;
  border-radius: 10px;
  display: inline-block;
  border: 1px solid #000;
}

@media (hover: hover) {
  .btn--yellow:hover {
    background-color: #B8C110;
    border-color: #080808;
  }
}

.btn--yellow:active {
  border-color: #E6F114;
  background-color: #2E3004;
  color: #fff;
}

@media (max-width: 576px) {
  .btn--yellow {
    font-size: 16px;
  }
}