.pagination {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .pagination {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .pagination {
    margin-bottom: 64px;
  }
}
.pagination__number {
  display: none;
}
.pagination__number:nth-child(-n+7) {
  display: flex;
}
@media (max-width: 768px) {
  .pagination__number {
    display: flex;
  }
}
.pagination a {
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  color: var(--light-dark);
  transition: background-color 0.3s;
  border: 2px solid var(--light-dark);
  margin-right: 6px;
}
@media (max-width: 1240px) {
  .pagination a {
    font-size: 24px;
    line-height: 29px;
  }
}
.pagination a.active {
  color: var(--green);
  border-color: var(--green);
}
.pagination a:hover:not(.active) {
  color: var(--green);
  border-color: var(--green);
}
.pagination__next, .pagination__prev {
  display: flex;
}
.pagination__next svg, .pagination__prev svg {
  width: 24px;
  height: 18px;
}
.pagination__next svg path, .pagination__prev svg path {
  fill: var(--light-dark);
}
.pagination__next:hover svg path, .pagination__prev:hover svg path {
  fill: var(--green);
}
.pagination__next svg {
  transform: rotate(180deg);
}

#toast {
  visibility: hidden;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  /*width: 420px;*/
  max-width: 100%;
  margin-left: -125px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 20px 30px;
  position: fixed;
  z-index: 9999;
  right: 3%;
  bottom: 30px;
  gap: 2rem;
}
#toast.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
#toast .toast__message {
  display: inline-block;
  max-width: max-content;
}
#toast .toast__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 32px;
  max-height: 32px;
}
#toast .toast__icon img, #toast .toast__icon svg {
  width: 100%;
  height: 100%;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
:root {
  --indexSize: calc(1vw + 1vh);
  --white: #FFFFFF;
  --dark: #000000;
  --dark-gray: #2E2E2E;
  --green: #00D865;
  --gray: #D9D9D9;
  --light: #939393;
  --light-dark: #747171;
  --box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.35);
  --border: 4px solid var(--green);
  --border-radius: 5px;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  box-shadow: inset 0px 4px 20px rgba(0, 0, 0, 0.25);
  overflow: visible;
  color: var(--dark-gray);
}

main {
  overflow: hidden;
}

h2, h3, h4, h5, h6, p {
  margin-bottom: 1rem;
}

h1 {
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  color: var(--dark);
}
@media (max-width: 768px) {
  h1 {
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
  }
}
@media (max-width: 567px) {
  h1 {
    font-size: 20px;
    line-height: 24px;
  }
}

h2 {
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
    line-height: 1.375rem;
  }
}

h3 {
  font-size: 1.5rem;
  line-height: 1.81rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}
@media (max-width: 567px) {
  h3 {
    font-size: 1rem;
    line-height: 1.2rem;
  }
}

p {
  font-size: 1rem;
  line-height: 1.5em;
  margin-bottom: 1.25rem;
  color: var(--dark);
}

a {
  color: var(--green);
  text-decoration: none;
}

button,
input {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
  cursor: pointer;
}

ul, ol {
  position: relative;
  font-size: 1rem;
  line-height: 1.5rem;
  padding-left: 2rem;
  margin-bottom: 1.25rem;
}
ul li, ol li {
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  ul, ol {
    font-size: 1rem;
    line-height: 1.2rem;
  }
}

.list-reset {
  list-style: none;
  padding: 0;
}
.list-reset li {
  margin-bottom: initial;
}
.list-reset li::before, .list-reset li::after {
  display: none;
}

ul {
  list-style: none;
}
ul li {
  position: relative;
}
ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5rem;
  left: -1.2rem;
  width: 8px;
  height: 8px;
  background-color: var(--green);
}

hr {
  margin: 0.67rem 0;
  height: 2px;
  background: var(--light);
}

blockquote {
  position: relative;
  min-height: 150px;
  background-color: #F2F2F2;
  border-left: 65px solid #C4C4C4;
  margin: 2.5rem 0;
  font-style: italic;
  padding: 1rem 1rem 3rem 1rem;
  font-size: 1rem;
  line-height: 1.25rem;
}
@media (max-width: 768px) {
  blockquote {
    border-left: 2rem solid #C4C4C4;
    margin: 1.5rem 0;
  }
}
blockquote::before {
  display: block;
  content: "";
  position: absolute;
  top: 15px;
  left: -41px;
  background-image: url("/static/assets/icons/quotes.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  blockquote::before {
    left: -27px;
  }
}
blockquote cite {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  text-align: end;
  padding: 0 1rem;
  color: var(--green);
  font-size: 1.3rem;
  line-height: 1.5rem;
}
@media (max-width: 768px) {
  blockquote cite {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}

.container {
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 1450px;
}
@media (max-width: 567px) {
  .container {
    padding: 0 1rem;
  }
}

.btn {
  width: 270px;
  height: 50px;
  margin: 0 auto;
  background-color: var(--green);
  border-radius: var(--border-radius);
  font-weight: 400;
  font-size: 1.5rem;
  transition: 0.3s ease;
  text-align: center;
  cursor: pointer;
}
.btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--white);
}
.btn:hover {
  font-size: 1.7rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
}
@media (max-width: 567px) {
  .btn {
    width: 100%;
  }
}

.body-active {
  overflow: hidden;
}

.h-100 {
  height: 100%;
}
.breadcrumbs {
  margin: 3rem auto;
}
@media (max-width: 768px) {
  .breadcrumbs {
    margin: 1rem auto;
  }
}
.breadcrumbs ul {
  display: flex;
  align-items: center;
  gap: 0.5rem 2.5rem;
  flex-wrap: wrap;
}
@media (max-width: 567px) {
  .breadcrumbs ul {
    gap: 0 1.25rem;
  }
}
.breadcrumbs ul li {
  line-height: 1rem;
}
.breadcrumbs ul li a {
  position: relative;
  font-size: 1rem;
  line-height: 1.2rem;
  color: var(--dark);
}
@media (max-width: 567px) {
  .breadcrumbs ul li a {
    font-size: 0.8rem;
    line-height: 1rem;
  }
}
.breadcrumbs ul li a::after {
  content: ">";
  display: block;
  position: absolute;
  top: 1px;
  right: -1.6rem;
  font-size: 1rem;
  font-weight: bold;
  pointer-events: none;
  cursor: default;
}
@media (max-width: 567px) {
  .breadcrumbs ul li a::after {
    top: -1px;
    right: -0.9rem;
    font-size: 0.7rem;
  }
}
.breadcrumbs ul li span {
  font-size: 1rem;
  line-height: 1.2rem;
}
@media (max-width: 567px) {
  .breadcrumbs ul li span {
    font-size: 0.8rem;
    line-height: 1rem;
  }
}
.downloads-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 0.8rem;
  gap: 1rem;
}
.downloads-list .download-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: black;
}
.downloads-list .download-item:active {
  color: var(--green);
}
.downloads-list .download-item svg path {
  transition: all 0.376s;
  fill: currentColor;
}
.downloads-list .download-item:hover svg path {
  fill: var(--green);
}
.footer {
  background-color: var(--dark);
}
.footer-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.875rem;
}
@media (max-width: 850px) {
  .footer-content {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}
.footer-content-left {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 120px;
}
@media (max-width: 1000px) {
  .footer-content-left {
    gap: 1.875rem;
  }
}
@media (max-width: 850px) {
  .footer-content-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
  }
}
.footer-content-left__contacts {
  display: flex;
  gap: 0.8rem;
  flex-direction: column;
}
.footer-content-left__contacts li {
  display: flex;
  align-items: center;
}
.footer-content-left__contacts span, .footer-content-left__contacts a {
  font-size: 1rem;
  color: var(--white);
  margin-left: 0.5rem;
  line-height: 1.4rem;
}
.footer-content-left__contacts a {
  transition: 0.3s ease;
}
.footer-content-left__contacts a:hover {
  color: var(--green);
}
@media (max-width: 850px) {
  .footer-content-left__menu {
    margin-bottom: 2.5rem;
    padding-left: calc(20px + 0.5rem);
  }
}
.footer-content-left__menu li a {
  font-size: 1rem;
  color: var(--white);
  transition: 0.3s ease;
}
.footer-content-left__menu li a:hover {
  color: var(--green);
}
.footer-content-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 850px) {
  .footer-content-right {
    width: 100%;
  }
}
.footer-content-right ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.footer-content-right ul span {
  color: var(--white);
}
@media (max-width: 850px) {
  .footer-content-right ul span {
    display: none;
  }
}
.footer-content-right__socials ul li a:hover img {
  transform: scale(1.2);
}
.footer-content-right__socials ul li a img {
  transition: 0.3s ease;
}
.footer-copyright {
  text-align: center;
  width: 300px;
  margin: 0 auto;
  padding-bottom: 1rem;
}
.footer-copyright span {
  color: var(--light);
  font-size: 0.875rem;
  line-height: 0.75rem;
}
.main-form {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 70px;
}
.main-form__title {
  text-align: center;
  color: var(--white);
  padding-top: 5.5rem;
  padding-bottom: 1rem;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
}
@media (max-width: 768px) {
  .main-form__title {
    padding-top: 1.62rem;
    padding-bottom: 0.8rem;
  }
}
.main-form__subTitle {
  text-align: center;
  color: var(--white);
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  padding-bottom: 2rem;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .main-form__subTitle {
    padding-bottom: 3.5rem;
    font-size: 1.4rem;
  }
}
@media (max-width: 567px) {
  .main-form__subTitle {
    padding-bottom: 1rem;
    font-size: 1rem;
  }
}
.main-form .form {
  padding: 0 1rem;
}
.main-form .form__input-email {
  cursor: text;
  display: block;
  margin: 0 auto;
  color: var(--white);
  width: 600px;
  border: var(--border);
  border-radius: var(--border-radius);
  padding: 0.87rem 1.56rem;
  margin-bottom: 1rem;
  outline: none;
}
.main-form .form__input-email::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: rgba(250, 250, 250, 0.6);
}
@media (max-width: 768px) {
  .main-form .form__input-email {
    width: 100%;
  }
}
@media (max-width: 567px) {
  .main-form .form__input-email {
    padding: 0.5rem 1rem;
  }
}
.main-form .form__checkbox-wrap {
  text-align: center;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .main-form .form__checkbox-wrap {
    width: 100%;
  }
}
.main-form .form__checkbox-wrap input[type=checkbox] {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background-color: transparent;
}
.main-form .form__checkbox-wrap input[type=checkbox]::before {
  content: "";
  display: inline-block;
  font-size: 20px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border: 1px solid var(--green);
  border-radius: 5px;
  vertical-align: middle;
  margin-right: 0.4rem;
  margin-bottom: 2px;
  transition: all 0.463s;
}
.main-form .form__checkbox-wrap input[type=checkbox]:checked::after {
  content: "";
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  position: absolute;
  left: 4px;
  top: 9px;
  width: 12px;
  height: 12px;
  background-color: var(--green);
  border-radius: 3px;
}
.main-form .form__checkbox-wrap input[type=checkbox]:hover::before {
  box-shadow: 0 0 4px 1px rgba(0, 216, 101, 0.431372549);
}
.main-form .form__checkbox-wrap label {
  cursor: pointer;
  color: var(--white);
}
.main-form .form__send-btn {
  color: var(--white);
  display: block;
  margin: 0 auto;
}
.main-form .form__send-btn[disabled] {
  background: var(--light-dark);
}
.header a {
  color: var(--dark);
}
.header-top {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .header-top {
    display: none;
  }
}
.header-top__contacts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem;
}
@media (max-width: 998px) {
  .header-top__contacts {
    gap: 2rem;
  }
}
.header-top__contacts-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-top__contacts-item a {
  transition: 0.3s ease;
}
@media (max-width: 998px) {
  .header-top__contacts-item a {
    font-size: 1rem;
  }
}
.header-top__contacts-item a:hover {
  color: var(--green);
}
.header-top__contacts-languages {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}
.header-top__contacts-languages_selected {
  cursor: pointer;
}
@media (max-width: 998px) {
  .header-top__contacts-languages_selected span {
    font-size: 1rem;
  }
}
.header-top__contacts-languages .drop-down {
  display: none;
  align-items: center;
  flex-direction: column;
  max-width: 300px;
  border-radius: var(--border-radius);
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 999;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
  background-color: var(--white);
  transition: 0.3s ease;
  overflow: hidden;
}
.header-top__contacts-languages .drop-down li {
  width: 100%;
}
.header-top__contacts-languages .drop-down li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 1.32rem;
  cursor: pointer;
  transition: 0.3s ease;
}
.header-top__contacts-languages .drop-down li a:hover {
  background-color: var(--green);
}
.header-top__contacts-languages .drop-down li a span {
  line-height: 1.18rem;
  font-size: 1rem;
}
.header-top__contacts-languages .drop-down li a span:first-child {
  line-height: 0.75rem;
  font-size: 0.8rem;
}
.header-bottom {
  height: 100px;
  background-color: var(--dark);
}
@media (max-width: 768px) {
  .header-bottom {
    display: none;
  }
}
.header-bottom nav {
  height: 100%;
}
.header-bottom nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.header-bottom nav > ul li a {
  display: block;
  color: var(--white);
  padding: 1rem;
}
.header-bottom nav > ul li a span {
  display: inline-block;
  margin-left: 0.6rem;
}
.header-bottom nav > ul li a span svg path {
  fill: var(--white);
}
.header-bottom nav > ul li a:hover {
  color: var(--green);
}
.header-bottom nav > ul li a:hover svg path {
  fill: var(--green);
}
.header-bottom nav > ul li:hover ul.dropdown {
  display: block;
}
.header-bottom nav > ul > li ul.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  background-color: var(--white);
}
.header-bottom nav > ul > li ul.dropdown li {
  margin: 0;
}
.header-bottom nav > ul > li ul.dropdown li a {
  white-space: nowrap;
  padding: 0.5rem 1.2rem;
  min-width: fit-content;
  color: var(--dark);
}
.header-bottom nav > ul > li ul.dropdown li a:hover {
  color: var(--green);
}
.header-mobile {
  display: none;
}
@media (max-width: 768px) {
  .header-mobile {
    display: block;
  }
}
.header-mobile__top {
  position: fixed;
  top: 0;
  left: 0;
  height: 100px;
  background-color: var(--dark);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 990;
}
.header-mobile__top-hamburger {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  height: 28px;
}
.header-mobile__top-hamburger span {
  display: inline-block;
  width: 33px;
  height: 5px;
  background-color: var(--white);
  transition: 0.3s ease;
}
.header-mobile__top-hamburger::before, .header-mobile__top-hamburger::after {
  position: absolute;
  left: 0;
  content: "";
  display: block;
  width: 33px;
  height: 5px;
  background-color: var(--white);
  transition: 0.3s ease;
}
.header-mobile__top-hamburger::after {
  bottom: 0;
}
.header-mobile__top-hamburger::before {
  top: 0;
}
.header-mobile__top-languages {
  position: relative;
}
.header-mobile__top-languages_selected {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.header-mobile__top-languages_selected span {
  color: var(--white);
  font-size: 1.5rem;
}
.header-mobile__top-languages .drop-down-mobile {
  display: none;
  align-items: center;
  flex-direction: column;
  max-width: 300px;
  border-radius: var(--border-radius);
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 999;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
  background-color: var(--white);
  transition: 0.3s ease;
  overflow: hidden;
}
.header-mobile__top-languages .drop-down-mobile li {
  width: 100%;
}
.header-mobile__top-languages .drop-down-mobile li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 1.32rem;
  cursor: pointer;
  transition: 0.3s ease;
}
.header-mobile__top-languages .drop-down-mobile li a:hover {
  background-color: var(--green);
}
.header-mobile__top-languages .drop-down-mobile li a span {
  line-height: 1.18rem;
  font-size: 1rem;
}
.header-mobile__top-languages .drop-down-mobile li a span:first-child {
  line-height: 0.75rem;
  font-size: 0.8rem;
}
.header-mobile__top-menu {
  z-index: 999;
  position: absolute;
  top: 100px;
  left: -350px;
  width: 320px;
  background-color: var(--white);
  transition: 0.3s ease;
}
.header-mobile__top-menu > ul {
  height: 100vh;
}
.header-mobile__top-menu > ul li {
  border-bottom: 2px solid var(--light);
  transition: 0.3s ease;
}
.header-mobile__top-menu > ul li a {
  padding: 1.25rem;
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
}
.header-mobile__top-menu > ul li a:hover {
  color: var(--green);
}
.header-mobile__top-menu > ul li a:hover svg {
  transform: rotate(180deg);
}
.header-mobile__top-menu > ul li a:hover svg path {
  fill: var(--green);
}
.header-mobile__top-menu ul.dropdown {
  display: none;
  border-top: 2px solid var(--light);
  margin-bottom: 0;
}
.header-mobile__top-menu ul.dropdown li a {
  padding-left: 2rem;
}
.header-mobile__top-menu ul.dropdown li:nth-last-child(1) {
  border-bottom: none;
}
.header-mobile__top-menu ul.dropdown.open {
  display: block;
}
.header-mobile__bottom {
  width: 100%;
  padding-top: 100px;
}
.header-mobile__bottom-logo {
  margin-top: 0.8rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .header-mobile__bottom-logo {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 567px) {
  .header-mobile__bottom-logo {
    margin-bottom: 1rem;
  }
}
.header-mobile__bottom-logo img {
  max-width: 100%;
}
@media (max-width: 567px) {
  .header-mobile__bottom-logo img {
    width: 155px;
  }
}
.header-mobile__bottom-contacts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
@media (max-width: 567px) {
  .header-mobile__bottom-contacts {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
  }
}
.header-mobile__bottom-contacts_item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header-mobile__bottom-contacts_item a {
  font-size: 1.5rem;
}
@media (max-width: 567px) {
  .header-mobile__bottom-contacts_item a {
    font-size: 1rem;
  }
}

.hamburger-active span {
  opacity: 0;
}
.hamburger-active::before {
  top: 11px;
  transform: rotate(45deg);
}
.hamburger-active::after {
  transform: rotate(-45deg);
  bottom: 12px;
}

.mobile-menu-active {
  left: 0;
  overflow: visible;
}

.mobile-languages-active {
  display: flex !important;
  right: 0 !important;
}

.languages-active {
  display: flex !important;
}
.title-page {
  width: 100%;
  background-color: var(--green);
}
.title-page__bg {
  height: 350px;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .title-page__bg {
    height: auto;
    padding: 125px 0;
  }
}
@media (max-width: 567px) {
  .title-page__bg {
    height: auto;
    padding: 84px 0;
  }
}
.title-page__content {
  min-height: 100px;
  padding-top: 25px;
  padding-bottom: 25px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.article-title {
  background-color: var(--green);
}
.article-content {
  margin-bottom: 2.4rem;
}
.article-content__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .article-content__images {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 567px) {
  .article-content__images {
    grid-template-columns: 1fr;
  }
}
.article-content__images a {
  overflow: hidden;
  height: calc(var(--indexSize) * 15);
  min-height: 160px;
  max-height: 350px;
}
.article-content__images a:hover img {
  transform: scale(1.1);
}
.article-content__images a img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}
.contacts {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .contacts {
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-start;
    margin-bottom: 0;
  }
}
.contacts h2 {
  margin-bottom: 2rem;
}
.contacts__info {
  width: 40%;
}
@media (max-width: 768px) {
  .contacts__info {
    width: 100%;
  }
}
@media (max-width: 567px) {
  .contacts__info a {
    display: block;
    margin-bottom: 0.5rem;
  }
}
.contacts__info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.2rem;
  font-weight: 500;
}
.contacts__info-numbers, .contacts__info-email, .contacts__info-requisites, .contacts__info-location {
  margin-bottom: 1.25rem;
  line-height: 1rem;
  font-weight: 400;
}
.contacts__info-numbers a {
  color: var(--dark);
}
.contacts__info-email a {
  display: block;
}
.contacts__info-requisites ul li {
  margin-bottom: 0.5rem;
}
.contacts__map {
  width: 50%;
}
@media (max-width: 768px) {
  .contacts__map {
    width: 100%;
    height: 250px;
  }
}
.contacts__map iframe {
  max-width: 100%;
  max-height: 100%;
}
.main-about {
  margin-top: 1.25rem;
  margin-bottom: 1.875rem;
  background: rgba(255, 255, 255, 0.01);
  box-shadow: inset 0px 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  text-align: center;
  padding: 1rem;
}
@media (max-width: 768px) {
  .main-about {
    margin-top: 2.875rem;
    padding: 1.8rem;
    text-align: start;
  }
}
@media (max-width: 567px) {
  .main-about {
    box-shadow: none;
    padding: 0;
    margin-bottom: 3.6rem;
  }
}
.main-about__title {
  margin-bottom: 1.56rem;
}
@media (max-width: 567px) {
  .main-about__title {
    text-align: center;
  }
}
.main-about__description {
  margin-bottom: 2.2rem;
}
@media (max-width: 567px) {
  .main-about__description {
    text-align: justify;
  }
}
@media (max-width: 768px) {
  .main-about__link {
    margin: 0 0 0 auto;
  }
}
.main-news {
  margin-top: 2.75rem;
}
.main-news__title {
  text-align: center;
  margin-bottom: 2rem;
}
.main-news__list {
  width: 100%;
  display: grid;
  margin-bottom: 5.25rem;
  grid-template-areas: "n1 n2 n3" "n1 n4 n5";
  gap: 1rem;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 870px) {
  .main-news__list {
    margin-bottom: 3.5rem;
    grid-template-columns: 1fr;
    grid-template-areas: "n1" "n2" "n3" "n4" "n5";
  }
}
.main-news__list-item {
  padding-top: 0.5rem;
}
.main-news__list-item:nth-child(1) {
  position: relative;
  min-height: 201px;
  padding: 0.5rem;
  grid-area: n1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.main-news__list-item:nth-child(1)::before {
  display: block !important;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2941176471);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 870px) {
  .main-news__list-item:nth-child(1) {
    background-image: none !important;
    min-height: auto;
  }
  .main-news__list-item:nth-child(1)::before {
    display: none !important;
  }
}
.main-news__list-item:nth-child(1) a {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.main-news__list-item:nth-child(1) a > span {
  margin-bottom: auto;
}
.main-news__list-item:nth-child(1) a > p {
  color: var(--white);
}
@media (max-width: 870px) {
  .main-news__list-item:nth-child(1) a > p {
    color: var(--dark);
  }
}
.main-news__list-item:nth-child(2) {
  grid-area: n2;
}
.main-news__list-item:nth-child(3) {
  grid-area: n3;
}
.main-news__list-item:nth-child(4) {
  grid-area: n4;
}
.main-news__list-item:nth-child(5) {
  grid-area: n5;
}
@media (max-width: 870px) {
  .main-news__list-item {
    width: 100%;
    text-align: center;
  }
}
.main-news__list-item a {
  display: block;
}
.main-news__list-item a span {
  color: var(--green);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  line-height: 1.5rem;
}
.main-news__list-item a p {
  font-size: 1rem;
  line-height: 2rem;
  text-align: start;
}
.main-news__btn {
  margin-bottom: 4.25rem;
}
@media (max-width: 870px) {
  .main-news__btn {
    margin: 0 0 1.68rem auto;
  }
}
.main-services {
  background-color: var(--green);
}
.main-services-content__title {
  text-align: center;
  padding: 1.18rem 0;
}
.main-services-content__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 43px 22px;
  padding-bottom: 3.12rem;
}
@media (max-width: 768px) {
  .main-services-content__list {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 564px) {
  .main-services-content__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.main-services-content__list-item {
  position: relative;
  height: calc(var(--indexSize) * 20);
  max-height: 380px;
  border-radius: var(--border-radius);
  padding: 2rem 0.5rem;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.3);
  overflow: hidden;
  text-overflow: ellipsis;
}
.main-services-content__list-item:hover .main-services-content__list-item_bg {
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .main-services-content__list-item {
    height: 280px;
    padding: 0.5rem;
  }
}
@media (max-width: 567px) {
  .main-services-content__list-item {
    height: 280px;
    padding: 0.5rem;
  }
}
.main-services-content__list-item_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: 0.3s ease;
}
.main-services-content__list-item_title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  z-index: 10;
}
.main-services-content__list-item_title img {
  width: 70px;
}
@media (max-width: 1100px) {
  .main-services-content__list-item_title img {
    width: 50px;
  }
}
.main-services-content__list-item_title h3 {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 2.37rem;
  color: var(--white);
  margin-bottom: 0;
}
@media (max-width: 1100px) {
  .main-services-content__list-item_title h3 {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}
.main-services-content__list-item_description {
  position: relative;
  padding-left: 78px;
  z-index: 10;
}
@media (max-width: 1100px) {
  .main-services-content__list-item_description {
    font-size: 1.25rem;
    line-height: 1.5rem;
    padding-left: 0;
  }
}
.main-services-content__list-item_description p {
  font-size: 1.2rem;
  line-height: 1.81rem;
  color: var(--white);
  height: 170px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.main-slider {
  position: relative;
}
.main-slider .slick-track {
  display: flex;
}
.main-slider .slick-list {
  overflow: hidden;
}
.main-slider .slick-arrow {
  position: absolute;
  top: calc(50% - 17.5px);
  z-index: 10;
  font-size: 0;
  width: 20px;
  height: 34px;
}
@media (max-width: 768px) {
  .main-slider .slick-arrow {
    height: 15px;
    width: 10px;
    top: calc(50% - 7.5px);
  }
}
.main-slider .slick-next {
  background-image: url("/static/assets/icons/arrow-right.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  right: calc((100vw - 1450px) / 2 + 2rem);
}
@media (max-width: 1450px) {
  .main-slider .slick-next {
    right: 2rem;
  }
}
@media (max-width: 567px) {
  .main-slider .slick-next {
    right: 1rem;
  }
}
.main-slider .slick-prev {
  background-image: url("/static/assets/icons/arrow-left.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  left: calc((100vw - 1450px) / 2 + 2rem);
}
@media (max-width: 1450px) {
  .main-slider .slick-prev {
    left: 2rem;
  }
}
@media (max-width: 567px) {
  .main-slider .slick-prev {
    left: 1rem;
  }
}
.main-slider__item {
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.main-slider__item > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.main-slider__item h1 {
  font-weight: 700;
  font-size: 3rem;
  line-height: 3.625rem;
  letter-spacing: 0.145em;
  color: var(--white);
  margin-bottom: 0;
}
@media (max-width: 1000px) {
  .main-slider__item h1 {
    font-size: 2.2rem;
    line-height: 2.6rem;
  }
}
@media (max-width: 768px) {
  .main-slider__item h1 {
    font-size: 1.5rem;
    line-height: 1.81rem;
  }
}
@media (max-width: 567px) {
  .main-slider__item h1 {
    font-size: 0.875rem;
    width: 60%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .main-slider__item {
    height: 550px;
  }
}
@media (max-width: 567px) {
  .main-slider__item {
    height: 350px;
  }
}
.news {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  position: relative;
}
@media (max-width: 1140px) {
  .news {
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .news {
    flex-direction: column;
  }
}

.news-list {
  width: calc(100% - 300px);
  min-width: 0;
}
@media (max-width: 1140px) {
  .news-list {
    width: calc(100% - 200px);
  }
}
@media (max-width: 768px) {
  .news-list {
    width: 100%;
    margin-top: 105px;
  }
}
.news-list__item {
  display: flex;
  gap: 1.625rem;
  height: 310px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .news-list__item {
    flex-direction: column;
    height: auto;
    gap: 1rem;
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .news-list__item-image {
    width: 100%;
  }
}
.news-list__item-image img {
  max-width: 100%;
}
.news-list__item-info {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .news-list__item-info {
    width: 100%;
    gap: 1rem;
  }
}
.news-list__item-info_content > span {
  display: inline-block;
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--green);
}
.news-list__item-info_content > h3 {
  margin-bottom: 1rem;
}
.news-list__item-info_content > p {
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 400;
}

.news-sidebar {
  width: 300px;
}
@media (max-width: 1140px) {
  .news-sidebar {
    width: 200px;
  }
}
@media (max-width: 768px) {
  .news-sidebar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
}
.news-sidebar-form form {
  position: relative;
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
  .news-sidebar-form form {
    margin-bottom: 1rem;
    padding: 0 2rem;
  }
}
@media (max-width: 567px) {
  .news-sidebar-form form {
    padding: 0 1rem;
  }
}
.news-sidebar-form form input {
  width: 100%;
  border: 1px solid #5A5A5A;
  border-radius: 10px;
  font-size: 0.8rem;
  line-height: 1rem;
  padding: 0.6rem 2rem 0.6rem 0.4rem;
}
.news-sidebar-form form button {
  position: absolute;
  top: 9px;
  right: 9px;
  background-image: url("/static/assets/icons/search.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 100;
  width: 1.1rem;
  height: 1.1rem;
}
@media (max-width: 768px) {
  .news-sidebar-form form button {
    right: calc(9px + 2rem);
  }
}
@media (max-width: 567px) {
  .news-sidebar-form form button {
    right: calc(9px + 1rem);
  }
}
.news-sidebar__btn {
  display: none;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 500;
  text-align: start;
  margin-bottom: 1rem;
  cursor: pointer;
  background-color: var(--dark);
  color: var(--white);
}
@media (max-width: 768px) {
  .news-sidebar__btn {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 2rem;
  }
}
@media (max-width: 567px) {
  .news-sidebar__btn {
    padding: 0.5rem 1rem;
  }
}
@media (max-width: 768px) {
  .news-sidebar-lists {
    position: absolute;
    top: 90px;
    left: 100%;
    transition: 0.3s ease;
    width: 100%;
    background-color: var(--white);
  }
}
.news-sidebar-lists span {
  background-color: var(--dark);
  padding: 0.2rem 1rem;
  color: var(--white);
  display: block;
  font-size: 1.5rem;
  line-height: 1.8rem;
  font-weight: 500;
}
.news-sidebar-lists ul {
  padding-bottom: 1.5rem;
  background-color: var(--white);
  z-index: 999;
}
@media (max-width: 768px) {
  .news-sidebar-lists ul {
    display: block;
  }
}
.news-sidebar-lists ul li {
  font-size: 1.25rem;
  line-height: 1.5rem;
  padding: 0.5rem 0;
  font-weight: 400;
  border-bottom: 3px solid var(--light-dark);
  transition: 0.3s ease;
}
.news-sidebar-lists ul li:hover {
  border-bottom: 3px solid var(--green);
}
@media (max-width: 768px) {
  .news-sidebar-lists ul li {
    padding-left: 1rem;
  }
}

.sidebar-lists-active {
  left: 0;
}
.specialist-contacts {
  background: linear-gradient(180deg, rgba(147, 147, 147, 0.15) 0%, rgba(147, 147, 147, 0) 157.42%);
  padding: 2.5rem 0;
}
@media (max-width: 768px) {
  .specialist-contacts {
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4);
  }
}
.specialist-contacts-content {
  display: flex;
  gap: 2rem;
}
@media (max-width: 567px) {
  .specialist-contacts-content {
    flex-wrap: wrap;
  }
}
.specialist-contacts-content__image {
  width: 500px;
  filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.4));
}
@media (max-width: 768px) {
  .specialist-contacts-content__image {
    filter: none;
    width: 50%;
  }
}
@media (max-width: 567px) {
  .specialist-contacts-content__image {
    width: 100%;
  }
}
.specialist-contacts-content__image img {
  max-width: 100%;
}
.specialist-contacts-content__info h2 {
  margin-bottom: 2.4rem;
}
@media (max-width: 768px) {
  .specialist-contacts-content__info h2 {
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
  }
}
.specialist-contacts-content__info span {
  display: block;
  margin-bottom: 1.3rem;
  font-size: 1.5rem;
  line-height: 1.8rem;
  text-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .specialist-contacts-content__info span {
    font-size: 1.25rem;
    line-height: 1.5rem;
    text-shadow: none;
    margin-bottom: 1.5rem;
  }
}
.specialist-contacts-content__info a {
  display: block;
  margin-bottom: 1.3rem;
  color: var(--dark);
}
@media (max-width: 768px) {
  .specialist-contacts-content__info a {
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.specialist-contacts-content__info a:nth-of-type(2) {
  margin-bottom: 3.5rem;
}
@media (max-width: 768px) {
  .specialist-contacts-content__info a:nth-of-type(2) {
    margin-bottom: 1.5rem;
  }
}
.specialist-contacts-content__info a:last-child {
  color: var(--green);
  font-weight: 400;
}
.specialist-info {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .specialist-info {
    margin-top: 3rem;
  }
}
.specialist-info h2 {
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .specialist-info h2 {
    font-size: 1.5rem;
  }
}
.specialist-info a {
  font-weight: 500;
}
.specialist-info ul li {
  position: relative;
  font-size: 1.25rem;
  line-height: 1.5rem;
  padding-left: 1rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
  .specialist-info ul li {
    font-size: 1rem;
    line-height: 1.2rem;
  }
}
.specialist-info ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5rem;
  left: 2px;
  width: 8px;
  height: 8px;
  background-color: var(--green);
}
.info-text {
  margin-bottom: 1rem;
}
.specialists {
  background: linear-gradient(180deg, rgba(147, 147, 147, 0.25) 0%, rgba(147, 147, 147, 0) 157.42%);
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .specialists {
    background: none;
  }
}
.specialists-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.25rem;
  padding: 3rem 2rem;
}
@media (max-width: 1240px) {
  .specialists-list {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 1rem 1rem 1rem;
  }
}
@media (max-width: 920px) {
  .specialists-list {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 1rem 1rem 1rem;
  }
}
@media (max-width: 567px) {
  .specialists-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.specialists-list__item {
  height: calc(var(--indexSize) * 30);
  min-height: 460px;
  max-height: 520px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4);
  background-color: var(--white);
  transition: 0.5s ease;
}
.specialists-list__item:hover {
  background-color: var(--dark);
}
.specialists-list__item:hover .specialists-list__item-name, .specialists-list__item:hover .specialists-list__item-status {
  color: var(--white);
}
.specialists-list__item a {
  color: var(--dark);
  display: block;
  height: 100%;
}
.specialists-list__item-image {
  height: 300px;
  margin-bottom: 1.375rem;
}
@media (max-width: 768px) {
  .specialists-list__item-image {
    height: 250px;
    margin-bottom: 1rem;
  }
}
.specialists-list__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.specialists-list__item-name {
  font-weight: bold;
  margin-bottom: 1.375rem;
  padding: 0 1.75rem;
  transition: 0.5s ease;
}
@media (max-width: 768px) {
  .specialists-list__item-name {
    margin-bottom: 1rem;
  }
}
.specialists-list__item-status {
  padding: 0 1.75rem;
  transition: 0.5s ease;
}
@media (max-width: 768px) {
  .specialists-list__item-status {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}