@import url('https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@400;500;600;700&display=swap');
:root {
  --ff-cormorant_sc: "Cormorant SC", serif;

  /* color */
  --color-primary: #ffffff;
  --color-secondary: #E92139;
  --color-black: #000000;
  --color-dark: #090C16;
  /* bg-color */
  --bg-primary: #ffffff;
  --bg-secondary: #E92139;
  --bg-black: #000000;
  --bg-dark: #090C16;
}

/* 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-secondary);
}

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: 55px;
  color: var(--color-primary);
  max-width: 729px;
  margin: 45px auto 60px;
  text-align: center;
}
@media (max-width: 590px) {
  h1 {
    word-wrap: break-word;
    font-size: 30px;
    line-height: 50px;
    margin: 30px auto 30px;
  }
}

h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  text-align: center;
  margin: 40px 0;
  color: var(--color-secondary);
}
@media (max-width: 590px) {
  h2 {
    margin: 30px 0;
    font-size: 26px;
    line-height: 40px;
  }
}

h3 {
  font-weight: 500;
  font-size: 32px;
  line-height: 34px;
  margin: 40px 0;
  text-align: center;
  color: var(--color-secondary);
}
@media (max-width: 590px) {
  h3 {
    margin: 30px 0;
    font-size: 22px;
    line-height: 34px;
  }
}

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

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

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

.hidden {
  overflow-y: hidden;
}

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

.header {
  background: url(../images/bck.png) no-repeat center;
  background-size: cover;

}
@media (max-width: 450px) {
  .header {
    background: var(--bg-black);
  }
}
.header-top__block {
  height: 73px;
}
@media (max-width: 768px) {
  .header-top__block {
    height: 234px;
  }
}
.header-fixed {
  position: fixed;
  z-index: 3;
  left: 0;
  right: 0;
  top: 0;
  padding: 10px 0px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1350px) {
  .header-fixed {
    padding: 10px 40px;
  }
}
@media (max-width: 980px) {
  .header-fixed {
    padding: 10px 40px;
  }
}
@media (max-width: 768px) {
  .header-fixed {
    padding: 28px 15px 20px;
  }
}
@media (max-width: 450px) {
  .header-fixed {
    background: var(--bg-black);
  }
}
.header-fixed.header-fixed__bg {
  background: rgb(255, 198, 127);
  background: linear-gradient(90deg, rgb(255, 198, 127) 0%, rgb(210, 20, 30) 50%, rgb(18, 41, 122) 100%);
}
@media (max-width: 450px) {
  .header-fixed.header-fixed__bg {
    background: var(--bg-black);
    transition: 0.3s ease-in-out;
  }
}
.header-container {
  max-width: 1315px;
  margin: 0 auto;
}
.header-wrapper__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .header-wrapper__block {
    flex-direction: column;
    gap: 30px;
  }
}
.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: 30px;
  text-transform: uppercase;
  cursor: pointer;
}
@media (max-width: 980px) {
  .header .nav {
    position: absolute;
    background: var(--bg-secondary);
    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: 180px 30px 30px 30px;
  }
}
.header .menu li {
  font-size: 18px;
  line-height: 24px;
  cursor: pointer;
}
.header-block {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .header-block {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.header-btn {
  border-radius: 34px;
  border: 2px solid var(--color-primary);
  color: #000000;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  padding: 15px 0;
  width: 165px;
  transition: 0.3s ease;
  background-color: white;
}
.header-btn:hover {
  box-shadow: 1px 1px 0px rgba(255, 255, 255, 0.75);
}
.header-btn:first-child {
  width: 96px;
}
@media (max-width: 768px) {
  .header-btn:first-child {
    width: 250px;
  }
}
@media (max-width: 768px) {
  .header-btn {
    width: 250px;
  }
}
@media (max-width: 450px) {
  .header-btn {
    box-shadow: 1px 0px 3px 2px rgba(255, 255, 255, 0.75);
  }
}
.header-bottom__block {
  padding: 30px 0px 10px;
  backdrop-filter: blur(9px);
  border-radius: 26px;
}
@media (max-width: 768px) {
  .header-bottom__block {
    padding: 30px 15px 20px;
  }
}
.header-bottom__block ul {
  background: var(--bg-black);
  padding: 57px 0 78px 80px;
}
@media (max-width: 980px) {
  .header-bottom__block ul {
    padding: 57px 0 78px 40px;
  }
}
@media (max-width: 768px) {
  .header-bottom__block ul {
    margin: 0 -15px;
    padding: 57px 0 78px 15px;
  }
}
@media (max-width: 450px) {
  .header-bottom__block ul {
    padding: 0px 0 60px 15px;
  }
}
.header-bottom__block li {
  font-size: 18px;
  line-height: 40px;
}

.article__block {
  padding: 20px 80px 30px 80px;
  margin-top: -28px;
  background: #000000;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}
@media (max-width: 980px) {
  .article__block {
    padding: 0px 40px 100px 40px;
  }
}
@media (max-width: 768px) {
  .article__block {
    padding: 0px 15px 100px 15px;
  }
}
@media (max-width: 450px) {
  .article__block {
    margin-top: 0;
    padding: 0px 15px 0px 15px;
  }
}
.article__block ul,
.article__block ol {
  margin-left: 50px;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .article__block ol {
    margin-left: 20px;
  }
}
.article__block ul {
  list-style: disc;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .article__block ul {
    margin-left: 20px;
  }
}
.article__block table {
  width: 100%;
  margin: 0 auto 50px;
  border-collapse: collapse;
  border-spacing: 0px;
  background: var(--bg-black);
}
.article__block table:last-child {
  margin: 0 auto;
}
.article__block tbody tr {
  border-top: 1px solid var(--color-primary);
  display: grid;
  grid-template: auto/repeat(4, 1fr);
  align-items: center;
}
.article__block tbody tr:last-child {
  border-bottom: 1px solid var(--color-primary);
}
.article__block tbody td {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  padding: 20px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .article__block tbody td {
    padding: 20px 0;
    font-size: 16px;
  }
}
@media (max-width: 420px) {
  .article__block tbody td {
    font-size: 12px;
  }
}
.article__block tbody td:first-child {
  text-align: left;
  padding-left: 20px;
}
@media (max-width: 768px) {
  .article__block tbody td:first-child {
    padding-left: 0;
  }
}
.article__block tbody td:last-child {
  text-align: right;
  padding-right: 20px;
}
@media (max-width: 768px) {
  .article__block tbody td:last-child {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .article__block .tabl-1 tbody tr {
    grid-template: auto/repeat(2, 1fr);
  }
  .article__block .tabl-1 tbody tr td:first-child {
    padding-bottom: 20px;
  }
  .article__block .tabl-1 tbody tr td:nth-child(2) {
    padding-bottom: 20px;
    text-align: right;
  }
  .article__block .tabl-1 tbody tr td:nth-child(3) {
    padding-top: 20px;
    text-align: left;
  }
  .article__block .tabl-1 tbody tr td:last-child {
    padding-top: 20px;
  }
}
.article__block .tabl-2 tbody tr {
  grid-template: auto/repeat(3, 1fr);
}
.article__block .tabl-3 tbody tr {
  grid-template: auto/repeat(2, 1fr);
}

.footer {
  background: url(../images/bg-footer.jpg) no-repeat center;
  background-size: cover;
  padding: 205px 0 34px;
  margin-top: -205px;
}
@media (max-width: 450px) {
  .footer {
    background: var(--bg-black);
    margin-top: 0;
    padding: 0 0 40px;
  }
}
.footer-top {
  margin: 70px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 200px;
}
@media (max-width: 1100px) {
  .footer-top {
    gap: 100px;
  }
}
@media (max-width: 450px) {
  .footer-top {
    margin: 50px 0;
  }
}
.footer-top__block {
  width: 222px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.footer-top__block:hover {
  box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
}
@media (max-width: 450px) {
  .footer-top__block:hover {
    box-shadow: 0px 10px 13px -7px #ffffff, 5px 5px 15px 5px rgba(0, 0, 0, 0);
    -webkit-box-shadow: 0px 10px 13px -7px #ffffff, 5px 5px 15px 5px rgba(0, 0, 0, 0);
    -moz-box-shadow: 0px 10px 13px -7px #ffffff, 5px 5px 15px 5px rgba(0, 0, 0, 0);
  }
}
.footer-top__number {
  font-family: var(--ff-cormorant_sc);
  font-weight: 600;
  font-size: 60px;
  line-height: 90px;
  text-align: center;
}
@media (max-width: 450px) {
  .footer-top__number {
    color: var(--color-secondary);
  }
}
.footer-top__text {
  font-family: var(--ff-cormorant_sc);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}
.footer p {
  margin: 0;
  padding: 36px 0 0 0;
  text-indent: 0;
  text-align: center;
  font-size: 18px;
  line-height: 28px;
}/*# sourceMappingURL=main.css.map */