@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&display=swap');
/* varibles */
:root {
  --color-primary: #0B0B0F;
  --color-white: #fff;
  --color-grey: #20212E;
  --color-green: #ec0f0e;
  --bg-primary: #721a68;
  --bg-white: #fff;
  --bg-grey: #003403;
  --bg-green: #ec0f0e;
  --ff-cormorant_garamond: 'Cormorant Garamond', serif;
}

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

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

ul {
  list-style: none;
}

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

.btn {
  border: none;
  background: transparent;
  cursor: pointer;
}

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

body {
  font-family: var(--ff-cormorant_garamond);
  font-weight: 400;
  font-size: 18px;
  color: var(--color-white);
  background: var(--bg-primary);
  min-width: 320px;
  display: flex;
  flex-direction: column;
}
body.skroll {
  overflow-y: hidden;
}

main {
  flex: 1;
}

.container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

h2 {
  font-weight: 600;
  font-size: 33px;
  line-height: 46px;
  color: var(--color-green);
  margin: 35px 0;
  text-align: center;
}
@media (max-width: 450px) {
  h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

h3 {
  font-weight: 500;
  font-size: 28px;
  line-height: 38px;
  color: var(--color-green);
  margin: 32px 0;
  text-align: center;
}
@media (max-width: 450px) {
  h3 {
    font-size: 24px;
    line-height: 30px;
  }
}

p {
  font-weight: 400;
  font-size: 18px;
  line-height: 34px;
  margin-bottom: 20px;
  color: var(--color-white);
}

.header {
  height: 82px;
}
@media (max-width: 590px) {
  .header {
    height: 214px;
    background-color: var(--bg-grey);
  }
}
.header-fixed {
  top: 0;
  left: 0;
  right: 0;
  position: fixed;
  padding: 15px 50px;
  z-index: 2;
  background-color: var(--bg-grey);
}
@media (max-width: 980px) {
  .header-fixed {
    padding: 15px 15px;
  }
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1335px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 590px) {
  .header-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
.header .burger {
  display: none;
}
@media (max-width: 768px) {
  .header .burger {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 4;
    width: 50px;
    height: 50px;
    background: url(../img/menu_rotate.svg) no-repeat center;
    transition: 0.3s linear;
  }
  .header .burger.active {
    background: url(../img/close.svg) no-repeat center;
    transform: rotate(180deg);
  }
}
@media (max-width: 768px) and (max-width: 590px) {
  .header .burger {
    position: absolute;
    left: 15px;
    top: 15px;
  }
}
@media (max-width: 768px) {
  .header nav {
    position: absolute;
    top: 0;
    right: 30%;
    bottom: 0;
    left: 0;
    min-height: 110vh;
    overflow-x: hidden;
    background: var(--bg-grey);
    transform: translateX(-110%);
    transition: 0.3s linear;
  }
  .header nav.open {
    transform: translateX(0);
  }
}
.header .logo {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: #FFFFFF;
}
.header-block {
  display: flex;
  align-items: center;
  gap: 50px;
}
.header ul {
  display: flex;
  gap: 30px;
  font-size: 15px;
}
@media (max-width: 768px) {
  .header ul {
    padding: 180px 0 0 0;
    gap: 50px;
    flex-direction: column;
  }
  .header ul li {
    color: var(--color-white);
    display: flex;
    justify-content: center;
  }
}
.header-register {
  display: flex;
  gap: 20px;
}
@media (max-width: 590px) {
  .header-register {
    flex-direction: column;
    align-items: center;
  }
}
.header-btn {
  background: var(--bg-green);
  width: 160px;
  border-radius: 12px;
  border: 1px solid var(--color-green);
  padding: 15px 0;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  color: var(--color-white);
  transition: 0.3s ease-in-out;
}
@media (max-width: 590px) {
  .header-btn {
    width: 250px;
  }
}
.header-btn:first-child {
  width: 86px;
  color: var(--color-white);
}
@media (max-width: 590px) {
  .header-btn:first-child {
    width: 250px;
  }
}
.header-btn:hover {
  box-shadow: 3px 4px 6px var(--color-white);
  color: var(--color-white);
}

.hero {
  padding: 50px 15px 15px;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 590px) {
  .hero {
    padding: 30px 15px 0;
  }
}
.hero figure img {
  border-radius: 18px;
}
.hero h1 {
  margin: 40px auto 20px;
  max-width: 750px;
  width: 100%;
  text-align: center;
}
@media (max-width: 590px) {
  .hero h1 {
    margin: 30px 0;
  }
}
.hero h1 span {
  color: var(--color-green);
}
.hero ul {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}
.hero ul li {
  flex: 1 1 auto;
  border: 1px solid var(--color-primary);
  background-color: var(--bg-grey);
  border-radius: 8px;
}
.hero ul li a {
  display: block;
  padding: 10px 20px;
  text-align: center;
  transition: 0.3s ease-in-out;
  color: var(--color-green);
}
.hero ul li a:hover {
  background-color: var(--bg-green);
  color: var(--color-white);
  border-radius: 8px;
}

.article {
  padding: 0 15px 20px;
}
.article a {
  color: var(--color-green);
  text-decoration: underline;
}
.article ul,
.article ol {
  font-weight: 400;
  font-size: 18px;
  line-height: 34px;
  color: var(--color-white);
  margin-bottom: 20px;
  margin-left: 20px;
}
.article ul li::before {
  content: "•";
  color: var(--color-green);
  font-weight: bold;
  display: inline-block;
  width: 1em;
}
.article ol {
  margin-left: 20px;
  list-style: none;
}
.article ol li {
  counter-increment: li;
}
.article ol li::before {
  content: counter(li);
  color: var(--color-green);
  display: inline-block;
  width: 1em;
  margin-left: -1.5em;
  margin-right: 0.5em;
  text-align: right;
  direction: rtl;
}
.article figure img {
  margin: 30px auto;
  border-radius: 18px;
}
.article figure + p {
  margin-top: 30px;
}
.article table {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 40px 0;
  border-collapse: collapse;
  border-spacing: 0;
}
.article table:last-child {
  margin: 0;
}
.article table tr {
  display: grid;
  grid-template: auto/repeat(4, 1fr);
  align-items: center;
  border-top: 1px solid var(--color-green);
}
.article table tr:last-child {
  border-bottom: 1px solid var(--color-green);
}
@media (max-width: 590px) {
  .article table tr {
    grid-template: auto/repeat(2, 1fr);
  }
}
.article table td {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  padding: 20px 0;
  text-align: center;
}
@media (max-width: 590px) {
  .article table td {
    font-size: 16px;
  }
}
@media (max-width: 390px) {
  .article table td {
    font-size: 14px;
  }
}
.article table td:first-child {
  text-align: left;
  padding-left: 20px;
}
@media (max-width: 590px) {
  .article table td:first-child {
    padding-left: 0;
  }
}
.article table td:last-child {
  text-align: right;
  padding-right: 20px;
}
@media (max-width: 590px) {
  .article table td:last-child {
    padding-right: 0;
  }
}
@media (max-width: 590px) {
  .article .table-1 td:nth-child(2) {
    text-align: right;
  }
  .article .table-1 td:nth-child(3) {
    text-align: left;
  }
}
.article .table-2 tr {
  grid-template: auto/repeat(3, 1fr);
}
.article .table-3 tr {
  grid-template: auto/repeat(2, 1fr);
}

.block-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
@media (max-width: 1250px) {
  .block-content {
    padding: 0 15px;
  }
}
@media (max-width: 980px) {
  .block-content {
    gap: 0;
  }
  .block-content h2 {
    text-align: center;
  }
}
.block-content:nth-of-type(even) {
  flex-direction: row-reverse;
}
.block-content a {
  color: var(--color-green);
  text-decoration: underline;
}
.block-content figure {
  max-width: 500px;
  width: 100%;
}
.block-content figure img {
  border-radius: 20px;
}
.block-content .block {
  max-width: 680px;
  width: 100%;
}
@media (max-width: 980px) {
  .block-content .block {
    max-width: 100%;
  }
}
.block-content .block p {
  margin-bottom: 20px;
}
.block-content .block ul,
.block-content .block ol {
  font-weight: 400;
  font-size: 18px;
  line-height: 34px;
  color: var(--color-white);
  margin-bottom: 30px;
}
.block-content .block ul li::before {
  content: "•";
  color: var(--color-green);
  font-weight: bold;
  display: inline-block;
  width: 1em;
}
.block-content .block ol {
  margin-left: 20px;
  list-style: none;
}
.block-content .block ol li {
  counter-increment: li;
}
.block-content .block ol li::before {
  content: counter(li);
  color: var(--color-green);
  display: inline-block;
  width: 1em;
  margin-left: -1.5em;
  margin-right: 0.5em;
  text-align: right;
  direction: rtl;
}

footer {
  padding: 27px 10px;
  background: #003403;
}
@media (max-width: 450px) {
  footer {
    padding: 15px 10px;
  }
}
footer p {
  text-indent: 0;
  margin-bottom: 0;
  text-align: center;
}/*# sourceMappingURL=main.css.map */