html {
  font-size: 16px;
}

body {
  background-color: #F3F4F6;
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  color: #4E5358;
}

.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, .d1, b, strong, .bold {
  color: #000;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, .d1 {
  font-family: "Nunito", sans-serif;
}

.d1 {
  font-size: 3.625rem;
  line-height: 1;
}

h1, .h1 {
  margin-bottom: 2rem;
  font-size: 2.5rem;
  line-height: 1;
}

h2, .h2 {
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  line-height: 1.1666666667;
}

h3, .h3 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  line-height: 1.5;
}

h4, .h4 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
}

img {
  max-width: 100%;
}

p {
  margin-bottom: 1.5rem;
}

@media (max-width: 1199px) {
  h1, .h1 {
    margin-bottom: 1.125rem;
    font-size: 2rem;
    line-height: 1;
  }
  h2, .h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    line-height: 1.2083333333;
  }
  /*h3, .h3 {
      margin-bottom: px-to-rem(24);
      @include font-size(14, 19);
  }*/
}
@media (max-width: 991px) {
  .d1 {
    font-size: 2rem;
    line-height: 1;
  }
}
.bold {
  font-weight: 600;
}

a {
  color: inherit;
}
a[href^=tel], a[href^=mailto] {
  white-space: nowrap;
}
a:hover {
  color: inherit;
}

.link {
  color: #0057FF;
  text-decoration: underline;
  cursor: pointer;
}
.link:hover {
  color: #0057FF;
}
.link_reversed {
  text-decoration: none;
}
.link_reversed:hover {
  text-decoration: underline;
}

a[disabled], .link[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  text-decoration: none !important;
}
a:hover, .link:hover {
  text-decoration: none;
}

.text {
  line-height: 1.5;
  font-size: 1rem;
}
.text_article {
  color: #000;
}
.text_article h1, .text_article .h1, .text_article h2, .text_article .h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.text_article h3, .text_article .h3 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.text_article h1, .text_article .h1 {
  line-height: 1;
  font-size: 2.5rem;
}
.text_article h2, .text_article .h2 {
  line-height: 1.2;
  font-size: 2rem;
}
.text_article h3, .text_article .h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  font-size: 1.75rem;
}
.text_article h4, .text_article .h4 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.text_article img, .text_article video, .text_article iframe {
  display: inline-block;
  margin: 1rem 0 1.5rem;
}
.text_article video, .text_article iframe {
  width: 100%;
  height: 440px;
}
.text_article p {
  margin-bottom: 0.5rem;
}
.text_article .table {
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .text_article h1, .text_article .h1 {
    font-size: 1.75rem;
  }
  .text_article h2, .text_article .h2 {
    font-size: 1.5rem;
  }
  .text_article video, .text_article iframe {
    height: 200px;
  }
}

ul, ol {
  margin: 0;
  padding: 0;
}
ul li, ol li {
  list-style: none;
}

.ol {
  padding-left: 1.2rem;
}
.ol li {
  padding-left: 0.5rem;
  list-style: decimal;
}
.ol li::marker {
  font-weight: 600;
  color: #000;
}
.ol_toc {
  margin: 0;
}
.ol_toc li + li {
  margin-top: 0.5rem;
}
.ol_toc li a {
  color: #000;
  text-decoration: none !important;
  -webkit-transition: border-bottom-color 0.1s;
  -moz-transition: border-bottom-color 0.1s;
  -o-transition: border-bottom-color 0.1s;
  transition: border-bottom-color 0.1s;
  border-bottom: 1px solid transparent;
}
.ol_toc li a:hover {
  border-bottom-color: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  text-decoration: none !important;
  white-space: nowrap;
  text-align: center;
  outline: none !important;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color ease-in-out 0.1s, color ease-in-out 0.1s, border-color ease-in-out 0.1s;
  -moz-transition: background-color ease-in-out 0.1s, color ease-in-out 0.1s, border-color ease-in-out 0.1s;
  -o-transition: background-color ease-in-out 0.1s, color ease-in-out 0.1s, border-color ease-in-out 0.1s;
  transition: background-color ease-in-out 0.1s, color ease-in-out 0.1s, border-color ease-in-out 0.1s;
}
.btn:disabled, .btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn_primary, .btn_secondary, .btn_outline-blue, .btn_outline-white, .btn_link {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
}
.btn_primary, .btn_secondary, .btn_outline-blue, .btn_outline-white, .btn_tag {
  border-radius: 100px;
  border: 2px solid;
}
.btn_primary {
  background: #0057FF;
  color: #fff;
  border-color: #0057FF;
}
.btn_primary:hover {
  background: transparent;
  color: #0057FF;
}
.btn_secondary {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.btn_secondary:hover {
  background: transparent;
  border-color: #000;
}
.btn_outline-blue {
  color: #0057FF;
  border-color: #0057FF;
}
.btn_outline-blue:hover {
  background: #0057FF;
  color: #fff;
}
.btn_outline-white {
  color: #fff;
  border-color: #fff;
}
.btn_outline-white:hover {
  background: #fff;
  color: #0057FF;
}
.btn_link {
  height: 2.5rem;
  border-radius: 0.5rem;
}
.btn_link:hover {
  background: rgba(0, 87, 255, 0.05);
}
.btn_toggle {
  align-items: baseline;
}
.btn_toggle:after {
  content: "\e90b";
  margin-left: 0.5625rem;
  font-family: "icomoon";
  -webkit-transition: transform "ease-in-out" 0.4s;
  -moz-transition: transform "ease-in-out" 0.4s;
  -o-transition: transform "ease-in-out" 0.4s;
  transition: transform "ease-in-out" 0.4s;
}
.btn_toggle.opened:after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.btn_icon {
  gap: 8px;
}
.btn_tag {
  background: rgba(0, 87, 255, 0.05);
  color: #0057FF;
  text-transform: uppercase;
  border-color: transparent;
}
.btn_tag:hover {
  border-color: #0057FF;
}
.btn_count {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #000;
  border-radius: 100px;
}
.btn_xs {
  height: 2.125rem;
  padding: 0 0.625rem;
  font-size: 0.875rem;
  line-height: 1;
}
.btn_sm {
  height: 2.5rem;
  padding: 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1;
}
.btn_md {
  height: 3rem;
  padding: 0 1.25rem;
  font-size: 1rem;
  line-height: 1;
}
.btn_blue {
  background: #0057FF;
  color: #fff;
  border: 1px solid #0057FF;
}
.btn_blue:disabled, .btn_blue.disabled {
  background: rgba(0, 87, 255, 0.5);
  color: #fff;
  border-color: rgba(0, 87, 255, 0.5);
}
.btn_blue:hover {
  background: #fff;
  color: #0057FF;
}
.btn_blue:active {
  background: #0443BC;
  color: #fff;
  border-color: #0443BC;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}

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

input, textarea, select {
  font: 1rem/1.5 "Open Sans", sans-serif;
  color: #000;
  border-radius: 2px;
  border: 1px solid #CCC;
  -webkit-transition: background-color 0.1s ease-in-out, border-color 0.1s ease-in-out;
  -moz-transition: background-color 0.1s ease-in-out, border-color 0.1s ease-in-out;
  -o-transition: background-color 0.1s ease-in-out, border-color 0.1s ease-in-out;
  transition: background-color 0.1s ease-in-out, border-color 0.1s ease-in-out;
}
input:hover, textarea:hover, select:hover {
  border-color: #AAA;
}
input:focus, textarea:focus, select:focus {
  border-color: #000;
}

input, textarea {
  padding: 7px 8px;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #CCC;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #CCC;
}
input:-moz-placeholder, textarea:-moz-placeholder {
  color: #CCC;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #CCC;
}

select {
  padding-right: 30px;
  background: none;
  cursor: pointer;
}

.input {
  width: 100%;
}

.checkbox label, .radio label {
  cursor: pointer;
}
.checkbox span, .radio span {
  display: inline-block;
  position: relative;
  padding-left: 32px;
  color: #000;
}
.checkbox span:before, .radio span:before {
  content: "\e90a";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0.25em;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: #fff;
  font: normal normal 6px "icomoon";
  color: transparent;
  border: 1px solid #0057FF;
  -webkit-transition: background-color ease-in-out 0.1s, border-color ease-in-out 0.1s;
  -moz-transition: background-color ease-in-out 0.1s, border-color ease-in-out 0.1s;
  -o-transition: background-color ease-in-out 0.1s, border-color ease-in-out 0.1s;
  transition: background-color ease-in-out 0.1s, border-color ease-in-out 0.1s;
}
.checkbox span:hover:before, .radio span:hover:before {
  border-color: #0443BC;
}
.checkbox input, .radio input {
  display: none;
}
.checkbox input:disabled + span, .radio input:disabled + span {
  color: rgba(0, 0, 0, 0.5);
}
.checkbox input:disabled + span:before, .radio input:disabled + span:before {
  border-color: #F3F4F6;
}
.checkbox input:checked + span:before, .radio input:checked + span:before {
  color: #0057FF;
  border-color: #0057FF;
}
.checkbox input:checked:hover + span:before, .radio input:checked:hover + span:before {
  color: #0443BC;
}
.checkbox input:checked:disabled + span:before, .radio input:checked:disabled + span:before {
  color: rgba(0, 87, 255, 0.5) !important;
  border-color: rgba(0, 87, 255, 0.5) !important;
}

.checkbox + .checkbox,
.radio + .radio {
  margin-top: 1rem;
}

.checkbox span {
  line-height: 20px;
  font-size: 15px;
}
.checkbox span:before {
  border-radius: 2px;
}

.radio span {
  font-size: 1rem;
  line-height: 1.5;
}
.radio span:before {
  border-radius: 50%;
}

.table {
  width: 100%;
}
.table th, .table td {
  color: #000;
}
.table th {
  font-weight: 600;
}
.table_borders th, .table_borders td {
  padding: 8px 16px;
}
.table_borders td {
  border: 1px solid #CCC;
}

.table-wrap {
  overflow-x: auto;
}

.tabs__list {
  display: flex;
  flex-flow: row wrap;
}
.tabs__link {
  display: inline-block;
  margin: 0;
  text-decoration: none;
  -webkit-transition: border-bottom-color "ease-in-out" 0.1s;
  -moz-transition: border-bottom-color "ease-in-out" 0.1s;
  -o-transition: border-bottom-color "ease-in-out" 0.1s;
  transition: border-bottom-color "ease-in-out" 0.1s;
}

.tabs-content {
  display: none;
}
.tabs-content.active {
  display: block;
}

.svg-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.svg-icon_raw {
  width: auto;
  height: auto;
}

.box {
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}

.padding-side {
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 1365px) {
  .padding-side {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .padding-side {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 575px) {
  .padding-side {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.w-750 {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.toggle-content {
  display: none;
}

.section {
  padding: 50px 0;
}
.section_white {
  background-color: #FFF;
}
@media (max-width: 767px) {
  .section {
    padding: 25px 0;
  }
}

.socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.socials__link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}
.socials__link:hover span {
  border-bottom-color: inherit;
}
.socials .svg-icon {
  font-size: 1.5rem;
}
.socials span {
  color: #000;
  border-bottom: 1px solid transparent;
  -webkit-transition: border-bottom-color "ease-in-out" 0.1s;
  -moz-transition: border-bottom-color "ease-in-out" 0.1s;
  -o-transition: border-bottom-color "ease-in-out" 0.1s;
  transition: border-bottom-color "ease-in-out" 0.1s;
}

.rank {
  display: flex;
  align-items: center;
}
.rank__place {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.rank__place_icon {
  height: 40px;
}
.rank__change {
  display: flex;
  align-items: center;
}
.rank__change i {
  font-size: 1rem;
}
.rank__change span {
  font-weight: 600;
}
.rank__change_up {
  color: #006211;
}
.rank__change_down {
  color: #B20000;
}

.stars {
  display: flex;
}
.stars__item {
  margin-right: 6px;
  color: #0057FF;
}
.stars__item:last-child {
  margin-right: 0;
}

.rating-block {
  padding: 50px 0;
  background-color: #fff;
}
.rating-block__title {
  margin-bottom: 1.25rem;
}
.rating-block__date {
  margin-bottom: 2rem;
  color: #000;
}
.rating-block__content {
  padding: 24px;
}
.rating-block__banner {
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  height: 0;
  transition: opacity ease 0.4s;
}
.rating-block__banner.active {
  opacity: 1;
  visibility: visible;
  overflow: auto;
  height: auto;
  margin-bottom: 1.5rem;
}

.rating-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.rating-tabs__item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem;
  text-decoration: none !important;
  border-radius: 0.5rem;
  -webkit-transition: background-color "ease-in-out" 0.05s;
  -moz-transition: background-color "ease-in-out" 0.05s;
  -o-transition: background-color "ease-in-out" 0.05s;
  transition: background-color "ease-in-out" 0.05s;
}
.rating-tabs__item:hover, .rating-tabs__item.active {
  background-color: #F3F4F6;
}
.rating-tabs__item.active span {
  font-weight: 600;
}
.rating-tabs__item span {
  font-size: 1rem;
  line-height: 1;
  color: #000;
}

.modal-window {
  opacity: 0;
  position: fixed;
  z-index: -1;
  overflow: hidden;
  width: 0;
  height: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.modal-window.opened {
  opacity: 1;
  z-index: 1000;
  overflow: auto;
  width: auto;
  height: auto;
}
.modal-window__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  padding: 40px 20px 40px 40px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.modal-window__content {
  overflow: auto;
  max-height: calc(100vh - 100px);
  padding-right: 20px;
}
.modal-window__close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 17px;
  right: 17px;
  width: 20px;
  height: 20px;
}
.modal-window__close:before {
  font-size: 0.6875rem;
  color: #000;
}

.popup-overlay {
  opacity: 0;
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transition: opacity ease-in 0.4s;
  -moz-transition: opacity ease-in 0.4s;
  -o-transition: opacity ease-in 0.4s;
  transition: opacity ease-in 0.4s;
}
.popup-overlay.active {
  opacity: 0.73;
  z-index: 199;
}
.popup-overlay.active.closing {
  opacity: 0;
}

.bx-core-adm-dialog input {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.header__buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header__socials {
  margin-right: 46px;
}
@media (max-width: 1365px) {
  .header__row {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .header__row {
    padding-top: 20px;
    padding-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .header__row {
    padding-top: 20px;
    padding-bottom: 15px;
  }
  .header__socials {
    margin-right: 26px;
  }
  .header__socials span {
    display: none;
  }
}
@media (max-width: 575px) {
  .header__socials {
    margin-right: 0;
  }
  .header__btn {
    display: none;
  }
}

.footer-sep {
  margin-top: 100px;
}
@media (max-width: 991px) {
  .footer-sep {
    margin-top: 70px;
  }
}

.footer {
  margin-top: auto;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background-color: #000;
  color: #AAA;
}
.footer__top {
  padding-bottom: 1.25rem;
}
.footer__bottom {
  display: flex;
  align-items: baseline;
  column-gap: 50px;
  padding-top: 20px;
  border-top: 1px solid #4E5358;
}
@media (max-width: 1365px) {
  .footer__bottom {
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .footer__bottom {
    flex-wrap: wrap;
    align-items: flex-end;
    row-gap: 20px;
  }
}

.f-top {
  display: flex;
  justify-content: space-between;
}
.f-top__info {
  flex: 0 0 300px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.f-top__slogan {
  font-size: 0.875rem;
  line-height: 1.5;
}

.f-bottom__copyright-links {
  flex: auto;
  display: flex;
  column-gap: 50px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.f-bottom__copyright {
  flex: 0 0 622px;
  max-width: 622px;
}
.f-bottom__links a {
  text-decoration: none;
}
.f-bottom__links a:hover {
  text-decoration: underline;
}
.f-bottom__creator {
  flex: 0 0 210px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.f-bottom__creator span {
  white-space: nowrap;
}
@media (max-width: 1365px) {
  .f-bottom__copyright {
    flex: auto;
    max-width: none;
  }
}
@media (max-width: 767px) {
  .f-bottom__copyright-links {
    flex-direction: column;
    gap: 0.625rem;
  }
}
@media (max-width: 575px) {
  .f-bottom__bottom {
    flex-direction: column;
    align-items: unset;
    gap: 1.25rem;
  }
  .f-bottom__creator {
    flex: auto;
  }
}

.heading-block__inner {
  padding: 25px;
}
.heading-block__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.heading-block__title {
  max-width: 500px;
  margin-bottom: 24px;
}
.heading-block__desc {
  color: #4E5358;
}
.heading-block__image {
  flex: none;
}
@media (max-width: 1365px) {
  .heading-block__inner {
    padding: 25px;
  }
}
@media (max-width: 991px) {
  .heading-block__desc {
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .heading-block__row {
    gap: 8px;
  }
}
@media (max-width: 575px) {
  .heading-block__image {
    display: none;
  }
}

.about__row {
  margin: 0 -50px;
}
.about__col {
  padding: 0 50px;
}
.about__more {
  font-weight: 600;
}
.about__more:after {
  font-size: 0.5625rem;
}
@media (max-width: 1365px) {
  .about__row {
    margin: 0 -15px;
  }
  .about__col {
    padding: 0 15px;
  }
}
@media (max-width: 991px) {
  .about {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .about__row {
    margin: 0;
  }
}
@media (max-width: 575px) {
  .about__row {
    margin: 0;
  }
}

.r-list__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.r-list__row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3.125rem;
}
.r-list__item {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 1rem;
}
.r-list__item:nth-child(5n+1), .r-list__item:nth-child(5n+2), .r-list__item:nth-child(5n+6), .r-list__item:nth-child(5n+7) {
  grid-column: auto/span 3;
  height: 250px;
  padding: 2rem;
}
.r-list__item:nth-child(5n+1) .r-list__image, .r-list__item:nth-child(5n+2) .r-list__image, .r-list__item:nth-child(5n+6) .r-list__image, .r-list__item:nth-child(5n+7) .r-list__image {
  width: 260px;
  height: 185px;
}
.r-list__item:nth-child(5n+1) .r-list__link .btn, .r-list__item:nth-child(5n+2) .r-list__link .btn, .r-list__item:nth-child(5n+6) .r-list__link .btn, .r-list__item:nth-child(5n+7) .r-list__link .btn {
  height: 3rem;
  padding: 0 1.25rem;
  font-size: 1rem;
  line-height: 1;
}
.r-list__item:nth-child(5n+3), .r-list__item:nth-child(5n+4), .r-list__item:nth-child(5n+5) {
  grid-column: auto/span 2;
  grid-row: auto/span 2;
  height: 260px;
  padding: 1.25rem;
}
.r-list__item:nth-child(5n+3) .r-list__image, .r-list__item:nth-child(5n+4) .r-list__image, .r-list__item:nth-child(5n+5) .r-list__image {
  width: 210px;
  height: 150px;
}
.r-list__item:nth-child(5n+3) .r-list__link .btn, .r-list__item:nth-child(5n+4) .r-list__link .btn, .r-list__item:nth-child(5n+5) .r-list__link .btn {
  height: 2.5rem;
  padding: 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1;
}
.r-list__item:nth-child(5n+1) {
  background: rgba(236, 40, 12, 0.15);
}
.r-list__item:nth-child(5n+1) .r-list__count {
  background: rgba(236, 40, 12, 0.07);
}
.r-list__item:nth-child(5n+2) {
  background: rgba(149, 149, 149, 0.15);
}
.r-list__item:nth-child(5n+2) .r-list__count {
  background: rgba(149, 149, 149, 0.07);
}
.r-list__item:nth-child(5n+3) {
  background: rgba(93, 138, 163, 0.15);
}
.r-list__item:nth-child(5n+3) .r-list__count {
  background: rgba(93, 138, 163, 0.07);
}
.r-list__item:nth-child(5n+4) {
  background: rgba(71, 187, 148, 0.15);
}
.r-list__item:nth-child(5n+4) .r-list__count {
  background: rgba(71, 187, 148, 0.07);
}
.r-list__item:nth-child(5n+5) {
  background: rgba(0, 87, 255, 0.15);
}
.r-list__item:nth-child(5n+5) .r-list__count {
  background: rgba(0, 87, 255, 0.07);
}
.r-list__item:nth-child(5n+6) {
  background: rgba(236, 40, 12, 0.15);
}
.r-list__item:nth-child(5n+6) .r-list__count {
  background: rgba(236, 40, 12, 0.07);
}
.r-list__item:nth-child(5n+7) {
  background: rgba(149, 149, 149, 0.15);
}
.r-list__item:nth-child(5n+7) .r-list__count {
  background: rgba(149, 149, 149, 0.07);
}
.r-list__name {
  margin: 0;
}
.r-list__desc {
  position: relative;
  z-index: 1;
  max-width: 255px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
}
.r-list__image {
  position: absolute;
  z-index: 0;
  bottom: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.r-list__link {
  position: relative;
  z-index: 1;
  margin-top: auto;
}
.r-list__more {
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 1365px) {
  .r-list__row {
    gap: 2.5rem;
  }
  .r-list__item:nth-child(5n+1) .r-list__image, .r-list__item:nth-child(5n+2) .r-list__image {
    width: 218px;
    height: 155px;
  }
  .r-list__item:nth-child(5n+3), .r-list__item:nth-child(5n+4), .r-list__item:nth-child(5n+5) {
    height: 290px;
  }
  .r-list__item:nth-child(5n+3) .r-list__image, .r-list__item:nth-child(5n+4) .r-list__image, .r-list__item:nth-child(5n+5) .r-list__image {
    width: 170px;
    height: 121px;
  }
}
@media (max-width: 991px) {
  .r-list__row {
    grid-template-columns: 100%;
    gap: 20px;
  }
  .r-list__item:nth-child(n) {
    grid-column: revert;
    padding: 1.25rem;
  }
  .r-list__item:nth-child(n) .r-list__image {
    width: 282px;
    height: 100%;
    background-position-y: bottom;
  }
}
@media (max-width: 575px) {
  .r-list__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem;
  }
  .r-list__item:nth-child(n) {
    height: auto;
  }
  .r-list__item:nth-child(n) .r-list__image {
    position: static;
    width: auto;
    height: 200px;
    margin: 1.25rem 0;
    background-position: center;
  }
  .r-list__link .btn {
    width: 100%;
  }
}

.why {
  margin-top: 100px;
}
.why__row {
  --bs-gutter-x: 50px;
  --bs-gutter-y: 50px;
}
.why__item {
  height: 100%;
  padding: 25px 20px 40px;
  text-align: center;
}
.why__image {
  margin-bottom: 1.25rem;
}
.why__name, .why__desc {
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
.why__name {
  margin-bottom: 0.625rem;
}
.why__desc {
  margin-bottom: 0;
}
@media (max-width: 1365px) {
  .why__row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
  }
}
@media (max-width: 991px) {
  .why {
    margin-top: 70px;
  }
  .why__row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
  }
  .why__item {
    padding: 20px 20px 30px;
  }
  .why__desc {
    font-size: 0.875rem;
    line-height: 1.3571428571;
  }
}
@media (max-width: 767px) {
  .why__item {
    padding: 20px 10px 30px;
  }
}
@media (max-width: 575px) {
  .why__row {
    display: block;
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
  }
  .why__col + .why__col {
    margin-top: 20px;
  }
  .why__item {
    padding: 15px 10px 25px;
  }
}

.add-block {
  margin-top: 100px;
}
.add-block__wrap {
  position: relative;
}
.add-block__image {
  margin-top: 135px;
}
.add-block__form {
  position: absolute;
  top: -100px;
  left: 50%;
  width: 100%;
  max-width: 534px;
  margin-left: -267px;
}
@media (max-width: 991px) {
  .add-block__form {
    max-width: 360px;
    margin-left: -180px;
  }
  .add-block__image {
    margin-top: 200px;
  }
  .add-block__form {
    top: -175px;
  }
}
@media (max-width: 575px) {
  .add-block__image {
    display: none;
  }
  .add-block__form {
    position: static;
    max-width: 534px;
    margin: 0 auto;
  }
}

.banner-fixed {
  opacity: 0;
  visibility: hidden;
  display: grid;
  grid-template-columns: 210px auto;
  align-items: center;
  gap: 12px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 100%;
  max-width: 508px;
  padding: 10px;
  background: linear-gradient(90deg, #F3E7E9 0%, #E3EEFF 99%, #E3EEFF 100%);
  border-radius: 16px;
  transform: translateY(calc(100% - 80px));
  transition: opacity linear 0.4s, transform cubic-bezier(0, 0, 0.1, 1) 0.4s;
}
.banner-fixed_visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.banner-fixed__close {
  position: absolute;
  top: 6px;
  right: 6px;
}
.banner-fixed__close:hover rect {
  fill-opacity: 0.1;
}
.banner-fixed__close:hover path {
  stroke-opacity: 0.5;
}
.banner-fixed__title {
  margin-bottom: 4px;
  line-height: 1.2;
  font-size: 1.25rem;
}
.banner-fixed__desc {
  margin-bottom: 12px;
  line-height: 1.5;
  font-size: 0.9375rem;
  color: #000;
}
.banner-fixed__btn {
  width: 100%;
  height: 38px;
  padding: 0 24px;
}
@media (max-width: 767px) {
  .banner-fixed {
    grid-template-columns: 150px auto;
    bottom: 0;
    right: 0;
    gap: 8px;
  }
  .banner-fixed__title {
    font-size: 1rem;
  }
  .banner-fixed__desc {
    font-size: 0.875rem;
  }
  .banner-fixed__btn {
    font-size: 0.875rem;
  }
  .banner-fixed__btn svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 575px) {
  .banner-fixed {
    z-index: 1000;
    grid-template-columns: 100px auto;
  }
  .banner-fixed__title {
    font-size: 0.9375rem;
  }
  .banner-fixed__desc {
    font-size: 0.8125rem;
  }
}

.banner-overlay {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all linear 0.15s;
}
.banner-overlay.active {
  opacity: 1;
  visibility: visible;
  z-index: 999;
}

.banner-tooltip {
  display: none;
  position: absolute;
  z-index: 1000;
  bottom: 27px;
  right: 66px;
  width: 280px;
  padding: 16px;
  background: #FFF;
  border-radius: 16px;
  border: 1px solid #CCC;
}
.banner-tooltip.opened {
  display: block;
}
.banner-tooltip__close {
  display: none;
}
@media (max-width: 575px) {
  .banner-tooltip {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
    padding: 54px 20px 32px 20px;
    border-radius: 16px 16px 0 0;
    border: none;
  }
  .banner-tooltip.opened {
    display: block;
  }
  .banner-tooltip__close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
  }
}

.banner-ad {
  position: absolute;
  bottom: 8px;
  right: 8px;
}
.banner-ad__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 4px 6px;
  background: rgba(255, 255, 255, 0.3);
  font: 0.75rem "Nunito", sans-serif;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  border-radius: 100px;
}
.banner-ad__btn:hover {
  color: rgba(0, 0, 0, 0.5);
}

.banner-partner {
  position: relative;
  margin-bottom: 24px;
}
.banner-partner img {
  width: 100%;
  border-radius: 16px;
}

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