html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
}

p,
a,
button {
  font-family: "Avenir Next Cyr";
}

.mobile_object {
  display: none;
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: white;
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  filter: drop-shadow(0 5px 30px rgba(25, 79, 184, 0.3019607843));
  z-index: 10;
}
.navbar .navbar_content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  width: 100%;
  padding: 13px 285px;
}
.navbar .navbar_content .dropdown_content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 75%;
  width: 100%;
}
.navbar .navbar_content .logo_block {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar .navbar_content .link_block {
  display: flex;
  flex-direction: row;
  width: 70%;
  justify-content: space-between;
  margin: 0 32px;
}
.navbar .navbar_content .link_block a {
  font-size: 14px;
  color: black;
  text-decoration: none;
}
.navbar .navbar_content .link_block a:hover {
  cursor: pointer;
}
.navbar .navbar_content .download_button {
  position: relative;
  padding: 16px 30px;
  background: #E8EEFF;
  box-shadow: 0px 10px 20px #D5E1F7;
  border: 1px solid #D3D9EC;
  border-radius: 10px;
  font-weight: 450;
  font-size: 14px;
  font-weight: 600;
  color: #194FB8;
}
.navbar .navbar_content .download_button .downloads_hidden,
.navbar .navbar_content .download_button .downloads_shown {
  position: absolute;
  left: 50%;
  bottom: -100%;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  transition: all 1s;
  height: -moz-fit-content;
  height: fit-content;
}
.navbar .navbar_content .download_button .downloads_hidden img,
.navbar .navbar_content .download_button .downloads_shown img {
  width: 128px;
}
.navbar .navbar_content .download_button .downloads_hidden {
  opacity: 0;
  transform: translate(-50%, 40%);
  pointer-events: none;
}
.navbar .navbar_content .download_button .downloads_shown {
  opacity: 1;
  transform: translate(-50%, 75%);
  pointer-events: all;
}
.navbar .navbar_content .download_button:hover {
  cursor: pointer;
}
.navbar .navbar_content .dropdown_button {
  display: none;
  pointer-events: none;
}

.top_section {
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  position: relative;
}
.top_section .desktop_top_photo {
  width: 100%;
  z-index: 0;
}
.top_section .mobile_top_photo,
.top_section .mobile_top_background {
  display: none;
}
.top_section .top_section_text_block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: absolute;
  width: 650px;
  left: 285px;
  top: 25%;
  z-index: 1;
}
.top_section .top_section_text_block p {
  margin: 0;
}
.top_section .top_section_text_block .top_section_title_text {
  color: #213762;
  font-weight: 900;
  font-size: 42px;
  line-height: 42px;
}
.top_section .top_section_text_block .top_section_title_text .title_subtext {
  font-size: 23px;
  line-height: 23px;
}
.top_section .top_section_text_block .top_section_secondary_text {
  color: #001317;
  font-weight: 400;
  font-size: 22px;
  line-height: 22px;
  width: 50%;
}
.top_section .top_section_text_block .top_section_final_text {
  color: #213762;
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  width: 500px;
}
.top_section .top_section_text_block .top_section_final_text .final_subtext {
  font-size: 18px;
  line-height: 18px;
}

.default_section {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 48px;
  overflow-y: hidden;
}
.default_section .video_block {
  margin: 0 auto;
  width: 335px;
  height: 595px;
}
.default_section .default_section_title {
  display: inline;
  margin: auto auto;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin: 48px;
  color: #213762;
}
.default_section .default_section_list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 26px;
  margin: 32px 285px;
}
.default_section .default_section_text {
  font-size: 20px;
  font-weight: 450;
  text-align: center;
  margin-top: 32px;
  padding: 0 285px;
}
.default_section .manual {
  justify-content: center;
  gap: 96px;
}

.numbered_data_block {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
}
.numbered_data_block .number_block {
  display: flex;
  flex-direction: column;
}
.numbered_data_block .number_block .number {
  color: #194FB8;
  font-size: 58px;
  font-weight: 700;
  margin: 0;
}
.numbered_data_block .number_block .number_title {
  background: #E8EEFF;
  margin: 0 0 0 auto;
  padding: 0 8px;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  border: 1px solid #D3D9EC;
  border-radius: 0px 8px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.08);
}
.numbered_data_block .numbered_data_separator {
  width: 0;
  height: 100%;
  border-left: 2px solid #D3D9EC;
}
.numbered_data_block .numbered_data_details {
  color: #213762;
  width: 50%;
  margin: 0;
  font-size: 18px;
  font-weight: 400;
}

.circle_pictured_data_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 250px;
}
.circle_pictured_data_block .circle_picture {
  position: relative;
  width: 168px;
  height: 168px;
  align-items: center;
  background: white;
  box-shadow: 0px 11px 30px rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  border: none;
}
.circle_pictured_data_block .circle_picture img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.circle_pictured_data_block .circle_pictured_data_title {
  font-size: 20px;
  font-weight: 450;
  text-align: center;
  color: #194FB8;
}
.circle_pictured_data_block .circle_pictured_data_details {
  width: 95%;
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  color: #213762;
}

.card_data_block {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 273px;
  height: 290px;
  align-items: center;
  justify-content: center;
  padding: 0 8px 8px;
  background: #FFFFFF;
  box-shadow: 2px 11px 30px rgba(51, 51, 51, 0.08);
  border-radius: 15px;
  border: none;
}
.card_data_block .card_data_block_img {
  height: 78px;
}
.card_data_block .card_data_block_title {
  font-size: 20px;
  font-weight: 600;
  color: #213762;
}
.card_data_block .card_data_block_details {
  text-align: center;
  color: #213762;
  margin: 0;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #213762;
  height: 20%;
}

.manual_data_block {
  position: relative;
  width: 566px;
  height: 208px;
  background: #FFFFFF;
  box-shadow: 2px 11px 30px rgba(51, 51, 51, 0.08);
  border-radius: 15px;
  border: none;
}
.manual_data_block .manual_data_person_img {
  position: absolute;
  bottom: 0;
  -o-object-fit: none;
     object-fit: none;
}
.manual_data_block p {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(0, -50%);
  margin: 0;
  width: 40%;
  color: #213762;
  font-size: 16px;
  font-weight: 450;
  text-align: right;
}
.manual_data_block .manual_data_arrow {
  position: absolute;
  right: -75px;
  z-index: -1;
  top: 50%;
  transform: translate(0, -50%);
}

.review_card_slider {
  display: flex;
  justify-content: center;
  margin-bottom: 64px;
}
.review_card_slider .review_card {
  display: flex;
  flex-direction: row;
  position: relative;
  margin: 0 285px;
  width: auto;
  height: 475px;
  padding: 16px 64px;
  background: #FFFFFF;
  box-shadow: 2px 11px 30px rgba(51, 51, 51, 0.08);
  border-radius: 15px;
  border: none;
  align-items: center;
  gap: 32px;
}
.review_card_slider .review_card img {
  border-radius: 50%;
  border: none;
  width: 240px;
  height: 240px;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.review_card_slider .review_card div {
  display: flex;
  flex-direction: column;
}
.review_card_slider .review_card div .review_text {
  font-size: 20px;
  font-weight: 400;
  color: #213762;
}
.review_card_slider .review_card div .review_data {
  font-size: 16px;
  font-weight: 400;
  color: #194FB8;
}
.review_card_slider .review_card button {
  position: absolute;
  background-color: transparent;
  border: none;
  height: 100%;
  top: 50%;
  transform: translate(0, -50%);
}
.review_card_slider .review_card button img {
  width: 35px;
  height: 35px;
  aspect-ratio: 1/1;
}
.review_card_slider .review_card button:hover {
  cursor: pointer;
}
.review_card_slider .review_card .arrow_forward {
  right: -25px;
}
.review_card_slider .review_card .arrow_back {
  left: -25px;
}
.review_card_slider .review_card .arrow_back img {
  transform: scaleX(-1);
}

.faq_block {
  position: relative;
  display: block;
  margin: 0 auto;
  margin: 32px 285px;
  padding: 32px;
  width: auto;
  background-color: white;
  border-radius: 5px;
  border: none;
  box-shadow: 2px 11px 30px rgba(51, 51, 51, 0.1);
}
.faq_block h4 {
  font-family: "Avenir Next Cyr";
  font-size: 20px;
  text-align: left;
  margin: 0;
  color: #194FB8;
  width: 80%;
  border-radius: 5px;
}
.faq_block img {
  position: absolute;
  right: 32px;
  top: 26px;
  transform-origin: center;
}
.faq_block p {
  width: 100%;
  font-family: "Avenir Next Cyr";
  font-size: 20px;
  line-height: 24px;
  text-align: left;
  display: none;
  margin-bottom: 0;
}
.faq_block:hover {
  cursor: pointer;
}
.faq_block:focus-within {
  pointer-events: none;
}
.faq_block:focus-within p {
  display: block;
}
.faq_block:focus-within img {
  transform: scaleY(-1);
}

.footer {
  position: relative;
}
.footer .footer_img {
  background: linear-gradient(39.31deg, #e7f5ff 31.22%, #E8EEFF 67.78%, #FFFFFF 86.84%);
  opacity: 1;
}
.footer .footer_content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 64px;
  width: 90%;
  height: 90%;
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
}
.footer .footer_content .footer_segment {
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 85%;
}
.footer .footer_content .footer_segment a,
.footer .footer_content .footer_segment p {
  font-size: 18px;
}
.footer .footer_content .footer_segment a {
  color: black;
  text-decoration: none;
}
.footer .footer_content .footer_segment p {
  color: #213762;
}
.footer .footer_content .footer_segment .footer_navigation_block {
  display: flex;
  flex-direction: row;
  gap: 32px;
}
.footer .footer_content .footer_segment .footer_navigation_block .footer_navigation_group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer .footer_content .footer_segment .footer_logo_wrapper {
  height: 40px;
}
.footer .footer_content .footer_segment .footer_segment_title {
  font-size: 20px;
  font-weight: 700;
  color: #213762;
  width: -moz-max-content;
  width: max-content;
  margin-top: 0;
}
.footer .footer_content .footer_segment .footer_segment_element {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.footer .footer_content .footer_segment .footer_segment_element .footer_small_img {
  width: 10px;
  height: 10px;
  aspect-ratio: 1/1;
}
.footer .footer_content .footer_segment .footer_segment_element .store_image {
  height: 45px;
}
.footer .footer_content .footer_segment .store_block {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.footer .footer_content .footer_segment .store_group {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.footer .footer_content .footer_segment .footer_app_details {
  width: auto;
  max-width: 400px;
  font-size: 15px;
}
.footer .footer_content .footer_segment .bank_icon {
  height: 30px;
  margin-right: 20px;
}

@media screen and (max-width: 1000px) {
  .mobile_object {
    display: initial;
  }
  .navbar {
    height: 150px;
  }
  .navbar .navbar_content {
    padding: 13px 50px;
  }
  .navbar .navbar_content .logo_block {
    transform: scale(1.75);
  }
  .navbar .navbar_content .dropdown_button {
    display: initial;
    pointer-events: all;
    height: 100px;
    width: 100px;
    background-color: transparent;
    border-radius: 50%;
    border: none;
  }
  .navbar .navbar_content .dropdown_button img {
    height: 25%;
  }
  .navbar .navbar_content .dropdown_content {
    position: absolute;
    transition: all 1s;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    width: 100%;
    max-width: initial;
    padding: 64px 0;
    left: 0;
    background-color: #FFFFFF;
  }
  .navbar .navbar_content .dropdown_content .link_block {
    flex-direction: column;
    gap: 64px;
  }
  .navbar .navbar_content .dropdown_content .link_block a {
    font-size: 46px;
    text-align: center;
  }
  .navbar .navbar_content .download_button {
    font-size: 32px;
  }
  .navbar .navbar_content .download_button .downloads_hidden img,
  .navbar .navbar_content .download_button .downloads_shown img {
    width: 200px;
  }
  .navbar .navbar_content .dd_hidden {
    opacity: 0;
    transform: translateY(60%) translateX(-100%);
  }
  .navbar .navbar_content .dd_shown {
    opacity: 1;
    transform: translateY(60%) translateX(0);
  }
  .top_section {
    height: 1350px;
    margin-bottom: 76px;
    margin-top: 128px;
    position: relative;
  }
  .top_section .desktop_top_photo {
    display: none;
  }
  .top_section .mobile_top_background {
    display: block;
    position: absolute;
    top: 0;
    width: 150%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 3;
  }
  .top_section .mobile_top_photo {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 4;
  }
  .top_section .top_section_text_block {
    align-items: center;
    gap: 64px;
    width: 90%;
    left: 50%;
    top: 100px;
    transform: translate(-50%, 0);
    z-index: 5;
  }
  .top_section .top_section_text_block p {
    text-align: center;
  }
  .top_section .top_section_text_block .top_section_title_text {
    font-size: 72px;
    line-height: 72px;
  }
  .top_section .top_section_text_block .top_section_title_text .title_subtext {
    font-size: 46px;
    line-height: 46px;
  }
  .top_section .top_section_text_block .top_section_secondary_text,
  .top_section .top_section_text_block .top_section_final_text {
    font-size: 42px;
    line-height: 42px;
    width: 100%;
    font-weight: 400;
    margin: 16px 0;
  }
  .top_section .top_section_text_block .top_section_final_text {
    display: none;
  }
  .top_section .top_section_text_block .top_section_final_text .final_subtext {
    font-size: 42px;
    line-height: 42px;
  }
  .default_section .video_block {
    margin-top: 25px;
    width: 670px;
    height: 1190px;
  }
  .default_section .default_section_list {
    flex-direction: column;
    align-items: center;
    margin-bottom: 64px;
    margin: 32px 50px;
  }
  .default_section .default_section_text {
    font-size: 28px;
    padding: 0 50px;
  }
  .default_section .numbered_data_block {
    width: 100%;
    justify-content: center;
    gap: 32px;
  }
  .default_section .numbered_data_block .number_block {
    width: 40%;
  }
  .default_section .numbered_data_block .number_block .number {
    text-align: right;
    font-size: 76px;
  }
  .default_section .numbered_data_block .number_block .number_title {
    font-size: 46px;
  }
  .default_section .numbered_data_block .numbered_data_separator {
    display: none;
  }
  .default_section .numbered_data_block .numbered_data_details {
    font-size: 32px;
  }
  .default_section .circle_pictured_data_block {
    width: 100%;
  }
  .default_section .circle_pictured_data_block .circle_picture {
    height: 320px;
    width: 320px;
  }
  .default_section .circle_pictured_data_block .circle_picture img {
    transform: translateX(-50%) translateY(-50%) scale(2);
  }
  .default_section .circle_pictured_data_block .circle_pictured_data_title {
    font-size: 48px;
  }
  .default_section .circle_pictured_data_block .circle_pictured_data_details {
    width: auto;
    font-size: 36px;
  }
  .default_section .card_data_block {
    width: 100%;
    height: auto;
    padding: 64px 0;
    justify-content: center;
    gap: 64px;
  }
  .default_section .card_data_block .card_data_block_img {
    height: 150px;
  }
  .default_section .card_data_block .card_data_block_title {
    font-size: 64px;
    margin: 0;
  }
  .default_section .card_data_block .card_data_block_details {
    font-size: 36px;
    width: 90%;
    height: auto;
  }
  .default_section .manual {
    gap: 128px;
  }
  .default_section .manual .manual_data_block {
    display: flex;
    flex-direction: row;
    position: relative;
    gap: 64px;
    height: auto;
    padding: 0 32px;
  }
  .default_section .manual .manual_data_block p {
    position: relative;
    right: initial;
    top: initial;
    transform: initial;
    font-size: 36px;
    margin: 32px 0;
    width: 50%;
  }
  .default_section .manual .manual_data_block .manual_data_person_img {
    position: absolute;
    bottom: 0;
    right: 0;
    transform-origin: bottom;
    transform: scale(1.5);
  }
  .default_section .manual .manual_data_block .manual_data_arrow {
    top: 100%;
    right: 50%;
    transform: rotate(90deg) translate(0, -100%);
  }
  .review_card_slider {
    margin: 32px auto 64px;
    width: 100%;
  }
  .review_card_slider .review_card {
    flex-direction: column;
    justify-content: space-between;
    max-width: 600px;
    width: 100%;
    height: -moz-max-content;
    height: max-content;
    margin: 0;
    padding: 32px 64px;
  }
  .review_card_slider .review_card img {
    height: auto;
    aspect-ratio: none;
  }
  .review_card_slider .review_card button img {
    scale: 3;
    position: absolute;
    top: 300px;
  }
  .review_card_slider .review_card .arrow_forward {
    right: 0;
  }
  .review_card_slider .review_card .arrow_forward img {
    right: -25px;
  }
  .review_card_slider .review_card .arrow_back {
    left: 0;
  }
  .review_card_slider .review_card .arrow_back img {
    left: -25px;
  }
  .review_card_slider .review_card div {
    display: flex;
    flex-direction: column;
    height: 85%;
    justify-content: space-between;
  }
  .review_card_slider .review_card div .review_text {
    font-size: 28px;
  }
  .review_card_slider .review_card div .review_data {
    font-size: 24px;
  }
  .footer {
    background-color: #e7f5ff;
  }
  .footer .footer_img {
    display: none;
  }
  .footer .footer_content {
    position: relative;
    transform: initial;
    bottom: initial;
    left: initial;
    margin: 64px;
    width: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 100px;
    width: auto;
    height: auto;
  }
  .footer .footer_content .footer_segment {
    height: auto;
  }
  .footer .footer_content .footer_segment .footer_segment_title {
    font-size: 42px;
  }
  .footer .footer_content .footer_segment p {
    font-size: 24px;
  }
  .footer .footer_content .footer_segment .footer_navigation_block {
    flex-direction: column;
    gap: 16px;
  }
  .footer .footer_content .footer_segment .footer_segment_element {
    gap: 32px;
  }
  .footer .footer_content .footer_segment .footer_segment_element .footer_small_img {
    height: 100%;
    width: auto;
  }
  .footer .footer_content .footer_segment .footer_segment_element a,
  .footer .footer_content .footer_segment .footer_segment_element p {
    font-size: 36px;
  }
  .footer .footer_content .footer_segment .footer_segment_element a .store_image,
  .footer .footer_content .footer_segment .footer_segment_element p .store_image {
    width: 200px;
    height: 65px;
  }
  .footer .footer_content .footer_segment .footer_segment_element p {
    margin: 6px 0 24px;
  }
  .footer .footer_content .footer_segment .footer_segment_element .bank_icon {
    height: 50px;
  }
  .footer .footer_content .footer_segment .store_block {
    flex-direction: column;
  }
  .footer .footer_content .footer_segment .footer_logo_wrapper {
    height: 72px;
  }
  .footer .footer_content .footer_segment .footer_logo_wrapper img {
    height: 100%;
  }
  .footer .footer_content .footer_segment .footer_app_details {
    font-size: 24px;
  }
  .faq_block {
    margin: 32px 50px;
  }
  .faq_block img {
    height: 60px;
    right: 30px;
    top: 30px;
  }
  .faq_block h4 {
    font-size: 36px;
  }
  .faq_block p {
    font-size: 28px;
    line-height: 36px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1400px) {
  .navbar .navbar_content {
    padding: 13px 75px;
  }
  .top_section .top_section_text_block {
    left: 75px;
  }
  .top_section .top_section_text_block .top_section_title_text {
    font-size: 4vw;
    line-height: 4vw;
  }
  .top_section .top_section_text_block .top_section_title_text .title_subtext {
    font-size: 2.25vw;
    line-height: 2.25vw;
  }
  .top_section .top_section_text_block .top_section_secondary_text {
    font-size: 2vw;
    line-height: 2vw;
  }
  .top_section .top_section_text_block .top_section_final_text {
    font-size: 2.4vw;
    line-height: 2.4vw;
  }
  .top_section .top_section_text_block .top_section_final_text .final_subtext {
    font-size: 2vw;
    line-height: 2vw;
  }
  .default_section .default_section_list {
    margin: 32px 75px;
  }
  .default_section .default_section_text {
    padding: 0 75px;
  }
  .review_card_slider .review_card {
    margin: 0 75px;
  }
  .faq_block {
    margin: 32px 75px;
  }
  .footer .footer_content {
    gap: 32px;
  }
  .footer .footer_content .footer_segment .footer_navigation_block {
    gap: 16px;
  }
  .footer .footer_content .footer_segment .footer_navigation_block .footer_navigation_group {
    gap: 8px;
  }
  .footer .footer_content .footer_segment .footer_segment_title {
    margin-bottom: 2px;
  }
  .footer .footer_content .footer_segment .footer_segment_element p,
  .footer .footer_content .footer_segment .footer_segment_element a {
    font-size: 15px;
    margin: 0;
  }
  .footer .footer_content .footer_segment .footer_segment_element .store_block {
    flex-direction: column;
    gap: 0px;
  }
  .footer .footer_content .footer_segment .footer_segment_element .store_image {
    width: 80px;
    height: 30px;
  }
  .footer .footer_content .footer_segment .footer_app_details {
    font-size: 12px;
  }
  .footer .footer_content .footer_segment .bank_icon {
    height: 20px;
  }
}
@media screen and (min-width: 1921px) {
  .navbar .navbar_content {
    width: 100%;
    max-width: 1350px;
  }
  .navbar .navbar_content .link_block a {
    font-size: 20px;
  }
  .navbar .navbar_content .download_button {
    font-size: 20px;
  }
  .top_section .top_section_text_block {
    width: 1350px;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .default_section .default_section_list {
    width: 100%;
    max-width: 1350px;
    margin: 32px auto;
  }
  .default_section .default_section_text {
    width: 100%;
    max-width: 1350px;
    margin: 32px auto 0;
  }
  .review_card_slider .review_card {
    max-width: 1222px;
  }
  .faq_block {
    width: 100%;
    max-width: 1286px;
    margin: 32px auto;
  }
  .footer .footer_content {
    width: 100%;
    max-width: 1350px;
    justify-content: space-between;
  }
}
.download_page {
  background-color: #E8EEFF;
  margin: 0;
}
.download_page h2 {
  font-family: "Avenir Next Cyr";
  text-align: center;
}
.download_page .img_container, .download_page .way_logo_container {
  margin: 32px auto;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
}
.download_page .img_container img, .download_page .way_logo_container img, .download_page .img_container embed, .download_page .way_logo_container embed {
  width: 200px;
  height: 65px;
  margin: 0 16px;
}
.download_page .way_logo_container {
  margin: 64px auto;
  width: auto;
}
.download_page .way_logo_container img {
  max-width: 512px;
}/*# sourceMappingURL=styles.css.map */