main {
  overflow: hidden;
  min-height: calc(100vh - 80px);
  margin-top: 70px;
}
@media (max-width: 990px) {
  main {
    margin-top: 57px;
  }
}

body, html {
  overflow-x: hidden;
  background: var(--body-bg);
  margin: 0;
  padding: 0;
  font-optical-sizing: auto;
  font-style: normal;
}

p {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5 {
  margin: 0;
}

img {
  color: transparent;
}

img:not([src]) {
  visibility: hidden;
}

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

.padding {
  padding: 0 15px;
}
@media (max-width: 576px) {
  .padding {
    padding: 0 10px;
  }
}

.margin {
  margin-bottom: 55px;
}
@media (max-width: 990px) {
  .margin {
    margin-bottom: 35px;
  }
}

a, button {
  cursor: pointer;
}

button {
  background: transparent;
  outline: none;
  box-shadow: none;
  border: none;
}

a {
  text-decoration: none;
}

.overlay {
  overflow: hidden;
}

input, button, textarea {
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
  font-family: "Open Sans", sans-serif;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

button {
  border: none;
  box-shadow: none;
  width: 100%;
  appearance: none;
  cursor: pointer;
}

input:focus, textarea:focus {
  outline: none;
}

.btn {
  max-width: 100%;
  height: auto;
  padding: 10px;
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  width: 100%;
  box-sizing: border-box;
  font-weight: 600;
  border-radius: 6px;
  background: var(--btn-bg-color);
  color: var(--btn-text-color);
  transition: 0.3s;
}
@media (max-width: 990px) {
  .btn {
    font-size: 16px;
    line-height: 22px;
  }
}
.btn:hover {
  background: var(--btn-hover-color);
}

.header {
  background: var(--header-bg);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100vw;
  box-sizing: border-box;
  z-index: 99;
}
.header__wrap {
  padding: 10px 0;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-gap: 15px;
  align-items: center;
}
@media (max-width: 990px) {
  .header__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header__logo img {
  object-fit: contain;
  max-width: 170px;
  max-height: 50px;
}
@media (max-width: 576px) {
  .header__logo img {
    max-width: 160px;
    height: 35px;
    width: 100%;
    box-sizing: border-box;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 990px) {
  .header__nav {
    display: none;
    position: absolute;
    background: var(--header-bg);
    top: 100%;
    left: 0;
    width: 100vw;
    padding: 15px;
  }
}
.header__nav ul {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  gap: 10px;
}
.header__nav ul a {
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  color: var(--link-color);
}
.header__nav ul a:hover {
  color: var(--link-hover-color);
}
.header__active {
  display: block;
}
.header__btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  grid-column-start: 3;
}
@media (max-width: 990px) {
  .header__btn {
    grid-column-start: auto;
  }
}
.header__btn-link {
  max-width: 150px;
  min-width: 150px;
  width: 100%;
}
@media (max-width: 990px) {
  .header__btn-link {
    min-width: auto;
    font-size: 16px;
    line-height: 21px;
    padding: 8px 20px;
  }
}
.header__menu {
  display: none;
}
@media (max-width: 990px) {
  .header__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 5px;
    border-radius: 50%;
    cursor: pointer;
  }
}

.banner {
  position: relative;
  overflow: hidden;
}
.banner__info {
  padding: 15px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.banner__info::after {
  content: "";
  background: var(--bg-banner-top);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  height: 100%;
  width: 100%;
  pointer-events: none;
  opacity: var(--bg-banner-opacity);
}
.banner img {
  max-width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
  object-fit: cover;
}
.banner__wrap {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  max-width: 600px;
}
@media (max-width: 990px) {
  .banner__wrap {
    padding: 40px 0;
  }
}
.banner__title {
  color: var(--text-color);
  font-size: 36px;
  line-height: 46px;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}
@media (max-width: 990px) {
  .banner__title {
    font-size: 26px;
    line-height: 33px;
    margin-bottom: 15px;
  }
}
.banner__text {
  position: relative;
  z-index: 2;
  color: var(--text-color);
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 990px) {
  .banner__text {
    margin-bottom: 20px;
    font-size: 18px;
  }
}
.banner__box {
  max-width: 400px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  position: relative;
  z-index: 2;
}
@media (max-width: 576px) {
  .banner__box {
    grid-template-columns: 1fr;
    max-width: 100%;
    grid-gap: 15px;
  }
}
.banner__btn {
  position: relative;
  z-index: 2;
  background: var(--btn-bg-color-banner);
  color: var(--btn-text-color-banner);
}
.banner__btn:hover {
  background: var(--btn-hover-color-banner);
}

.content .tablepress {
  margin-bottom: 10px;
}
@media (max-width: 990px) {
  .content .tablepress {
    overflow-x: auto;
    display: block;
    max-width: 100%;
    width: 100%;
  }
}
.content img.alignleft {
  float: left;
  margin: 0 10px 10px 0;
}
@media (max-width: 576px) {
  .content img.alignleft {
    float: none;
    width: 100%;
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
    display: block;
    margin: 0 0 10px 0;
    object-fit: cover;
  }
}
.content ul, .content ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
  margin: 0 0 15px 0;
}
.content ul li, .content ol li {
  color: var(--text-color);
}
.content figure {
  width: 100%;
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  display: block;
  margin: 0;
}
.content img.alignright {
  margin: 0 0 10px 10px;
  float: right;
}
@media (max-width: 576px) {
  .content img.alignright {
    float: none;
    width: 100%;
    object-fit: cover;
    max-width: 100%;
    box-sizing: border-box;
    display: block;
    height: auto;
    margin: 0 0 10px 0;
  }
}
.content img.size-full {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
  max-width: 100%;
}
@media (max-width: 576px) {
  .content img.size-full {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    object-fit: cover;
    display: block;
    margin: 0 0 10px 0;
  }
}
.content img.aligncenter {
  display: block;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .content img.aligncenter {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: block;
    object-fit: cover;
    margin: 0 0 10px 0;
  }
}
.content p {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  line-height: 22px;
}
@media (max-width: 990px) {
  .content p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 22px;
  }
}
.content a {
  transition: 0.3s;
  color: var(--link-color);
  font-weight: 500;
}
.content a:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
}
.content strong {
  font-weight: 700;
}
.content h1, .content h2, .content h3, .content h4, .content h5 {
  margin-bottom: 20px;
  color: var(--text-color);
  font-weight: 700;
}
@media (max-width: 990px) {
  .content h1, .content h2, .content h3, .content h4, .content h5 {
    margin-bottom: 15px;
  }
}
.content h1 {
  font-size: 40px;
  line-height: 51px;
}
@media (max-width: 990px) {
  .content h1 {
    font-size: 28px;
    line-height: 39px;
  }
}
.content h2 {
  font-size: 36px;
  line-height: 46px;
}
@media (max-width: 990px) {
  .content h2 {
    font-size: 26px;
    line-height: 33px;
  }
}
.content h3 {
  font-size: 32px;
  line-height: 40px;
}
@media (max-width: 990px) {
  .content h3 {
    font-size: 24px;
    line-height: 28px;
  }
}
.content h4 {
  font-size: 32px;
  line-height: 40px;
}
@media (max-width: 990px) {
  .content h4 {
    font-size: 24px;
    line-height: 28px;
  }
}
.content h5 {
  font-size: 32px;
  line-height: 40px;
}
@media (max-width: 990px) {
  .content h5 {
    font-size: 24px;
    line-height: 28px;
  }
}
.content blockquote {
  padding: 10px 0 10px 15px;
  border-left: 7px solid var(--blockquote-border);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  line-height: 22px;
  margin: 0 0 20px 0;
}
@media (max-width: 990px) {
  .content blockquote {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 22px;
  }
}
.content blockquote p {
  margin: 0;
}
.content .tablepress > :where(thead, tfoot) > tr > * {
  font-size: 16px;
  line-height: 21px;
  color: var(--table-text-color) !important;
  background: var(--table-bg-color) !important;
  border-right: 1px solid var(--table-border-color);
  border-bottom: 1px solid var(--table-border-color);
}
.content .tablepress > :where(tbody.row-striping) > :nth-child(even of :where(:not(.child, .dtrg-group))) + :where(.child) > *, .content .tablepress > :where(tbody.row-striping) > :nth-child(even of :where(:not(.child, .dtrg-group))) > * {
  font-size: 16px;
  line-height: 21px;
  color: var(--table-text-color) !important;
  background: var(--table-bg-color) !important;
  border-right: 1px solid var(--table-border-color);
  border-bottom: 1px solid var(--table-border-color);
}
.content .tablepress > :where(tbody.row-striping) > :nth-child(odd of :where(:not(.child, .dtrg-group))) + :where(.child) > *, .content .tablepress > :where(tbody.row-striping) > :nth-child(odd of :where(:not(.child, .dtrg-group))) > * {
  font-size: 16px;
  line-height: 21px;
  color: var(--table-text-color) !important;
  background: var(--table-bg-color) !important;
  border-right: 1px solid var(--table-border-color);
  border-bottom: 1px solid var(--table-border-color);
}
.content .tablepress tr td:last-child {
  border-right: none !important;
}
.content .tablepress tbody tr:last-child td {
  border-bottom: none !important;
}
.content .tablepress thead tr th:last-child {
  border-right: none !important;
}
.content .lwptoc {
  margin: 0 0 20px 0 !important;
}
.content .lwptoc-light .lwptoc_i A:active, .content .lwptoc-light .lwptoc_i A:focus, .content .lwptoc-light .lwptoc_i A:hover {
  text-decoration: underline;
  color: var(--link-hover-color);
}
.content .lwptoc_itemWrap {
  margin-top: 10px;
  display: none;
  flex-direction: column;
  gap: 10px;
}
.content .lwptoc_itemWrap-active {
  display: flex;
}
.content .lwptoc-light .lwptoc_items A:visited {
  color: var(--text-color);
}
.content .lwptoc-light .lwptoc_i {
  background: var(--table-of-content);
  color: var(--text-color);
  display: flex;
  border-radius: 6px;
  flex-direction: column;
}
.content .lwptoc-light .lwptoc_i A {
  color: var(--text-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}
.content .lwptoc_header {
  font-size: 25px;
  cursor: pointer;
  line-height: 1;
  margin: 0;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
}
@media (max-width: 990px) {
  .content .lwptoc_header {
    font-size: 16px;
  }
}
.content .lwptoc_header::after {
  content: "";
  background: url("../img/arrow-bottom.svg");
  background-size: 35px 35px;
  height: 35px;
  width: 35px;
  display: block;
  position: absolute;
  right: 0;
  top: -3.5px;
  transition: 0.3s;
  z-index: 2;
}
@media (max-width: 990px) {
  .content .lwptoc_header::after {
    background-size: 25px 25px;
    height: 25px;
    width: 25px;
    right: -0.5px;
    top: -2.5px;
  }
}
.content .lwptoc_header::before {
  content: "";
  background: var(--text-color);
  height: 40px;
  width: 40px;
  position: absolute;
  border-radius: 50%;
  right: -2.5px;
  top: -6.5px;
}
@media (max-width: 990px) {
  .content .lwptoc_header::before {
    height: 30px;
    width: 30px;
  }
}
.content .lwptoc_header-active::after {
  content: "";
  transform: rotate(180deg);
}
.content .text-img {
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-gap: 70px;
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 990px) {
  .content .text-img {
    grid-template-columns: 1fr;
    grid-gap: 15px;
    margin-bottom: 15px;
  }
}
.content .text-img__right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.content .text-img__right img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
}
.content .text-img-2 {
  grid-template-columns: 3fr 2fr;
}
@media (max-width: 990px) {
  .content .text-img-2 {
    grid-template-columns: 1fr;
  }
}
.content .btn-center {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 160px;
  margin: 0 auto 20px auto;
}
@media (max-width: 990px) {
  .content .btn-center {
    margin: 0 auto 15px auto;
  }
}
@media (max-width: 380px) {
  .content .btn-center {
    max-width: 100%;
  }
}
.content .pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 60px;
  margin-bottom: 20px;
}
@media (max-width: 990px) {
  .content .pros-cons {
    grid-template-columns: 1fr;
    grid-gap: 30px;
    margin-bottom: 15px;
  }
}
.content .pros-cons__left {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 25px;
  border: 2px solid #2EC273;
  border-radius: 5px;
  position: relative;
}
@media (max-width: 990px) {
  .content .pros-cons__left {
    padding: 25px 15px;
  }
}
.content .pros-cons__left::after {
  content: "";
  background: url("../img/icon_pros.svg");
  background-size: 40px 40px;
  height: 40px;
  width: 40px;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  top: -20px;
  position: absolute;
}
.content .pros-cons__left p::after {
  content: "";
  background: url("../img/icon_pros.svg");
  background-size: 25px 25px;
  height: 25px;
  width: 25px;
  display: block;
  left: 0;
  top: -3px;
  position: absolute;
}
.content .pros-cons__right {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 2px solid #d84929;
  padding: 25px;
  border-radius: 5px;
  position: relative;
}
@media (max-width: 990px) {
  .content .pros-cons__right {
    padding: 25px 15px;
  }
}
.content .pros-cons__right::after {
  content: "";
  background: url("../img/icon_cons.svg");
  background-size: 40px 40px;
  height: 40px;
  width: 40px;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  top: -20px;
  position: absolute;
}
.content .pros-cons__right p::after {
  content: "";
  background: url("../img/icon_cons.svg");
  background-size: 25px 25px;
  height: 25px;
  width: 25px;
  display: block;
  left: 0;
  top: -3px;
  position: absolute;
}
.content .pros-cons__text {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  margin: 0;
  position: relative;
  padding-left: 35px;
  line-height: 22px;
}
@media (max-width: 990px) {
  .content .pros-cons__text {
    font-size: 14px;
    line-height: 22px;
  }
}
.content .faq__title {
  margin-bottom: 25px;
}
.content .faq__wrap {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
}
.content .faq__item {
  padding: 25px 40px;
  position: relative;
  cursor: pointer;
  background: var(--faq-bg);
  border-radius: 6px;
}
@media (max-width: 990px) {
  .content .faq__item {
    padding: 10px;
  }
}
.content .faq__item-active {
  background: var(--faq-bg-active);
}
.content .faq__item-active .faq__item-title::after {
  content: "";
  transform: rotate(180deg);
}
.content .faq__item-active .faq__item-text {
  display: block;
}
.content .faq__item-title {
  margin: 0;
  position: relative;
  padding-right: 40px;
}
.content .faq__item-title::after {
  content: "";
  background: url(../img/arrow-bottom.svg);
  background-size: 35px 35px;
  height: 35px;
  width: 35px;
  display: block;
  position: absolute;
  right: 0;
  top: -3.5px;
  transition: 0.3s;
  z-index: 2;
}
@media (max-width: 990px) {
  .content .faq__item-title::after {
    background-size: 25px 25px;
    height: 25px;
    width: 25px;
    top: -1.5px;
  }
}
.content .faq__item-title::before {
  content: "";
  background: var(--text-color);
  height: 40px;
  width: 40px;
  position: absolute;
  border-radius: 50%;
  right: -2.5px;
  top: -6.5px;
}
@media (max-width: 990px) {
  .content .faq__item-title::before {
    height: 30px;
    top: -4.5px;
    width: 30px;
  }
}
.content .faq__item-title span {
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
}
@media (max-width: 990px) {
  .content .faq__item-title span {
    font-size: 18px;
    line-height: 22px;
  }
}
.content .faq__item-text {
  margin: 10px 0 0 0;
  display: none;
}
.content .faq__item-text p {
  margin: 0;
}

.footer {
  padding-bottom: 130px;
}
@media (max-width: 990px) {
  .footer {
    padding-bottom: 120px;
  }
}
.footer__logo {
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 990px) {
  .footer__logo {
    margin-bottom: 20px;
  }
}
.footer__logo img {
  object-fit: contain;
  max-width: 170px;
  max-height: 50px;
}
@media (max-width: 576px) {
  .footer__logo img {
    max-width: 160px;
    height: 35px;
  }
}
.footer__nav {
  margin-bottom: 35px;
}
@media (max-width: 990px) {
  .footer__nav {
    margin-bottom: 20px;
  }
}
.footer__nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 990px) {
  .footer__nav ul {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.footer__nav ul a {
  color: var(--link-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
}
.footer__text {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 600;
  max-width: 1200px;
  margin: 0 auto;
  line-height: 19px;
}

.banner-fixed {
  padding: 10px;
  border-radius: 8px;
  background: var(--bg-banner);
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: 999;
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 15px;
  max-width: 500px;
  width: 95%;
  box-sizing: border-box;
}
@media (max-width: 990px) {
  .banner-fixed {
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
  }
}
.banner-fixed__text {
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  color: var(--link-color);
}
.banner-fixed__text a {
  text-decoration: underline;
}

.up-to {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--btn-arrow-top-bg);
  height: 48px;
  width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  z-index: 2;
  justify-content: center;
  cursor: pointer;
  transition: 0.4s;
  transform: translateY(170%);
}

.up-to-active {
  transform: translateY(-100px);
}

.not-found {
  margin-bottom: 20%;
}
.not-found__title {
  font-size: 85px;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.2;
  text-align: center;
  color: var(--text-color);
}
.not-found a {
  max-width: 200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
