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

:root {
  --font-family: "Montserrat", sans-serif;
  --second-family: "Bebas Neue", sans-serif;
}

body {
  background-color: #fff;
}

.modal-open {
  overflow: hidden;
  padding-right: 0;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

.header {
  top: 12px;
  left: 0;
  padding: 0 32px;
  z-index: 2;
}
.header .header_in {
  max-width: 1160px;
  margin: 0 auto;
}
.header .header_in .header_head .nav_link {
  gap: 10px;
}
.header .header_in .header_head .nav_link .nav_link_left_block {
  max-width: 390px;
  gap: 8px;
}
.header .header_in .header_head .nav_link .nav_link_right_block {
  max-width: 404px;
  gap: 8px;
}
.header .header_in .header_head .nav_link .nav_link_item {
  position: relative;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 133%;
  color: #fff;
  transition: 0.2s;
}
.header .header_in .header_head .nav_link .nav_link_item::after {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 2px solid #197faf;
  transition: 0.2s;
}
.header .header_in .header_head .nav_link .nav_link_item:hover {
  color: #197faf;
}
.header .header_in .header_head .nav_link .nav_link_item:hover::after {
  width: 100%;
}
.header .header_in .header_bottom .operating_mode .operating_mode_head {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 133%;
  color: #fff;
  margin-bottom: 8px;
}
.header .header_in .header_bottom .operating_mode .operating_mode_value {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  color: #fff;
  opacity: 0.8;
}
.header .header_in .header_bottom .header_messages {
  gap: 32px;
}
.header .header_in .header_bottom .header_messages svg {
  transition: 0.2s;
}
.header .header_in .header_bottom .header_messages svg path {
  transition: 0.2s;
}
.header .header_in .header_bottom .header_messages svg:hover {
  transform: scale(1.2);
}
.header .header_in .header_bottom .header_messages svg:hover path {
  fill: #197faf;
}

.home {
  padding: 233px 32px 27px;
  background-image: url("../images/home.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.home::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
}
.home .home_in {
  max-width: 1165px;
  margin: 0 auto;
  z-index: 2;
}
.home .home_in .title {
  width: calc(100% - 74px);
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 64px;
  line-height: 120%;
  color: #fff;
  margin-bottom: 64px;
}
.home .home_in .title span {
  color: #197faf;
}
.home .home_in .home_list {
  width: calc(100% - 74px);
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  -moz-column-gap: 78px;
       column-gap: 78px;
  row-gap: 42px;
  margin-bottom: 110px;
  padding-left: 0;
}
.home .home_in .home_list .home_list_item {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 133%;
  color: #fff;
  padding-left: 64px;
  position: relative;
}
.home .home_in .home_list .home_list_item:after {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url("../images/icons/home_list.svg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.home .home_in .home_list .submit_application_btn {
  display: inline-block;
  max-width: 336px;
  border-radius: 60px;
  padding: 24px 64px;
  border: none;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #197faf;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  color: #fff;
  transition: 0.3s;
}
.home .home_in .home_list .submit_application_btn:hover {
  background-color: #fff;
  color: #000;
}
.home .home_in svg {
  overflow: visible;
}
.home .home_in .down-animation {
  transform: translateY(0%);
  opacity: 0;
}
@keyframes scrolldown {
  0% {
    transform: translateY(20%);
    opacity: 0.7;
  }
  50% {
    transform: translateY(0%);
    opacity: 0.2;
  }
  100% {
    transform: translateY(20%);
    opacity: 0.7;
  }
}

.about_little {
  padding: 30px 32px 120px;
}
.about_little .about_little_card {
  max-width: 1162px;
  margin: 0 auto;
  gap: 20px;
}
.about_little .about_little_card .card_item {
  gap: 15px;
}
.about_little .about_little_card .card_item:nth-child(1) .card_body {
  max-width: 416px;
}
.about_little .about_little_card .card_item:nth-child(2) .card_body {
  max-width: 500px;
}
.about_little .about_little_card .card_item .director .head {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #000;
  opacity: 0.8;
  margin-bottom: 4px;
}
.about_little .about_little_card .card_item .director .user_name {
  font-family: var(--font-family);
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  line-height: 133%;
  color: #000;
  margin-bottom: 16px;
}
.about_little .about_little_card .card_item .title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 64px;
  line-height: 120%;
  color: #197faf;
  margin-bottom: 35px;
}
.about_little .about_little_card .card_item .description .head {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 133%;
  color: #000;
}
.about_little .about_little_card .card_item .description .head span {
  font-style: italic;
  color: #197faf;
}
.about_little .about_little_card .card_item .description .description_text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #000;
  opacity: 0.8;
}
.about_little .about_little_card .card_item .item_icon {
  margin-bottom: 12px;
}
.about_little .about_little_card .card_item .card_body_item .card_body_item_description {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.8);
}
.about_little .about_little_card .card_item .card_body_item .card_body_item_description span {
  color: #000;
  font-weight: 500;
}
.about_little .about_little_card .card_item .card_video {
  min-width: 50%;
  max-width: 660px;
  border-radius: 32px;
  overflow: hidden;
}
.about_little .about_little_card .card_item .card_video .video_play_btn {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about_little .about_little_card .card_item .card_img {
  min-width: 50%;
  max-width: 582px;
  border-radius: 32px;
}
.about_little .about_little_card .card_item .card_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.services {
  background: #eee;
  padding: 70px 32px 114px;
}
.services .services_in {
  max-width: 1161px;
  margin: 0 auto;
}
.services .services_in .title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 64px;
  line-height: 120%;
  color: #197faf;
  margin-bottom: 42px;
}
.services .services_in .services_card {
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 84px;
}
.services .services_in .services_card .card_item {
  height: 100%;
}
.services .services_in .services_card .card_item:hover .card_img img {
  transform: rotate(3deg) scale(1.05);
}
.services .services_in .services_card .card_item .card_img {
  border-radius: 24px;
  margin-bottom: 32px;
  overflow: hidden;
}
.services .services_in .services_card .card_item .card_img img {
  width: 100%;
  transition: 0.3s;
}
.services .services_in .services_card .card_item .card_body {
  max-height: 100%;
}
.services .services_in .services_card .card_item .card_body .card_title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 133%;
  color: #000;
  margin-bottom: 12px;
}
.services .services_in .services_card .card_item .card_body .card_sum {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 135%;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 24px;
}
.services .services_in .services_card .card_item .card_body .aplication_master_btn {
  border-radius: 60px;
  padding: 16px 42px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #197faf;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 133%;
  color: #fff;
  transition: 0.2s;
}
.services .services_in .services_card .card_item .card_body .aplication_master_btn:hover {
  background-color: #fff;
  color: #000;
}

.about {
  padding: 120px 32px 155px;
}
.about .about_in {
  max-width: 1161px;
  margin: 0 auto;
}
.about .about_in .title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 64px;
  line-height: 120%;
  color: #197faf;
  margin-bottom: 57px;
}
.about .about_in .about_card {
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 110px;
       column-gap: 110px;
  row-gap: 52px;
}
.about .about_in .about_card .card_item .card_icon {
  margin-bottom: 8px;
}
.about .about_in .about_card .card_item .card_body .card_title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 133%;
  color: #000;
  margin-bottom: 24px;
}
.about .about_in .about_card .card_item .card_body .card_description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.8);
}

.catalog {
  background: #eee;
  padding: 74px 32px 60px;
}
.catalog .catalog_in {
  max-width: 661px;
  margin: 0 auto;
}
.catalog .catalog_in .title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 64px;
  line-height: 120%;
  color: #197faf;
  margin-bottom: 16px;
}
.catalog .catalog_in .title_small {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 146%;
  color: #000;
  margin: 0;
  margin-bottom: 16px;
  padding-right: 55px;
}
.catalog .catalog_in .description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.8);
  padding-right: 20px;
  margin: 0;
  margin-bottom: 74px;
}
.catalog .catalog_in .catalog_form .form_control {
  margin-bottom: 24px;
}
.catalog .catalog_in .catalog_form .form_control input {
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  padding: 16px 32px;
  background-color: transparent;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #000;
}
.catalog .catalog_in .catalog_form .form_control input:focus {
  outline: none;
  border: 1px solid #197faf;
}
.catalog .catalog_in .catalog_form .form_control input::-moz-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #000;
}
.catalog .catalog_in .catalog_form .form_control input::placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #000;
}
.catalog .catalog_in .catalog_form .form_control .dropdown {
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  padding: 16px 32px;
}
.catalog .catalog_in .catalog_form .form_control .dropdown .btn {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #000;
  margin-bottom: 0;
  padding: 0;
  box-shadow: none;
}
.catalog .catalog_in .catalog_form .form_control .dropdown .btn::after {
  border: 0;
  width: 14px;
  height: 13px;
  background-image: url("../images/icons/dropdown.svg");
  margin-left: 10px;
}
.catalog .catalog_in .catalog_form .form_control .dropdown .dropdown-menu {
  padding: 0;
  transform: translate(0) !important;
  background-color: transparent;
  border: 0;
}
.catalog .catalog_in .catalog_form .form_control .dropdown .dropdown-menu li .dropdown-item {
  cursor: pointer;
}
.catalog .catalog_in .catalog_form .form_control .dropdown .dropdown-menu li:first-child .dropdown-item {
  margin-top: 10px;
}
.catalog .catalog_in .catalog_form .form_control .dropdown .dropdown-menu .dropdown-item {
  padding: 0;
  margin-bottom: 10px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #000;
}
.catalog .catalog_in .catalog_form .form_control .active {
  border-color: #197faf;
}
.catalog .catalog_in .catalog_form .form_control .active .btn::after {
  background-image: url("../images/icons/dropdown_blue.svg");
}
.catalog .catalog_in .catalog_form .catalog_form_btn {
  margin-top: 8px;
  border-radius: 60px;
  padding: 24px 64px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #197faf;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  color: #fff;
  transition: 0.2s;
}
.catalog .catalog_in .catalog_form .catalog_form_btn:hover {
  background-color: #fff;
  color: #000;
}

.swiper_container {
  padding: 120px 32px 0;
}
.swiper_container .swiper_container_in {
  max-width: 1166px;
  margin: 0 auto;
}
.swiper_container .swiper_container_in .title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 64px;
  line-height: 120%;
  color: #197faf;
  margin-bottom: 93px;
}
.swiper_container .swiper_container_in .swiper {
  max-width: 959px;
  margin-bottom: 42px;
}
.swiper_container .swiper_container_in .swiper .swiper-slide .swiper_img {
  margin-bottom: 26px;
}
.swiper_container .swiper_container_in .swiper .swiper-slide .swiper_img img {
  max-width: 100%;
  width: 100%;
}
.swiper_container .swiper_container_in .swiper .swiper-slide .swiper_body .swiper_title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 146%;
  color: #000;
  margin-bottom: 13px;
}
.swiper_container .swiper_container_in .swiper .swiper-slide .swiper_body .swiper_description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.8);
}
.swiper_container .swiper_container_in .swiper-button-prev {
  transition: 0.2s;
  min-height: 52.97px;
  min-width: 52px;
}
.swiper_container .swiper_container_in .swiper-button-prev svg {
  min-height: 52px;
  min-width: 52px;
}
.swiper_container .swiper_container_in .swiper-button-prev svg g rect {
  transition: 0.2s;
}
.swiper_container .swiper_container_in .swiper-button-prev svg g rect:hover {
  fill: #000;
}
.swiper_container .swiper_container_in .swiper-button-prev::after {
  display: none;
}
.swiper_container .swiper_container_in .swiper-button-next {
  min-height: 52.97px;
  min-width: 52px;
}
.swiper_container .swiper_container_in .swiper-button-next svg {
  min-height: 52px;
  min-width: 52px;
}
.swiper_container .swiper_container_in .swiper-button-next svg rect {
  transition: 0.2s;
}
.swiper_container .swiper_container_in .swiper-button-next::after {
  display: none;
}
.swiper_container .swiper_container_in .swiper-button-next:hover svg g rect {
  fill: #000;
}
.swiper_container .swiper_container_in .our_works_btn {
  max-width: 959px;
  margin: 0 auto;
}
.swiper_container .swiper_container_in .submit_application_btn {
  display: inline-block;
  max-width: 336px;
  border-radius: 60px;
  padding: 24px 64px;
  border: none;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #197faf;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  color: #fff;
  transition: 0.3s;
}
.swiper_container .swiper_container_in .submit_application_btn:hover {
  background-color: #fff;
  color: #000;
}

.reviews .reviews_in .our_works_btn .submit_application_btn {
  max-width: 410px;
}
.reviews .reviews_in .our_works_btn .submit_application_btn svg {
  margin-left: 16px;
}
.reviews .reviews_in .our_works_btn .submit_application_btn:hover {
  background: #000;
  color: #fff;
}

.money_transfers {
  padding: 198px 32px 200px;
  overflow: auto;
}
.money_transfers::-webkit-scrollbar {
  height: 0;
}
.money_transfers .money_transfers_in {
  max-width: 1360px;
  margin: 0 auto;
  gap: 52px;
}

.footer {
  padding: 85px 32px 57px;
  background: #171717;
}
.footer .footer_in {
  max-width: 1163px;
  margin: 0 auto;
  gap: 25px;
}
.footer .footer_in .logo {
  margin-bottom: 42px;
}
.footer .footer_in .address {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 133%;
  color: #fff;
  margin-bottom: 27px;
}
.footer .footer_in .phone {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 133%;
  color: #fff;
  gap: 16px;
  margin-bottom: 35px;
}
.footer .footer_in .operating_mode {
  margin-bottom: 32px;
}
.footer .footer_in .operating_mode .head {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 133%;
  color: #fff;
  margin-bottom: 8px;
}
.footer .footer_in .operating_mode .operating_mode_value {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  color: #fff;
  opacity: 0.8;
}
.footer .footer_in .footer_link {
  margin-bottom: 16px;
}
.footer .footer_in .footer_link a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 133%;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #fff;
  white-space: nowrap;
  transition: 0.2s;
}
.footer .footer_in .footer_link a:hover {
  color: #197faf;
}
.footer .footer_in .footer_btn {
  margin-top: 42px;
  margin-bottom: 142px;
  gap: 24px;
}
.footer .footer_in .footer_btn .request_replacement {
  border-radius: 60px;
  padding: 12px 24px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #197faf;
  border: 1px solid transparent;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #fff;
  transition: 0.2s;
}
.footer .footer_in .footer_btn .request_replacement:hover {
  border-color: #197faf;
  background-color: #fff;
  color: #197faf;
}
.footer .footer_in .footer_btn .write_master_btn {
  border-radius: 60px;
  padding: 12px 24px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #fff;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #000;
  transition: 0.2s;
}
.footer .footer_in .footer_btn .write_master_btn:hover {
  background-color: #197faf;
  color: #fff;
}
.footer .footer_in .footer_messanger {
  gap: 32px;
}
.footer .footer_in .footer_messanger svg {
  transition: 0.2s;
}
.footer .footer_in .footer_messanger svg path {
  transition: 0.2s;
}
.footer .footer_in .footer_messanger svg:hover {
  transform: scale(1.2);
}
.footer .footer_in .footer_messanger svg:hover path {
  fill: #197faf;
}
.footer .footer_in .footer_map {
  max-width: 660px;
}
.footer .footer_in .footer_map img {
  max-width: 100%;
}

.modal {
  padding: 32px !important;
}
.modal .modal-dialog {
  max-width: 750px;
  width: 100%;
  margin: 0 auto !important;
}
.modal .modal-dialog .modal-content {
  padding: 80px 12px 114px;
}
.modal .modal-dialog .modal-content .logo {
  margin-bottom: 33px;
}
.modal .modal-dialog .modal-content .logo img {
  height: 104px;
}
.modal .modal-dialog .modal-content .title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 64px;
  line-height: 120%;
  color: #197faf;
  margin-bottom: 64px;
}
.modal .modal-dialog .modal-content .modal_form {
  max-width: 400px;
  margin: 0 auto;
  margin-bottom: 55px;
}
.modal .modal-dialog .modal-content .modal_form .form_control {
  margin-bottom: 24px;
  gap: 16px;
}
.modal .modal-dialog .modal-content .modal_form .form_control .form-control-input {
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  padding: 16px 32px;
  background-color: transparent;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #000;
}
.modal .modal-dialog .modal-content .modal_form .form_control .form-control-input:focus {
  outline: none;
  border: 1px solid #197faf;
}
.modal .modal-dialog .modal-content .modal_form .form_control .form-control-input::-moz-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #000;
}
.modal .modal-dialog .modal-content .modal_form .form_control .form-control-input::placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #000;
}
.modal .modal-dialog .modal-content .modal_form .form_control .form-check-input {
  min-width: 25px;
  min-height: 25px;
  padding: 0;
  border: 1px solid #000;
  border-radius: 4px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  margin-top: 0;
}
.modal .modal-dialog .modal-content .modal_form .form_control .form-check-input:checked {
  background-color: #197faf;
}
.modal .modal-dialog .modal-content .modal_form .form_control .dropdown {
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  padding: 16px 32px;
}
.modal .modal-dialog .modal-content .modal_form .form_control .dropdown .btn {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #000;
  margin-bottom: 0;
  padding: 0;
  box-shadow: none;
}
.modal .modal-dialog .modal-content .modal_form .form_control .dropdown .btn::after {
  border: 0;
  width: 14px;
  height: 13px;
  background-image: url("../images/icons/dropdown.svg");
  margin-left: 10px;
}
.modal .modal-dialog .modal-content .modal_form .form_control .dropdown .dropdown-menu {
  padding: 0;
  transform: translate(0) !important;
  background-color: transparent;
  border: 0;
}
.modal .modal-dialog .modal-content .modal_form .form_control .dropdown .dropdown-menu li .dropdown-item {
  cursor: pointer;
}
.modal .modal-dialog .modal-content .modal_form .form_control .dropdown .dropdown-menu li:first-child .dropdown-item {
  margin-top: 10px;
}
.modal .modal-dialog .modal-content .modal_form .form_control .dropdown .dropdown-menu .dropdown-item {
  padding: 0;
  margin-bottom: 10px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #000;
}
.modal .modal-dialog .modal-content .modal_form .form_control .active {
  border-color: #197faf;
}
.modal .modal-dialog .modal-content .modal_form .form_control .active .btn::after {
  background-image: url("../images/icons/dropdown_blue.svg");
}
.modal .modal-dialog .modal-content .modal_form .submit_aplication_btn {
  border-radius: 60px;
  padding: 24px 64px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #197faf;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  color: #fff;
  transition: 0.2s;
}
.modal .modal-dialog .modal-content .modal_form .submit_aplication_btn:hover {
  background-color: #000;
  color: #fff;
}

@media (max-width: 1200px) {
  .swiper_container .swiper_container_in .swiper {
    max-width: 100%;
  }
  .swiper_container .swiper_container_in .swiper-button-prev {
    top: -45px;
    right: 50px;
    left: auto;
  }
  .swiper_container .swiper_container_in .swiper-button-prev svg {
    min-height: 32px;
    min-width: 32px;
    max-width: 32px;
    max-height: 32px;
  }
  .swiper_container .swiper_container_in .swiper-button-next {
    top: -45px;
    right: 0;
  }
  .swiper_container .swiper_container_in .swiper-button-next svg {
    min-height: 32px;
    min-width: 32px;
    max-width: 32px;
    max-height: 32px;
  }
}
@media (max-width: 992px) {
  .header {
    padding: 0 14px;
  }
  .header .header_in .nav_link .logo img {
    height: 92px;
  }
  .header .header_in .nav_link .nav_link_left_block .nav_link_item {
    font-size: 16px;
  }
  .header .header_in .nav_link .nav_link_right_block .nav_link_item {
    font-size: 16px;
  }
  .home {
    background-size: cover;
    background-position: center;
  }
  .home .home_in .home_list {
    width: 100%;
    -moz-column-gap: 25px;
         column-gap: 25px;
    row-gap: 50px;
  }
  .about .about_in .about_card {
    -moz-column-gap: 25px;
         column-gap: 25px;
  }
  .services .services_in .services_card {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .header {
    padding: 9px 15px 9px 10px;
    top: 0;
    z-index: 100;
    transition: 0.2s;
  }
  .header .header_in .logo img {
    height: 74px;
  }
  .header .header_in .header_head .nav_link {
    height: calc(100vh - 92px);
    padding: 44px 14px 121px;
    background: #171717;
    gap: 32px;
    position: absolute;
    top: 92px;
    left: 0;
    z-index: 101;
    transform: translateY(-10px) scale(0.8);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
  }
  .header .header_in .header_head .nav_link .nav_link_left_block {
    gap: 32px;
  }
  .header .header_in .header_head .nav_link .nav_link_left_block .nav_link_item {
    font-size: 20px;
  }
  .header .header_in .header_head .nav_link .nav_link_right_block {
    gap: 32px;
  }
  .header .header_in .header_head .nav_link .nav_link_right_block .nav_link_item {
    font-size: 20px;
  }
  .header .header_in .header_head .nav_link .header_messages {
    gap: 32px;
  }
  .header.active {
    background-color: #171717;
  }
  .header.active .header_in .header_head .nav_link {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }
  .home {
    padding: 123px 14px 53px;
  }
  .home .home_in .title {
    font-size: 54px;
  }
  .home .home_in .home_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
  .home .home_in .home_list .home_list_item {
    font-size: 20px;
    padding-left: 42px;
  }
  .home .home_in .home_list .home_list_item::after {
    width: 25px;
    height: 25px;
  }
  .home .home_in .home_list .phone {
    gap: 16px;
    margin-top: 16px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
  }
  .home .home_in .home_list .operating_mode .head {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 125%;
    color: #fff;
    margin-bottom: 8px;
  }
  .home .home_in .home_list .operating_mode .operating_mode_value {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    color: #fff;
    opacity: 0.8;
  }
  .home .home_in .home_list .submit_application_btn {
    margin-top: 77px;
  }
  .about_little {
    padding: 84px 14px;
  }
  .about_little .about_little_card {
    gap: 32px;
  }
  .about_little .about_little_card .card_item {
    gap: 32px;
  }
  .about_little .about_little_card .card_item .director .user_name {
    margin-bottom: 8px;
  }
  .about_little .about_little_card .card_item .card_body {
    max-width: 100% !important;
    gap: 32px;
  }
  .about_little .about_little_card .card_item .card_body .title {
    margin-bottom: 0;
  }
  .about_little .about_little_card .card_item .card_body .card_body_item:last-child {
    margin-top: 32px;
  }
  .about_little .about_little_card .card_item .card_video {
    max-width: 100%;
    margin: 0 auto;
  }
  .about_little .about_little_card .card_item .card_video .video {
    width: 100%;
  }
  .about_little .about_little_card .card_item .card_img {
    width: 100%;
    max-width: 100%;
  }
  .about_little .about_little_card .card_item .card_img img {
    width: 100%;
  }
  .about {
    padding: 84px 14px 115px;
  }
  .about .about_in .about_card {
    grid-template-columns: repeat(2, 1fr);
  }
  .swiper_container {
    padding: 84px 14px 0 14px;
    overflow: hidden;
  }
  .swiper_container .swiper_container_in .swiper {
    margin-right: -32px;
  }
  .money_transfers {
    padding: 84px 14px;
  }
  .money_transfers .money_transfers_in {
    gap: 52px;
  }
  .footer {
    padding: 38px 14px 80px;
  }
  .footer .footer_in .footer_btn {
    margin: 42px 0 38px;
  }
}
@media (max-width: 650px) {
  .footer .footer_in {
    flex-direction: column;
    gap: 44px;
  }
}
@media (max-width: 576px) {
  .home {
    background-position: top center;
  }
  .home .home_in .title {
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 32px;
  }
  .home .home_in .home_list {
    gap: 16px;
    margin-bottom: 0;
  }
  .home .home_in .home_list .home_list_item {
    font-weight: 400;
    font-size: 16px;
    line-height: 169%;
  }
  .home .home_in .home_list .submit_application_btn {
    font-size: 20px;
    line-height: 120%;
  }
  .about_little .about_little_card .card_item {
    gap: 0;
  }
  .about_little .about_little_card .card_item .card_body .director .head {
    font-size: 12px;
    line-height: 150%;
  }
  .about_little .about_little_card .card_item .card_body .director .user_name {
    font-size: 12px;
    line-height: 150%;
    margin-bottom: 8px;
  }
  .about_little .about_little_card .card_item .card_body .title {
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 32px;
  }
  .about_little .about_little_card .card_item .description .head {
    font-size: 18px;
    line-height: 150%;
  }
  .about_little .about_little_card .card_item .description .description_text {
    font-size: 14px;
    line-height: 150%;
  }
  .about_little .about_little_card .card_item .card_video {
    height: 464px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 32px;
  }
  .about_little .about_little_card .card_item .card_video .video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about_little .about_little_card .card_item .card_img {
    margin-bottom: 32px;
  }
  .about_little .about_little_card .card_item .card_body_item .card_body_item_description {
    font-size: 14px;
    line-height: 150%;
  }
  .services {
    padding: 38px 14px 82px;
  }
  .services .services_in .title {
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 32px;
  }
  .services .services_in .services_card {
    row-gap: 64px;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .services .services_in .services_card .card_item .card_body .card_title {
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 12px;
  }
  .services .services_in .services_card .card_item .card_body .card_sum {
    font-size: 14px;
    line-height: 150%;
    margin-bottom: 24px;
  }
  .services .services_in .services_card .card_item .card_body .aplication_master_btn {
    width: 100%;
    border-radius: 60px;
    padding: 16px;
    font-size: 18px;
    line-height: 150%;
    color: #b7daea;
  }
  .about .about_in .title {
    font-size: 32px;
    line-height: 130%;
  }
  .about .about_in .about_card {
    grid-template-columns: repeat(1, 1fr);
    gap: 23px;
  }
  .about .about_in .about_card .card_item .card_icon {
    float: left;
  }
  .about .about_in .about_card .card_item .card_icon svg {
    width: 32px;
    height: 32px;
  }
  .about .about_in .about_card .card_item .card_body .card_title {
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 13px;
    margin-left: 48px;
  }
  .about .about_in .about_card .card_item .card_body .card_description {
    font-size: 14px;
    line-height: 150%;
  }
  .catalog {
    padding: 46px 14px 77px;
  }
  .catalog .catalog_in .title {
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 32px;
  }
  .catalog .catalog_in .title_small {
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 16px;
  }
  .catalog .catalog_in .description {
    font-size: 14px;
    line-height: 150%;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 24px;
  }
  .catalog .catalog_in .catalog_form .form_control input {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
  }
  .catalog .catalog_in .catalog_form .form_control input::-moz-placeholder {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
  }
  .catalog .catalog_in .catalog_form .form_control input::placeholder {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
  }
  .catalog .catalog_in .catalog_form .form_control .dropdown .btn {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
  }
  .catalog .catalog_in .catalog_form .form_control .dropdown .dropdown-menu .dropdown-item {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    margin: 6px 0;
  }
  .catalog .catalog_in .catalog_form .catalog_form_btn {
    max-width: 100%;
    padding: 16px;
    width: 100%;
    font-size: 18px;
    line-height: 150%;
  }
  .swiper_container .swiper_container_in .title {
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 32px;
  }
  .swiper_container .swiper_container_in .swiper {
    margin-right: -14px;
    margin-bottom: 0;
  }
  .swiper_container .swiper_container_in .swiper .swiper-slide .swiper_img {
    margin-bottom: 32px;
  }
  .swiper_container .swiper_container_in .swiper .swiper-slide .swiper_body .swiper_title {
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 16px;
  }
  .swiper_container .swiper_container_in .swiper .swiper-slide .swiper_body .swiper_description {
    font-size: 14px;
    line-height: 150%;
    color: rgba(0, 0, 0, 0.8);
  }
  .swiper_container .swiper_container_in .swiper-button-prev {
    display: none;
  }
  .swiper_container .swiper_container_in .swiper-button-next {
    display: none;
  }
  .swiper_container .swiper_container_in .submit_application_btn {
    width: 100%;
    font-size: 18px;
    line-height: 150%;
    padding: 16px;
  }
  .swiper_container .swiper_container_in .submit_application_btn svg {
    height: 24px;
    margin-left: 24px;
  }
  .footer .footer_in .address {
    font-size: 16px;
    line-height: 150%;
  }
  .footer .footer_in .phone {
    font-size: 16px;
    line-height: 150%;
  }
  .footer .footer_in .operating_mode .head {
    font-size: 16px;
    line-height: 150%;
  }
  .footer .footer_in .operating_mode .operating_mode_value {
    font-size: 16px;
    line-height: 150%;
  }
  .footer .footer_in .footer_link a {
    font-size: 16px;
    line-height: 150%;
  }
  .footer .footer_in .footer_btn .request_replacement {
    font-size: 16px;
    line-height: 150%;
  }
  .footer .footer_in .footer_btn .write_master_btn {
    font-size: 16px;
    line-height: 150%;
  }
  .footer .footer_in .footer_map .map_btn {
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    background: #197faf;
    border-radius: 24px;
    padding: 12px 24px;
    left: 0;
    bottom: 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 169%;
    color: #fff;
  }
  .modal {
    padding: 14px !important;
  }
  .modal .modal-dialog .modal-content {
    padding: 21px 12px 44px;
  }
  .modal .modal-dialog .modal-content .logo {
    margin-bottom: 24px;
  }
  .modal .modal-dialog .modal-content .title {
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 16px;
  }
  .modal .modal-dialog .modal-content .modal_form {
    margin-bottom: 32px;
    width: 100%;
  }
  .modal .modal-dialog .modal-content .modal_form .form_control .dropdown {
    padding: 16px 32px;
  }
  .modal .modal-dialog .modal-content .modal_form .form_control .dropdown .btn {
    font-weight: 400;
    font-size: 14px;
    line-height: 193%;
  }
  .modal .modal-dialog .modal-content .modal_form .form_control .dropdown .dropdown-menu .dropdown-item {
    font-weight: 400;
    font-size: 14px;
    line-height: 193%;
    margin: 6px 0;
  }
  .modal .modal-dialog .modal-content .modal_form .form_control .form-control-input {
    font-weight: 400;
    font-size: 14px;
    line-height: 193%;
    padding: 16px 32px;
  }
  .modal .modal-dialog .modal-content .modal_form .form_control .form-control-input::-moz-placeholder {
    font-weight: 400;
    font-size: 14px;
    line-height: 193%;
  }
  .modal .modal-dialog .modal-content .modal_form .form_control .form-control-input::placeholder {
    font-weight: 400;
    font-size: 14px;
    line-height: 193%;
  }
  .modal .modal-dialog .modal-content .modal_form label {
    font-weight: 400;
    font-size: 14px;
    line-height: 193%;
  }
  .modal .modal-dialog .modal-content .modal_form .submit_aplication_btn {
    width: 100%;
    padding: 16px;
  }
}
@media (max-width: 440px) {
  .services .services_in .services_card {
    grid-template-columns: repeat(1, 1fr);
  }
}/*# sourceMappingURL=main.css.map */

.yoast-breadcrumbs{
text-align:center;
}