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

:root {
  --ff-geologica: 'Geologica', sans-serif;
  --color-primary: #1F2130;
  --color-black: #0D0F24;
  --color-link: #3319DB;
  --color-white: #FFFFFF;
  --bg-main: #FFFFFF;
  --bg-header: #DB2419;
  --bg-drwhite: #FDF4F3;
  --bg-table: #DB2419;
  --bg-footer: #150A5C;
}

* {
  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;
  margin-bottom: 30px;
  border-radius: 30px;
}

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

body {
  font-family: var(--ff-geologica);
  font-size: 18px;
  line-height: 34px;
  font-weight: 300;
  color: var(--color-primary);
  background: var(--bg-main);
  overflow-x: hidden;
}

body.hidden {
  overflow-y: hidden;
}

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

@media (max-width: 1150px) {
  .container {
    padding: 0 20px;
  }
}

.arrow-btn-up {
  width: 45px;
  height: 90px;
  background: rgba(199, 141, 138, 0.44) url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: fixed;
  box-shadow: 0px 2px 8px rgba(51, 25, 219, 0.13);
  border-radius: 25px;
  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: 2;
}

.arrow-btn-up:hover {
  background: #DB2419 url(../img/arrow-hover.svg) no-repeat;
  background-position: center;
}

.article {
  padding: 70px 0;
}

@media (max-width: 590px) {
  .article {
    padding-bottom: 100px;
  }
}

.article p {
  margin-bottom: 30px;
}

.article p>a {
  color: var(--color-link);
}

.article p>a:visited {
  color: #8619DB;
}

.article h1 {
  margin-bottom: 35px;
  font-size: 40px;
  line-height: 44px;
  color: var(--color-black);
}

@media (max-width: 590px) {
  .article h1 {
    margin-bottom: 25px;
    font-size: 32px;
    line-height: 44px;
  }
}

.article h2 {
  margin: 70px 0 35px;
  font-size: 30px;
  line-height: 34px;
  font-weight: 600;
  color: var(--color-black);
}

@media (max-width: 590px) {
  .article h2 {
    margin: 50px 0 25px;
    font-size: 24px;
    line-height: 34px;
  }
}

.article h3 {
  margin: 30px 0;
  font-size: 24px;
  line-height: 34px;
  color: var(--color-black);
}

@media (max-width: 590px) {
  .article h2 {
    margin: 50px 0 25px;
    font-size: 24px;
    line-height: 34px;
  }
}

.article ol,
.article ul {
  padding: 35px 0 35px 150px;
  background: var(--bg-drwhite);
  border: 1px solid #DB2419;
  border-radius: 20px;
  margin: 30px 0;
  list-style: none;
}

.article ol li,
.article ul li {
  margin-bottom: 15px;
  padding-left: 15px;
}

.article ol li:last-child,
.article ul li:last-child {
  margin-bottom: 0;
}

.article ul li {
  background: url(../img/ellipse.png) no-repeat left;
}

@media (max-width: 590px) {
  .article ul {
    margin-top: 25px;
    padding: 25px 20px;
  }
}

.article ol {
  list-style: auto;
}

@media (max-width: 590px) {
  .article ol {
    margin-top: 25px;
    padding: 25px 0 20px 40px;
  }
}

.article ol li {
  padding-left: 10px;
}

.article ol li::marker {
  color: #DB2419;
  font-size: 18px;
  line-height: 23px;
  font-weight: 600;
}

.article-block-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 29px;
  margin-bottom: 29px;
}

@media (max-width: 450px) {
  .article-block-content {
    gap: 20px;
  }
}

.article-block-content figure {
  width: 343px;
}

@media (max-width: 1130px) {
  .article-block-content figure {
    width: 100%;
  }
}

.article-block-content figure img {
  height: 100%;
}

.article-block {
  width: 722px;
}

@media (max-width: 1130px) {
  .article-block {
    width: 100%;
  }
}

.article-block h2 {
  margin: 0 0 35px;
}

.article-block p:last-child {
  margin-bottom: 0;
}

.article .table-block {
  background: var(--bg-drwhite);
  padding: 35px 0px;
}

@media (max-width: 1150px) {
  .article .table-block {
    padding: 35px 10px;
  }
}

@media (max-width: 590px) {
  .article .table-block {
    padding: 10px;
  }
}

.article .table-block:not(:last-child) {
  margin-bottom: 70px;
}

@media (max-width: 590px) {
  .article .table-block:not(:last-child) {
    margin-bottom: 50px;
  }
}

.article .table {
  display: flex;
  flex-direction: column;
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 1106px;
  width: 100%;
  margin: 0 auto;
  background: var(--bg-drwhite);
  border-radius: 5px;
}

.article tbody tr {
  display: grid;
  grid-template: auto/repeat(4, 1fr);
  text-align: center;
  border-radius: 5px;
}

.article tbody tr:nth-child(even) {
  background: var(--bg-table);
}

.article tbody tr:nth-child(even) td {
  color: var(--color-white);
}

.article tbody td {
  padding: 22px 10px;
}

@media (max-width: 590px) {
  .article tbody td {
    word-break: break-all;
    font-size: 16px;
  }
}

.article tbody td:first-child {
  font-weight: 600;
}

.article .table-1 tr {
  grid-template: auto/repeat(2, 1fr);
}

@media (max-width: 768px) {
  .article .table-1 tr {
    grid-template: auto/repeat(1, 1fr);
  }
}

@media (max-width: 768px) {
  .article .table-1 td {
    padding: 30px 0 5px;
  }

  .article .table-1 td:last-child {
    padding: 0 0 30px;
  }
}

.article .table-2 tr {
  grid-template: auto/repeat(3, 1fr);
}

@media (max-width: 768px) {
  .article .table-2 tr {
    grid-template: auto/repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .article .table-2 td {
    padding: 0 20px 15px;
  }

  .article .table-2 td:first-child {
    grid-column: 1/3;
    padding: 15px 0 5px;
  }
}

.article .table-3 tr {
  grid-template: auto/repeat(4, 1fr);
}

@media (max-width: 768px) {
  .article .table-3 tr {
    grid-template: auto/repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .article .table-3 td {
    padding: 0 15px 15px;
  }

  .article .table-3 td:first-child {
    grid-column: 1/4;
    padding: 15px 0 5px;
  }
}

.footer {
  padding: 30px 0;
  background: var(--bg-footer);
}

.footer p {
  color: var(--color-white);
  text-align: center;
}

.header-top {
  height: 80px;
}

.header-fixed {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  padding: 17px 0;
  transition: 0.3s ease;
  background: var(--bg-header);
  box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.07);
}

@media (max-width: 1280px) {
  .header-fixed {
    padding: 17px 20px;
  }
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .burger {
  display: none;
}

@media (max-width: 890px) {
  .header .burger {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    z-index: 5;
    background: url(../img/burger.svg) no-repeat center;
  }

  .header .burger.active {
    background: url(../img/closed.svg) no-repeat center;
  }
}

.header-logo {
  cursor: pointer;
  font-size: 30px;
  line-height: 36px;
  color: var(--color-black);
  padding: 5px 12px;
  background: var(--bg-main);
  text-transform: uppercase;
}

@media (max-width: 890px) {
  .header .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;
    bottom: 0;
    height: 110vh;
    z-index: 2;
    overflow-x: hidden;
    transform: translateX(-110%);
    transition: 0.3s ease-in-out;
    background: var(--bg-main);
    padding-top: 70px;
  }

  .header .nav.open {
    transform: translateX(0);
  }
}

.header ul {
  display: flex;
  justify-content: center;
  gap: 40px;
  color: var(--color-white);
}

@media (max-width: 890px) {
  .header ul {
    flex-direction: column;
    gap: 50px;
    color: var(--color-primary);
    align-items: center;
  }
}

.header ul a {
  font-size: 18px;
  line-height: 23px;
  font-weight: 700;
  cursor: pointer;
}

.header ul a:first-child:hover {
  color: #150A5C;
}

.header-bottom {
  padding: 10px 0 0;
}

@media (max-width: 1150px) {
  .header-bottom {
    padding: 0;
  }
}

/*# sourceMappingURL=main.css.map */