main {
  overflow: hidden;
  min-height: calc(100vh - 80px);
  margin: 110px 0 25px 0;
}

body, html {
  background: var(--bg-body);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

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

img {
  color: transparent;
}

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

div, section {
  position: relative;
  z-index: 2;
}

.container {
  width: 100%;
  box-sizing: border-box;
  max-width: 1200px;
  padding: 0;
  margin: 0 auto;
}

.padding {
  padding: 0 15px;
}

.margin {
  margin: 50px 0;
}
@media (max-width: 990px) {
  .margin {
    margin: 40px 0;
  }
}

a, button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

.overlay {
  overflow: hidden;
}

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

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

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

.header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  padding-bottom: 20px;
  padding-top: 20px;
  box-sizing: border-box;
  background: var(--bg-header);
  z-index: 99;
}
.header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.header__wrap-menu {
  display: grid;
  grid-template-columns: 1fr 4fr;
  grid-gap: 30px;
  align-items: center;
}
@media (max-width: 990px) {
  .header__wrap-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.header__item {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-gap: 20px;
  align-items: center;
}
@media (max-width: 990px) {
  .header__item {
    background: var(--bg-header);
    display: none;
    position: fixed;
    left: 0;
    width: 100vw;
    gap: 15px;
    padding: 15px;
    box-sizing: border-box;
    top: 108px;
  }
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__logo img {
  max-width: 130px;
  max-height: 90px;
  object-fit: contain;
  display: block;
  box-sizing: border-box;
}
@media (max-width: 990px) {
  .header__logo img {
    height: auto;
    width: auto;
    max-width: 120px;
    max-height: 80px;
  }
}
.header__menu {
  display: none;
  cursor: pointer;
}
@media (max-width: 990px) {
  .header__menu {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.header__menu .open-menu {
  display: block;
}
.header__menu .close-menu {
  display: none;
}
.header .c-call-menu .close-menu {
  display: none;
}
.header .c-call-menu.is-open .open-menu {
  display: none;
}
.header .c-call-menu.is-open .close-menu {
  display: block;
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 990px) {
  .header__nav {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
  }
}
.header__link {
  width: auto;
  color: var(--header-nav-color);
  font-weight: 400;
  font-size: 17px;
  line-height: 21px;
  text-align: left;
  background: transparent;
  appearance: none;
  cursor: pointer;
  padding: 0;
  transition: 0.3s;
}
.header__link:hover {
  color: var(--header-nav-hover);
}
.header__btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
}
.header__btn button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px 20px 5px 20px;
  border: 1px solid var(--header-btn-bg);
  background: var(--header-btn-bg);
  color: var(--header-btn-color);
  font-size: 17px;
  font-weight: 600;
  line-height: 21px;
  text-transform: capitalize;
  padding: 15px 25px;
  min-height: 40px;
  transition: 0.3s;
}
@media (max-width: 990px) {
  .header__btn button {
    padding: 10px;
    font-size: 16px;
  }
}
.header__btn button:first-child {
  border-radius: 5px 20px 5px 5px;
}
.header__btn button:first-child:hover {
  background: transparent;
  color: var(--header-btn-hover);
}
.header__btn button:last-child {
  background: transparent;
  color: var(--header-btn-hover);
}
.header__btn button:last-child:hover {
  background: var(--header-btn-bg);
  color: var(--header-btn-color);
}

.main-content {
  color: var(--text-color);
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
}
@media (max-width: 990px) {
  .main-content {
    font-size: 15px;
    line-height: 23px;
  }
}
.main-content figure {
  width: 100%;
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  display: block;
  margin: 0;
}
.main-content img.alignright {
  margin: 0 0 15px 15px;
  float: right;
}
@media (max-width: 576px) {
  .main-content img.alignright {
    float: none;
    width: 100%;
    object-fit: cover;
    max-width: 100%;
    box-sizing: border-box;
    display: block;
    height: auto;
    margin: 0 0 15px 0;
  }
}
.main-content img.size-full {
  display: block;
  margin: 0 auto 0 15px;
  width: 100%;
  height: auto;
  max-width: 100%;
}
@media (max-width: 576px) {
  .main-content img.size-full {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    object-fit: cover;
    display: block;
    margin: 0 0 15px 0;
  }
}
.main-content img.aligncenter {
  display: block;
  margin: 0 auto 0 15px;
}
@media (max-width: 576px) {
  .main-content img.aligncenter {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: block;
    object-fit: cover;
    margin: 0 0 15px 0;
  }
}
.main-content p {
  color: var(--text-color);
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
}
@media (max-width: 990px) {
  .main-content p {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 23px;
  }
}
.main-content caption {
  color: var(--link_color);
  margin: 5px;
  text-align: center;
}
.main-content a {
  color: var(--link_color);
  font-weight: 500;
}
.main-content a:hover {
  color: var(--hover-site);
  text-decoration: underline;
}
.main-content span {
  color: var(--hover-site);
}
.main-content strong {
  font-weight: 700;
}
.main-content h1, .main-content h2, .main-content h3, .main-content h4, .main-content h5 {
  color: var(--title-color);
  margin-bottom: 20px;
  font-weight: 700;
}
@media (max-width: 990px) {
  .main-content h1, .main-content h2, .main-content h3, .main-content h4, .main-content h5 {
    margin-bottom: 15px;
  }
}
.main-content h1 span, .main-content h2 span, .main-content h3 span, .main-content h4 span, .main-content h5 span {
  color: var(--title-color-span);
}
.main-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}
@media (max-width: 990px) {
  .main-content h1 {
    font-size: 27px;
    line-height: 1.3;
    margin-bottom: 10px;
  }
}
.main-content h2 {
  font-size: 37px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}
@media (max-width: 990px) {
  .main-content h2 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 10px;
  }
}
.main-content h3, .main-content h4, .main-content h5 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}
@media (max-width: 990px) {
  .main-content h3, .main-content h4, .main-content h5 {
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 10px;
  }
}
.main-content ul, .main-content ol {
  padding-left: 25px;
  margin: 0 0 20px 0;
}
@media (max-width: 990px) {
  .main-content ul, .main-content ol {
    margin-bottom: 15px;
  }
}
.main-content ul li, .main-content ol li {
  color: var(--list-color);
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}
@media (max-width: 990px) {
  .main-content ul li, .main-content ol li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 22px;
  }
}
.main-content table {
  margin-bottom: 20px;
}
@media (max-width: 990px) {
  .main-content table {
    display: block;
    max-width: 100%;
    width: 100%;
    margin-bottom: 15px;
    box-sizing: border-box;
    overflow-x: auto;
  }
}
.main-content table thead th:first-child {
  border-radius: 5px 0 0 0;
}
.main-content table thead th:last-child {
  border-radius: 0 5px 0 0;
}
.main-content table thead th {
  background-color: var(--table-head-bg);
  color: var(--table-head-color);
}
.main-content table tr td:first-child {
  border-radius: 5px 0 0 0;
}
.main-content table tr td:last-child {
  border-radius: 0 5px 0 0;
}
.main-content table tr td {
  background-color: var(--table-text-bg);
  color: var(--table-text-color);
}
.main-content .tablepress > :where(thead) + tbody > :where(:not(.child)) > *, .main-content .tablepress > tbody > * ~ :where(:not(.child)) > *, .main-content .tablepress > tfoot > :where(:first-child) > * {
  border: 1px solid var(--table-border-color);
}
.main-content .tablepress > :where(thead, tfoot) > tr > * {
  background-color: var(--table-head-bg) !important;
  color: var(--table-head-color) !important;
  border: 1px solid var(--table-border-color);
}
.main-content .tablepress > :where(tbody.row-striping) > :nth-child(odd of :where(:not(.child, .dtrg-group))) + :where(.child) > *, .main-content .tablepress > :where(tbody.row-striping) > :nth-child(odd of :where(:not(.child, .dtrg-group))) > * {
  background-color: var(--table-text-bg) !important;
  color: var(--table-text-color) !important;
}
.main-content .tablepress > :where(tbody.row-striping) > :nth-child(even of :where(:not(.child, .dtrg-group))) + :where(.child) > *, .main-content .tablepress > :where(tbody.row-striping) > :nth-child(even of :where(:not(.child, .dtrg-group))) > * {
  background-color: var(--table-text-bg) !important;
  color: var(--table-text-color) !important;
}
.main-content .title-section {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}
@media (max-width: 990px) {
  .main-content .title-section {
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 10px;
  }
}
.main-content p:last-child {
  margin: 0;
}
.main-content .custom-list {
  display: grid;
  grid-gap: 10px;
}
@media (max-width: 990px) {
  .main-content .custom-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .main-content .custom-list {
    grid-template-columns: 1fr;
  }
}
.main-content .custom-list__large {
  font-size: 20px;
  line-height: 28px;
}
@media (max-width: 990px) {
  .main-content .custom-list__large {
    font-size: 15px;
    line-height: 22px;
  }
}
.main-content .custom-list li {
  margin: 0;
}
.main-content .custom-list-2 {
  grid-template-columns: 1fr 1fr;
  grid-gap: 25px;
}
@media (max-width: 990px) {
  .main-content .custom-list-2 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .main-content .custom-list-2 {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
}
.main-content .custom-list-3 {
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 25px;
}
@media (max-width: 990px) {
  .main-content .custom-list-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .main-content .custom-list-3 {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
}
.main-content .custom-list-none {
  list-style-type: none;
  padding: 0 0 0 5px;
}
.main-content .custom-list-none li {
  display: flex;
  align-items: center;
}
.main-content .custom-list-none span {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.main-content .custom-list-none img {
  height: 35px;
  width: 35px;
  margin-right: 10px;
}
.main-content .title-with-icon {
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 30px 30px;
  padding-left: 35px;
}
.main-content .btn-ref {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.main-content .btn-ref button:nth-child(1) {
  border: 1px solid var(--header-btn-bg);
  background: var(--header-btn-bg);
  color: var(--header-btn-color);
}
.main-content .btn-ref button:nth-child(1):hover {
  background: transparent;
  color: var(--header-btn-hover);
}
.main-content button {
  border-radius: 5px 20px 5px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--button-bg-hover);
  background: var(--button-bg);
  color: var(--button-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 23px;
  padding: 15px 20px;
  max-width: 200px;
  min-height: 40px;
  transition: 0.3s;
}
@media (max-width: 990px) {
  .main-content button {
    padding: 10px;
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .main-content button {
    max-width: 100%;
  }
}
.main-content button:hover {
  background: var(--button-bg-hover);
  color: var(--button-color-hover);
}

.footer {
  background: var(--footer-bg);
}
.footer__top {
  margin-bottom: 30px;
  padding: 50px 0;
  display: grid;
  align-items: start;
  grid-template-columns: 3fr 2fr 2fr 2fr;
  grid-gap: 70px;
}
@media (max-width: 990px) {
  .footer__top {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px 0;
    grid-gap: 30px;
  }
}
@media (max-width: 576px) {
  .footer__top {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
.footer__item {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
}
.footer__mail {
  color: var(--footer-link);
  font-weight: 400;
  font-size: 15px;
  line-height: 21px;
  transition: 0.3s;
}
.footer__mail:hover {
  color: var(--footer-link-hover);
}
.footer__link {
  color: var(--footer-link);
  font-weight: 400;
  font-size: 15px;
  line-height: 21px;
  text-align: left;
  background: transparent;
  appearance: none;
  cursor: pointer;
  padding: 0;
  transition: 0.3s;
}
.footer__link:hover {
  color: var(--footer-link-hover);
}
.footer__title {
  color: var(--footer-title);
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 21px;
}
.footer__bottom {
  color: var(--footer-text);
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  margin: 0;
  padding-bottom: 20px;
}

.arrow-top {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 9;
  cursor: pointer;
  transition: 0.3s;
  transform: translateY(150px);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 50%;
}
@media (max-width: 990px) {
  .arrow-top {
    right: 20px;
    bottom: 20px;
  }
}

.active-arr {
  transform: translateY(0);
}

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