@import url('https://fonts.googleapis.com/css2?family=Playfair:wght@400;500;600;700&display=swap');
:root {
  --ff-playfair: 'Playfair', serif;
  --color-primary: #e7e7e7;
  --color-white: #FFFFFF;
  --bg-main: #2a0040;
  --bg-blue: #005755;
  --bg-drkblue: #3f7ebf;
  --bg-footer: #005755;
}

* {
  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;
}

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

body {
  font-family: var(--ff-playfair);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--color-primary);
  background: var(--bg-main);
  overflow-x: hidden;
  background-image: url(../img/bg.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
}
@media (max-width: 1440px) {
  body {
    background-size: auto;
  }
}
body.hidden {
  overflow-y: hidden;
}

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

.arrow-btn-up {
  width: 33px;
  height: 33px;
  background: url(../img/arrow.svg);
  filter: drop-shadow(0px 0px 24px #FA4E00);
  background-repeat: no-repeat;
  background-position: center;
  position: fixed;
  border-radius: 50%;
  border: 5px solid transparent;
  z-index: -1;
  bottom: 45px;
  right: 10px;
  opacity: 0;
  transition: 0.3s ease;
}
.arrow-btn-up.btn-visible {
  opacity: 1;
  z-index: 1;
}

.article {
  padding-bottom: 41px;
}
@media (max-width: 1280px) {
  .article {
    padding: 0 20px 41px;
  }
}
@media (max-width: 500px) {
  .article {
    padding: 0 20px 41px;
  }
}
.article ul {
  list-style: disc;
}
.article ul,
.article ol {
  margin-left: 40px;
  margin-bottom: 24px;
  line-height: 32px;
}
.article p {
  margin-bottom: 24px;
}
.article h2 {
  margin: 40px 0 40px;
  font-size: 34px;
  line-height: 50px;
  text-align: center;
}

.article h3 {
  margin: 30px 0 30px;
  font-size: 27px;
  line-height: 40px;
  text-align: center;
}

.article-p.right {
  margin-left: 0;
  margin-right: 11px;
}
@media (max-width: 1280px) {
  .article-p.right {
    max-width: 100%;
    margin-right: 0;
  }
}
.article-p {
  max-width: 465px;
  width: 100%;
  display: inline-block;
  vertical-align: top;
  margin-left: 11px;
}
@media (max-width: 1280px) {
  .article-p {
    max-width: 100%;
    display: block;
    margin-left: 0;
  }
}
.article picture {
  display: block;
  vertical-align: top;
  padding-bottom: 20px;
}
@media (max-width: 1280px) {
  .article picture {
    display: block;
    margin-bottom: 24px;
  }
  .article picture img {
    margin: 0 auto;
  }
}
.article .table {
  display: flex;
  flex-direction: column;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 40px 0;
}
.article .table:last-of-type {
  margin-bottom: 0;
}
.article tbody tr {
  display: grid;
  grid-template: auto/repeat(4, 1fr);
}
.article tbody tr:nth-child(even) {
  background: var(--bg-blue);
}
.article tbody tr:nth-child(odd) {
  background: var(--bg-drkblue);
}
.article tbody td {
  padding: 12px 10px;
  letter-spacing: -0.408px;
  word-break: break-all;
}
@media (max-width: 510px) {
  .article tbody td {
    font-size: 13px;
  }
}
.article .table-1 tr {
  grid-template-columns: 284px 1fr;
}
@media (max-width: 768px) {
  .article .table-1 tr {
    grid-template-columns: 150px 1fr;
  }
}
.article .table-1 td:first-child {
  font-weight: 700;
}
.article .table-2 tbody tr {
  grid-template-columns: 220px 1fr 1fr;
}
@media (max-width: 768px) {
  .article .table-2 tbody tr {
    grid-template-columns: repeat(3, 1fr);
  }
}
.article .table-3 tbody tr {
  grid-template: auto/repeat(4, 1fr);
}
.article .table-3 tbody tr:first-child {
  background: #004388;
}

.footer {
  padding: 24px 0;
  background: var(--bg-footer);
  text-align: center;
}
.footer p {
  color: var(--color-white);
  font-size: 12px;
  line-height: 18px;
}
.footer span {
  display: block;
}

@media (max-width: 1280px) {
  .header {
    padding: 0 20px;
  }
}
.header-top {
  height: 83px;
}
@media (max-width: 500px) {
  .header-top {
    height: 176px;
  }
}
.header-fixed {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  padding: 17px 0;
  transition: 0.3s ease;
  background: transparent;
}
.header-fixed.active {
  background: var(--bg-main);
}
@media (max-width: 1280px) {
  .header-fixed {
    padding: 17px 20px;
  }
}
@media (max-width: 768px) {
  .header-fixed {
    padding: 17px 86px 17px 20px;
  }
}
@media (max-width: 500px) {
  .header-fixed {
    padding: 0 20px 37px;
  }
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 500px) {
  .header-wrapper {
    flex-direction: column;
  }
}
.header-wrapper.container {
  max-width: 1200px;
  margin: 0 auto;
}
.header .burger {
  display: none;
}
@media (max-width: 768px) {
  .header .burger {
    display: flex;
    position: fixed;
    top: 17px;
    right: 20px;
    z-index: 5;
    width: 46px;
    height: 46px;
    box-shadow: 0px 0px 24px #eb2cff;
    border-radius: 50%;
    background: #004e97 url(../img/burger.svg) no-repeat center;
  }
  .header .burger.active {
    background: #eb2cff url(../img/closed.svg) no-repeat center;
  }
}
.header-logo {
  cursor: pointer;
  font-size: 24px;
  line-height: 33px;
  font-weight: 800;
  color: var(--color-white);
  text-transform: uppercase;
}
@media (max-width: 500px) {
  .header-logo {
    position: absolute;
    top: 13px;
    left: 20px;
  }
}
.header .nav {
  background: var(--bg-blue);
}
@media (max-width: 768px) {
  .header .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 110vh;
    z-index: 2;
    overflow-x: hidden;
    transform: translateX(-110%);
    transition: 0.3s ease-in-out;
    background: var(--bg-main);
    padding: 142px 60px 0 0;
  }
  .header .nav.open {
    transform: translateX(0);
  }
}
.header-container {
  display: flex;
  gap: 24px;
}
@media (max-width: 500px) {
  .header-container {
    margin-top: 90px;
  }
}
.header button {
  width: 162px;
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  padding: 15px 0;
  background: #ef0710;
  box-shadow: 0px 0px 24px #eb2cff;
  color: var(--color-white);
  border-radius: 24px;
  text-transform: uppercase;
}
.header button:first-child {
  width: 98px;
  background: #00713f;
  box-shadow: 0px 0px 24px #eb2cff;
}
.header picture {
  margin-top: 33px;
  display: block;
}
@media (max-width: 500px) {
  .header picture {
    margin-top: 13px;
  }
}
.header picture img {
  border-radius: 8px;
  padding-bottom: 25px;
}
.header ul {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 19px 0;
  color: var(--color-white);
}
@media (max-width: 768px) {
  .header ul {
    flex-direction: column;
    gap: 40px;
    align-items: flex-end;
  }
}
.header ul li {
  font-size: 14px;
  line-height: 20px;
  font-family: var(--ff-playfair);
  cursor: pointer;
  text-transform: uppercase;
}
@media (max-width: 890px) {
  .header ul li {
    width: 100%;
    max-width: 71px;
    text-align: right;
  }
}

@media (max-width: 1280px) {
  .hero {
    padding: 0 20px;
  }
}
.hero h1 {
  margin: 33px 0 30px;
  font-size: 42px;
  line-height: 51px;
  color: var(--color-white);
  text-align: center;
}
@media (max-width: 890px) {
  .hero h1 {
    margin: 12px 0 24px;
    line-height: 50px;
  }
}
.hero ul {
  display: inline-block;
  vertical-align: top;
  max-width: 404px;
  width: 100%;
  color: #F35714;
  list-style: disc;
  line-height: 32px;
  margin: 0 16px 0 50px;
}
@media (max-width: 1280px) {
  .hero ul {
    margin: 0 0 40px 20px;
    max-width: 100%;
  }
}
@media (max-width: 450px) {
  .hero ul {
    max-width: 100%;
  }
}
.hero p {
  margin-bottom: 24px;
}
.hero-text {
  display: inline-block;
  vertical-align: top;
  max-width: 606px;
  width: 100%;
}
@media (max-width: 1280px) {
  .hero-text {
    max-width: 100%;
  }
}/*# sourceMappingURL=main.css.map */