:root {
  --main: #0d1016;
  --text: #fff;
  --border: #1b1f28;
  --color-primary: #ff2400;
  --radius: 10px;
  --link: #00cfa6;
  --banner: linear-gradient(110.74deg,#fff6,#fff0);
  --table: #232834;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  position: relative;
  background: var(--main);
  font-family: "Roboto", sans-serif;
}

body.error {
  background: var(--error);
}

a {
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  text-decoration: underline;
}

input, button {
  box-shadow: none;
  font-family: "Roboto", sans-serif;
}

input {
  outline: none;
}

h1 {
  color: var(--text);
}

h2, h3, h4, h5, h6 {
  color: var(--text);
}

p, span, li, a {
  color: var(--text);
}

button {
  cursor: pointer;
  background: transparent;
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Table content */
.table-content {
  max-width: 100%;
  overflow-x: auto;
}

.table-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.table-content table td {
  text-align: center;
  padding: 10px;
  color: var(--text);
  font-size: 16px;
}

.table-content table tr:nth-child(2n) {
  background: var(--color-secondary);
}

.table-content table tr:nth-child(2n) td {
  color: var(--main);
}

a {
  text-decoration: none;
}

@font-face {
  font-style: normal;
  font-family: "Roboto";
  font-weight: 400;
  src: url(fonts/Roboto-Regular.ttf);
  font-display: swap;
}
@font-face {
  font-style: normal;
  font-family: "Roboto";
  font-weight: 500;
  src: url(fonts/Roboto-Medium.ttf);
  font-display: swap;
}
@font-face {
  font-style: normal;
  font-family: "Roboto";
  font-weight: 700;
  src: url(fonts/Roboto-Bold.ttf);
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  padding: 15px 0;
}
@media (min-width: 960px) {
  h1, h2, h3, h4, h5, h6 {
    padding: 20px 0;
  }
}

p, span, li, a {
  font-size: 16px;
  line-height: 1.4;
}
@media (min-width: 960px) {
  p, span, li, a {
    font-size: 18px;
    line-height: 30px;
  }
}

/* Header */
.header {
  padding: 8px 10px;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  background: var(--main);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 960px) {
  .header {
    padding: 10px 15px;
  }
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__content a img {
  width: 110px;
}
@media (min-width: 640px) {
  .header__content a img {
    width: 140px;
  }
}
.header__content-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wrapper {
  margin: 0 auto;
  max-width: 1200px;
}

.btn {
  border-radius: var(--radius);
  padding: 0 10px;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  border: 1px solid var(--color-primary);
  position: relative;
  transition: 0.3s ease-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}
.btn:hover {
  text-decoration: none;
}

.log:hover {
  background-color: var(--color-primary);
}

.reg {
  background-color: var(--color-primary);
}
.reg:hover {
  background-color: unset;
}
@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(1);
  }
}
/* Banner */
.banner {
  height: 250px;
  position: relative;
  margin: 20px 0;
  padding: 0 10px;
}
@media (min-width: 960px) {
  .banner {
    height: 300px;
  }
}
.banner__content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  border-radius: var(--radius);
  background-image: linear-gradient(rgba(2, 31, 30, 0.7), rgba(13, 16, 22, 0.8)), url(img/girl-banner.webp);
}
@media (min-width: 640px) {
  .banner__content {
    justify-content: flex-start;
    background-image: url(img/girl-banner.webp);
  }
}
.banner__content::before {
  content: "";
  position: absolute;
  background: var(--banner);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0.25rem;
  padding: 1px;
  -webkit-mask: linear-gradient(var(--text) 0 0) content-box, linear-gradient(var(--text) 0 0);
  mask: linear-gradient(var(--text) 0 0) content-box, linear-gradient(var(--text) 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.banner__content-text {
  text-align: center;
  position: relative;
}
@media (min-width: 640px) {
  .banner__content-text {
    text-align: left;
    padding-left: 20px;
  }
}
.banner__content-text span {
  display: block;
  color: var(--text);
  line-height: 1.4;
}
.banner__content-first {
  font-weight: 700;
  font-size: 35px;
  margin-bottom: 10px;
}
@media (min-width: 640px) {
  .banner__content-first {
    font-size: 40px;
  }
}
@media (min-width: 960px) {
  .banner__content-first {
    font-size: 50px;
  }
}
.banner__content-second {
  font-weight: 400;
  font-size: 18px;
}
.banner__content .btn-banner {
  width: 250px;
  background-color: var(--color-primary);
  margin-top: 45px;
}
.banner__content .btn-banner:hover {
  background-color: var(--hover-primary);
}

.content {
  padding: 0 10px;
}
.content h1 {
  font-size: 26px;
}
@media (min-width: 960px) {
  .content h1 {
    font-size: 36px;
  }
}
.content h2 {
  font-size: 22px;
}
@media (min-width: 960px) {
  .content h2 {
    font-size: 30px;
  }
}
.content h3 {
  font-size: 20px;
  font-weight: 500;
}
@media (min-width: 960px) {
  .content h3 {
    font-size: 26px;
  }
}
.content h4 {
  font-size: 18px;
}
@media (min-width: 960px) {
  .content h4 {
    font-size: 22px;
  }
}
.content a {
  color: var(--link);
}
.content a:hover {
  opacity: 0.9;
}
.content p {
  padding-bottom: 20px;
  font-size: 16px;
}
.content .content-img {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.content ul {
  list-style: none;
  padding-left: 10px;
  margin-bottom: 20px;
  list-style: none;
}
.content ul li {
  width: 100%;
  position: relative;
  padding-bottom: 10px;
  padding-left: 35px;
  font-size: 16px;
}
.content ul li::before {
  position: absolute;
  width: 25px;
  height: 25px;
  background: url(img/content-icon.svg) no-repeat;
  background-size: cover;
  content: "";
  left: -5px;
  top: -4px;
}
@media (min-width: 960px) {
  .content ul li::before {
    top: 2px;
  }
}
.content ol {
  padding-bottom: 20px;
  padding-left: 30px;
  counter-reset: myCounter;
}
.content ol li {
  padding-left: 15px;
  margin-bottom: 15px;
  position: relative;
  list-style: none;
  font-size: 16px;
}
.content ol li::before {
  counter-increment: myCounter;
  content: counter(myCounter);
  width: 30px;
  height: 30px;
  font-size: 16px;
  background: var(--link);
  color: var(--text);
  border-radius: 50%;
  position: absolute;
  top: -4px;
  left: -26px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 960px) {
  .content ol li::before {
    top: 0;
  }
}

/* Footer */
.footer {
  padding: 20px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid var(--border);
}
@media (min-width: 960px) {
  .footer {
    padding: 20px;
  }
}
.footer span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

table {
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
}
table tr td {
  text-align: center;
  padding: 10px;
  font-size: 14px;
  color: var(--text);
}
table tr:nth-child(2n) {
  background-color: var(--table);
}/*# sourceMappingURL=style.css.map */