@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500;600;700&display=swap');

:root {
  --ff-roboto-mono: 'Roboto Mono', monospace;
  /* color */
  --color-primary: #ffffff;
  --color-secondary: #000000;
  --color-violet-lt: #BF86BE;
  --color-violet: #A00DFA;
  --color-blue: #14213D;
  --color-yellow: #FCA311;
  -
  /* bg-color */
  --bg-primary: #ffffff;
  --bg-secondary: #000000;
  --bg-blue: #14213D;
  --bg-yellow: #FCA311;
}

/* default style */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-height: 100vh;
  scroll-behavior: smooth;
}

ul {
  list-style: none;
}

li {
  font-size: 18px;
  line-height: 34px;
}

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

p > a {
  text-decoration: underline;
  color: var(--color-violet-lt);
}

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

picture > img {
  border-radius: 30px;
}

button {
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

h1 {
  font-weight: 700;
  font-size: 40px;
  line-height: 64px;
  color: var(--color-primary);
  max-width: 1240px;
  margin: 20px auto;
  text-align: center;
}
@media (max-width: 590px) {
  h1 {
    word-wrap: break-word;
    word-break: break-all;
    line-height: 50px;
  }
}
@media (max-width: 450px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-weight: 700;
  font-size: 34px;
  line-height: 44px;
  text-align: center;
  margin: 20px 0;
  color: var(--color-yellow);
}
@media (max-width: 450px) {
  h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

h3 {
  font-weight: 700;
  font-size: 30px;
  line-height: 34px;
  margin: 20px 0;
  text-align: center;
  color: var(--color-yellow);
}
@media (max-width: 450px) {
  h3 {
    color: var(--color-violet-lt);
    font-size: 28px;
    line-height: 34px;
  }
}

p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 30px;
  text-indent: 20px;
}

picture + p {
  margin-bottom: 20px;
  margin-top: 20px;
}

/* main style */
body {
  font-family: var(--ff-roboto-mono);
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: var(--color-primary);
  background: var(--bg-blue);
  overflow-x: hidden;
}

.hidden {
  overflow-y: hidden;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
}

.header {
  background: url(../images/bgrnd.jpg) no-repeat center;
  background-size: cover;
}
@media (max-width: 450px) {
  .header {
    background: var(--bg-blue);
  }
}
.header-top {
  height: 80px;
}
@media (max-width: 768px) {
  .header-top {
    height: 211px;
  }
}
.header-fixed {
  position: fixed;
  z-index: 3;
  left: 0;
  right: 0;
  top: 0;
  padding: 15px 0px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1350px) {
  .header-fixed {
    padding: 15px 10px;
  }
}
@media (max-width: 980px) {
  .header-fixed {
    padding: 15px 40px;
  }
}
@media (max-width: 768px) {
  .header-fixed {
    padding: 28px 15px 20px;
  }
}
@media (max-width: 450px) {
  .header-fixed {
    background: var(--bg-secondary);
  }
}
.header-fixed.header-fixed__bg {
  background: #070707;
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .header-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
.header .burger {
  display: none;
}
@media (max-width: 980px) {
  .header .burger {
    display: flex;
    width: 30px;
    height: 30px;
    background: url(../images/burger.svg) no-repeat center;
    z-index: 4;
    transition: 0.3s ease-in-out;
  }
  .header .burger.active {
    background: url(../images/close.svg) no-repeat center;
  }
}
@media (max-width: 768px) {
  .header .burger {
    position: absolute;
    z-index: 4;
    top: 30px;
    left: 30px;
  }
}
.header-logo {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  cursor: pointer;
}
@media (max-width: 980px) {
  .header .nav {
    position: absolute;
    background: #BF86BE;
    top: 0;
    left: 0;
    right: 30%;
    bottom: 0;
    min-height: 100vh;
    overflow: hidden;
    transform: translateX(-100%);
    transition: 0.3s ease-in-out;
  }
  .header .nav.active {
    transform: translateX(0%);
  }
}
.header .menu {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 980px) {
  .header .menu {
    flex-direction: column;
    padding: 120px 30px 30px 30px;
  }
}
.header .menu li {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  cursor: pointer;
}
.header-block {
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  .header-block {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.header-btn {
  background: var(--bg-yellow);
  border-radius: 40px;
  color: var(--color-blue);
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  padding: 10px 0;
  width: 240px;
  transition: 0.3s ease;
}
.header-btn:hover {
  box-shadow: 1px 1px 0px rgba(255, 255, 255, 0.75);
}
.header-btn:first-child {
  width: 152px;
}
@media (max-width: 768px) {
  .header-btn:first-child {
    width: 240px;
  }
}
@media (max-width: 450px) {
  .header-btn {
    box-shadow: 1px 0px 3px 2px rgba(255, 255, 255, 0.75);
  }
}
.header-bottom {
  padding: 20px 40px;
}
@media (max-width: 768px) {
  .header-bottom {
    padding: 20px 15px;
  }
}
@media (max-width: 450px) {
  .header-bottom {
    padding: 20px 15px 0;
  }
}
.header-bottom ul {
  width: 307px;
}
.header-bottom li {
  font-weight: 600;
  font-size: 18px;
  line-height: 40px;
  background: #92F489;
  background: linear-gradient(to right, #92F489 20%, #BF86BE 95%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.article {
  padding: 20px 40px 50px 40px;
}
@media (max-width: 768px) {
  .article {
    padding: 20px 15px 30px;
  }
  .article p {
    text-indent: 0px;
  }
}
.article ul,
.article ol {
  margin-left: 80px;
}
@media (max-width: 768px) {
  .article ul,
  .article ol {
    margin-left: 40px;
  }
}
.article ul {
  list-style: disc;
  margin-bottom: 20px;
}
@media (max-width: 768px) {

}
.article .table {
  width: 100%;
  margin: 50px auto;
  border-collapse: collapse;
  border-spacing: 0px;
}
.article .table:last-child {
  margin: 0;
}
.article tbody tr {
  border-top: 1px solid var(--color-primary);
  display: grid;
  grid-template: auto/repeat(4, 1fr);
  align-items: center;
}
.article tbody tr:last-child {
  border-bottom: 1px solid var(--color-primary);
}
.article tbody td {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  padding: 24px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .article tbody td {
    padding: 20px 0;
    font-size: 16px;
  }
}
@media (max-width: 420px) {
  .article tbody td {
    font-size: 12px;
  }
}
.article tbody td:first-child {
  text-align: left;
  padding-left: 24px;
}
@media (max-width: 768px) {
  .article tbody td:first-child {
    padding-left: 0;
  }
}
.article tbody td:last-child {
  text-align: right;
  padding-right: 24px;
}
@media (max-width: 768px) {
  .article tbody td:last-child {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .article .tabl-1 tbody tr {
    grid-template: auto/repeat(2, 1fr);
  }
  .article .tabl-1 tbody tr td:nth-child(odd) {
    text-align: left;
  }
  .article .tabl-1 tbody tr td:nth-child(even) {
    text-align: right;
  }
  .article .tabl-1 tbody tr td:first-child {
    padding-bottom: 20px;
  }
  .article .tabl-1 tbody tr td:nth-child(2) {
    padding-bottom: 20px;
  }
  .article .tabl-1 tbody tr td:nth-child(3) {
    padding-top: 20px;
  }
  .article .tabl-1 tbody tr td:last-child {
    padding-top: 20px;
  }
}
.article .tabl-2 tbody tr {
  grid-template: auto/repeat(3, 1fr);
}
.article .tabl-3 tbody tr {
  grid-template: auto/repeat(2, 1fr);
}

.footer {
  padding: 21px 0 22px;
}
@media (max-width: 450px) {
  .footer {
    padding: 0;
  }
}
.footer p {
  margin-bottom: 0;
  text-indent: 0;
  text-align: center;
  font-weight: 600;
  line-height: 64px;
}
