* {
  /* scrollbar-width: thin; */
  /* scrollbar-color: #73878D #3A3E40; */
  /* -webkit-tap-highlight-color: transparent; */
}
*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
*::-webkit-scrollbar-track {
  background: rgba(0,0,0,0);
  border: 4px solid transparent;
  background-clip: content-box;
}
*::-webkit-scrollbar-thumb {
  background: #3867A4;
  border-radius: 4px;
}
*::-webkit-scrollbar-button:vertical:start:decrement {
  display: none;
}
*::-webkit-scrollbar-button:vertical:end:increment {
  display: none;
}
*::-webkit-scrollbar-button:horizontal:start:decrement {
  display: none;
}
*::-webkit-scrollbar-button:horizontal:end:increment {
  display: none;
}
html, body {
  padding: 0px;
  margin: 0px;
}
body {
  background-color: #ffffff;
  font-family: 'Fregat';
  /* overflow-x: hidden; */
}
body.noscroll {
  overflow: hidden;
  touch-action: none;
}

/* ========================================================================== */

.page_wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.page_wrapper.gray {
  background-color: #E7E7E9;
}
.page_wrapper.gray_bborder {
  border-bottom: 1px solid #9FA9B2;
}
.page_wrapper.first {
  height: 100vh;
  max-height: 1100px;
}
.first_page_background {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-image: url(/images/fon1.jpg);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}
.first_page_background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.page_container {
  width: 100%;
  max-width: 1450px;
  padding: 0px 25px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
h1.page_title {
  font-family: 'Tactic Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 140%;
  text-align: right;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0px;
  position: relative;
  padding-right: 33px;
  box-sizing: border-box;
}
h1.page_title::after {
  position: absolute;
  content: '';
  right: 0px;
  top: 0px;
  width: 3px;
  height: 100%;
  background-color: #ffffff;
}
h1.secondpage_title {
  font-family: 'Tactic Sans';
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 150%;
  position: relative;
  margin: 10px 0px;
  text-transform: uppercase;
}
h1.secondpage_title.right {
  text-align: right;
}
h1.secondpage_title.padding_l {
  padding-left: 35px;
}
h1.secondpage_title .blue {
  color: #3667A6;
}
h1.secondpage_title .red {
  color: #E73227;
}
h1.secondpage_title.gray_rect,
h1.secondpage_title.white_rect {
  margin: 30px 0px;
}
h1.secondpage_title.gray_rect::after,
h1.secondpage_title.white_rect::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 50%;
  width: auto;
  height: 110%;
  aspect-ratio: 1/1;
  border-radius: 15px;
  z-index: -1;
  transform: translate(-50%, -50%) rotate(45deg);
}
h1.secondpage_title.right::after {
  left: auto;
  right: 0px;
  transform: translate(50%, -50%) rotate(45deg);
}
h1.secondpage_title.white_rect::after {
  background-color: #ffffff;
}
h1.secondpage_title.gray_rect::after {
  background-color: #E7E7E9;
}
h2.secondpage_title {
  font-family: 'Tactic Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 140%;
  text-align: right;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0px;
  position: relative;
  padding-right: 33px;
  box-sizing: border-box;
}
h2.secondpage_title::after {
  position: absolute;
  content: '';
  right: 0px;
  top: 0px;
  width: 3px;
  height: 100%;
  background-color: #ffffff;
}
.page_container.first {
  width: 100%;
  height: 100%;
  align-items: flex-end;
  justify-content: flex-end;
}
.first_page_title_wrapper {
  z-index: 10;
  max-width: 620px;
  margin-bottom: 100px;
}

.first_page_logo_wrapper {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  align-items: center;
  justify-content: center;
}
.first_page_logo_wrapper svg {
  width: 296px;
  height: auto;
  fill: #ffffff;
}

.header_wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0px;
  top: 45px;
  z-index: 100;
  transition: translate 0.25s, background-color 0.25s;
  padding: 15px 25px;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(0,0,0,0);
}
.header_wrapper.fixed {
  position: fixed;
  top: 0px;
  background-color: #E7E7E9;
  border-bottom: 1px solid #9FA9B2;
}
.header {
  width: 100%;
  max-width: 1400px;
  display: grid;
  grid-template-columns: auto 90px 236px auto auto auto auto auto;
  grid-template-areas:
  'logo . search recv_mail recv_adress header_btn header_btn header_btn'
  'logo . menu menu menu social_tg social_wha phone';
  grid-row-gap: 34px;
  position: relative;
  --logo-color: #E73227;
  --text-color: #000000;
  transition: grid-row-gap 0.5s;
}
.header.white {
  --logo-color: #ffffff;
  --text-color: #ffffff;
}
.header_wrapper.fixed .header.white {
  --logo-color: #E73227;
  --text-color: #000000;
}
.header_wrapper.fixed .header.white .fast_search_input {
  background: #B7CDE2;
  border: 1px solid rgba(119, 119, 119, 0.5);
}
.header_wrapper.fixed .header.white .fast_search_input::placeholder {
  color: #454545;
}
.burger_btn {
  display: none;
  position: absolute;
  left: 16px;
  top: 57px;
  z-index: 111;
  transition: left 0.5s;
}
.burger_btn.fixed {
  position: fixed;
  top: 12px;
}
.burger_btn.active {
  left: calc(100% - 28px);
  transition-delay: 0s;
}
.burger_btn_icon {
  width: 28px;
  height: 18px;
  position: relative;
  cursor: pointer;
}
.burger_btn_line {
  position: absolute;
  left: 0px;
  width: 100%;
  height: 2px;
  background-color: #000000;
  border-radius: 2px;
  transition: 0.5s;
}
.burger_btn.white:not(.active, .fixed) .burger_btn_line {
  background-color: #ffffff;
}
.burger_btn_line:nth-child(1){
  top: 0px;
}
.burger_btn_line:nth-child(2){
  top: 50%;
  transform: translate(0px, -50%);
}
.burger_btn_line:nth-child(3){
  top: 100%;
  transform: translate(0px, -100%);
}
.burger_btn.active .burger_btn_line:nth-child(1){
  width: 90%;
  top: 50%;
  transition-delay: 0s;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #E8312F;
}
.burger_btn.active .burger_btn_line:nth-child(2){
  width: 0px;
  transition-delay: 0s;
}
.burger_btn.active .burger_btn_line:nth-child(3){
  width: 90%;
  top: 50%;
  transition-delay: 0s;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #E8312F;
}
.mob_menu_wrapper {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #E7E7E9;
  transform: translate(-100%, 0px);
  transition: 0.25s;
  z-index: 110;
  padding: 28px 16px;
  box-sizing: border-box;
  display: none;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
}
.mob_menu_wrapper.active {
  transform: translate(0px, 0px);
}
.mob_menu_list {
  justify-self: center;
  align-self: start;
  justify-items: start;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0px;
}
.mob_menu_list .main_menu_item {
  width: 100%;
  padding: 10px 15px;
}
.mob_menu_list .main_menu_item_wrapper::after {
  display: none;
}
.mob_menu_recv_group {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 12px;
  justify-items: center;
}
.mob_menu_recv_phones {
  max-width: 200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.mob_menu_recv_phone_item {
  font-family: 'Tactic Sans';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  text-decoration: none;
}
.mob_menu_recv_mail {
  font-family: 'Fregat';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}
.mob_menu_recv_adress {
  font-family: 'Fregat';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}
.mob_menu_social_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 5px;
}
.mob_menu_social {
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mob_menu_social svg {
  width: 100%;
}
.mob_menu_logo {
  justify-self: center;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin-bottom: 40px;
}
.mob_menu_logo svg {
  width: 250px;
  height: auto;
  fill: #E73227;
}
.header_lang_block {
  position: absolute;
  top: 13px;
  left: calc(100% + 24px);
  display: flex;
  align-items: center;
}
.header_lang_flag {
  width: 23px;
  height: 17px;
  margin-right: 5px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.header_lang_arrow {
  width: 12px;
}
.header_lang_toggle {
  font-family: 'Tactic Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: var(--text-color);
  margin-right: 5px;
  text-decoration: none;
}
.header_lang_arrow svg {
  width: 5px;
  height: auto;
  stroke: var(--text-color);
  transform: rotate(90deg) translate(1px, -4px);
}
.header_logo {
  grid-area: logo;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  transition: 0.25s;
}
.header_logo svg {
  width: 296px;
  height: auto;
  fill: var(--logo-color);
}
.header_logo_small {
  grid-area: logo;
  display: none;
  align-items: flex-end;
  justify-content: flex-start;
}
.header_logo_small svg {
  width: 85px;
  height: auto;
  fill: var(--logo-color);
}

.header_wrapper.fixed .header {
  grid-template-columns: auto 90px 1fr auto auto auto auto;
  grid-template-areas:
  'logo . . social_tg social_wha phone header_btn'
  'logo . menu menu menu menu header_btn';
  grid-row-gap: 10px;
  align-items: center;
}
.header_wrapper.fixed .fast_search {
  display: none;
}
.header_wrapper.fixed .header_recv.mail {
  display: none;
}
.header_wrapper.fixed .header_recv.adress {
  display: none;
}
.header_wrapper.fixed .header_recv_phone {
  margin: 0px 14px 0px 5px;
}

.fast_search {
  grid-area: search;
  position: relative;
  margin-left: 13px;
}
.fast_search_input {
  width: 100%;
  height: 44px;
  background: #B7CDE2;
  border: 1px solid rgba(119, 119, 119, 0.5);
  border-radius: 22px;
  padding: 0px 16px;
  font-family: 'Tactic Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: var(--text-color);
  box-sizing: border-box;
}
.header.white .fast_search_input {
  background: rgba(183, 205, 226, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.fast_search_input::placeholder {
  font-family: 'Tactic Sans';
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #454545;
}
.header.white .fast_search_input::placeholder {
  color: #ffffff;
}
.fast_search_input:focus {
  outline: none;
  border: 1px solid #3667A6;
}
.fast_search_icon {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 12px;
  height: 12px;
  transform: translate(0px, -50%);
}
.fast_search_icon svg {
  width: 12px;
  height: auto;
  stroke: #E73227;
}
.header_recv {
  align-self: center;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: var(--text-color);
  position: relative;
  margin-left: 18px;
  padding-left: 18px;
}
.header_recv::after {
  position: absolute;
  content: '';
  left: 0px;
  width: 1px;
  height: 100%;
  background: rgba(119, 119, 119, 0.5);
}
.header_recv.mail {
  grid-area: recv_mail;
}
.header_recv.adress {
  grid-area: recv_adress;
  margin-right: 13px;
}
.header .default_btn {
  grid-area: header_btn;
  padding: 0px 30px;
  margin-left: 17px;
  white-space: nowrap;
}
.header_social.tg {
  grid-area: social_tg;
  margin-right: 5px;
  margin-left: 17px;
}
.header_social.wha {
  grid-area: social_wha;
  margin-right: 5px;
}
.header_social {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header_social svg {
  width: 24px;
  height: auto;
}
.header_recv_phone {
  grid-area: phone;
  justify-self: end;
  align-self: end;
  font-family: 'Tactic Sans';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--text-color);
  text-decoration: none;
}
.main_menu {
  align-self: end;
  grid-area: menu;
  width: 100%;
  max-width: 1400px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: auto;
  grid-template-columns: min-content repeat(4, auto) min-content;
}
.main_menu_item_wrapper {
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.main_menu_item_wrapper::after {
  position: absolute;
  content: '';
  right: 0px;
  width: 1px;
  height: 100%;
  background: rgba(119, 119, 119, 0.5);
}
.main_menu_item_wrapper:last-child::after {
  display: none;
}
.main_menu_item {
  width: max-content;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 19px;
  color: var(--text-color);
  padding: 0px 13px;
  position: relative;
  text-decoration: none;
  cursor: pointer;
}
.default_btn {
  height: 44px;
  background-color: #E73227;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Tactic Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;
  color: #FFFFFF;
  cursor: pointer;
  text-decoration: none;
}

/* ========================================================================== */


h2.page_title {
  font-family: 'Tactic Sans';
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 150%;
  position: relative;
  z-index: 1;
  margin: 10px 0px;
}
h2.page_title.right {
  text-align: right;
}
h2.page_title.padding_l {
  padding-left: 35px;
}
h2.page_title .blue {
  color: #3667A6;
}
h2.page_title .red {
  color: #E73227;
}
h2.page_title.gray_rect,
h2.page_title.white_rect {
  margin: 30px 0px;
}
h2.page_title.gray_rect::after,
h2.page_title.white_rect::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 50%;
  width: auto;
  height: 110%;
  aspect-ratio: 1/1;
  border-radius: 15px;
  z-index: -1;
  transform: translate(-50%, -50%) rotate(-45deg) scale(0);
  transition: 0.5s;
}
h2.page_title.right::after {
  left: auto;
  right: 0px;
  transform: translate(50%, -50%) rotate(-45deg) scale(0);
}
h2.page_title.right.visible::after {
  transform: translate(50%, -50%) rotate(45deg) scale(1);
}
h2.page_title.white_rect::after {
  background-color: #ffffff;
}
h2.page_title.gray_rect::after {
  background-color: #E7E7E9;
}
h2.page_title.visible::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(45deg) scale(1);
}
.page_subtitle {
  font-family: 'Tactic Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 180%;
  color: #000000;
  text-transform: uppercase;
}
.page_subtitle.align_r {
  text-align: right;
}
.page_bigtext {
  font-family: 'Tactic Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 180%;
  color: #000000;
  margin-bottom: 25px;
}
.page_text {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;
  color: #000000;
  margin-bottom: 25px;
}
.page_text.white {
  color: #ffffff;
}
.mp_about_block {
  padding-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.mp_about_block_left_column {
  display: flex;
  flex-direction: column;
}
.mp_about_image_block {
  height: 100%;
  position: relative;
}
.mp_about_image_mob {
  display: none;
  width: 100%;
  height: 300px;
  background-image: url(/images/about.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.mp_about_image_background {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 50vw;
  height: 100%;
  background-image: url(/images/about.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.mp_about_block_left_column .page_subtitle {
  margin-top: 20px;
  margin-bottom: 60px;
}
.mp_about_block_right_column {
  padding: 315px 0px 120px 50px;
  box-sizing: border-box;
}
.ship_circle_icon {
  position: absolute;
  left: 0px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transform: translate(0px, -50%);
  z-index: -1;
  clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0% 50%);
  transform: translate(0px, -50%);
  overflow: hidden;
  transition: 0.5s;
}
.ship_circle_icon.visible {
  clip-path: polygon(0 100%, 100% 100%, 100% 50%, 0% 50%);
}
.ship_circle_icon.right {
  left: auto;
  right: 0px;
}
.ship_circle_icon.bg_white {
  background-color: #ffffff;
}
.ship_circle_icon.bg_gray {
  background-color: #E7E7E9;
}
.ship_circle_waves {
  position: absolute;
  bottom: -12px;
  left: 0px;
  width: 100%;
  height: auto;
}
.ship_circle_icon svg.wave {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: auto;
}
.ship_circle_icon svg.wave:nth-child(1){
  animation: 3s wave_move1 linear infinite;
}
.ship_circle_icon svg.wave:nth-child(2){
  animation: 3s wave_move2 linear infinite;
}
@keyframes wave_move1 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0px);
  }
}
@keyframes wave_move2 {
  0% {
    transform: translate(calc(100% - 2px), 0px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
.ship_circle_icon svg.ship_icon {
  width: 246px;
  height: auto;
  margin-bottom: 24px;
  animation: 5s circle_ship_anim linear infinite;
  --anim-bottom: -25px;
}
@keyframes circle_ship_anim {
  0% {
    transform: rotate(5deg) translate(0px, 0px);
  }
  50% {
    transform: rotate(-5deg) translate(0px, var(--anim-bottom));
  }
  100% {
    transform: rotate(5deg) translate(0px, 0px);
  }
}
.ship_circle_icon.right svg.ship_icon {
  transform: scale(-1, 1);
  animation: 5s circle_ship_right_anim linear infinite;
}
@keyframes circle_ship_right_anim {
  0% {
    transform: rotate(-5deg) translate(0px, 0px) scale(-1, 1);
  }
  50% {
    transform: rotate(5deg) translate(0px, var(--anim-bottom)) scale(-1, 1);
  }
  100% {
    transform: rotate(-5deg) translate(0px, 0px) scale(-1, 1);
  }
}
.ship_circle_icon.ship_red svg.ship_icon {
  fill: #E73227;
}
.ship_circle_icon.ship_blue svg.ship_icon {
  fill: #3667A6;
}

/* ========================================================================== */

.mp_catalog_block {
  padding-top: 70px;
}
.mp_catalog_block_head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 70px;
}
.mp_catblock_head_text {
  max-width: 710px;
}
.mp_catblock_head_toggle {
  display: flex;
  align-items: center;
  font-family: 'Tactic Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 150%;
  color: #000000;
}
.mp_catalog_toggle_arrow {
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mp_catalog_toggle_arrow.prev {
  margin-right: 15px;
}
.mp_catalog_toggle_arrow.next {
  margin-left: 15px;
}
.mp_catalog_toggle_arrow svg {
  width: 100%;
  height: auto;
  stroke: #000000;
}
.mp_catalog_toggle_arrow.prev svg {
  transform: scale(-1, 1);
}
.mp_catalog_toggle_counter.current {
  color: #3667A6;
}
.mp_catalog_toggle_counter.all {
  color: #E73227;
}

.mp_catalog_slider {
  width: 100%;
}
.mp_catalog_slider .owl-dots {
  display: none;
}
.mp_catalog_slider .owl-stage {
  display: flex;
}
.mp_cat_slider_item {
  height: 100%;
  background-color: #E7E7E9;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr;
  text-decoration: none;
}
.mp_cat_slider_item.bottom {
  grid-template-rows: 1fr auto auto;
}
.mp_cat_slider_item.red {
  background-color: #E73227;
}
.mp_cat_slider_item.blue {
  background-color: #3667A6;
}
.mp_cat_item_img_wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
}
.mp_cat_item_img {
  position: absolute;
  left: 50%;
  top: 0px;
  width: 100%;
  height: 100%;
  transform: translate(-50%, 0px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  mask-image: url(/images/cat_mask_top.svg);
  mask-position: center bottom;
  mask-size: cover;
}
.mp_cat_slider_item.bottom .mp_cat_item_img {
  mask-image: url(/images/cat_mask_bottom.svg);
  mask-position: center top;
}
.mp_cat_item_title {
  font-family: 'Tactic Sans';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 140%;
  text-transform: uppercase;
  color: #E73227;
  margin: 40px 26px 20px 26px;
}
.mp_cat_slider_item.bottom .mp_cat_item_title {
  align-self: end;
}
.mp_cat_item_text {
  align-self: start;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;
  color: #000000;
  margin: 0px 26px 40px 26px;
}
.mp_cat_slider_item.red .mp_cat_item_title,
.mp_cat_slider_item.blue .mp_cat_item_title {
  color: #ffffff;
}
.mp_cat_slider_item.red .mp_cat_item_text,
.mp_cat_slider_item.blue .mp_cat_item_text {
  color: #ffffff;
}
.mp_cat_slider_item.bottom .mp_cat_item_title {
  margin: 60px 26px 20px 26px;
}

/* ========================================================================== */

.advantages_block {
  padding-top: 70px;
}
.advantages_block_head {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.advantages_block_head .page_subtitle {
  margin-top: 30px;
}
.advantages_block_footer {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-areas:
  'advantages_title advantages_title .'
  '. advantages_list advantages_list';
  position: relative;
  z-index: 2;
}
.advantages_block_footer h3.page_title {
  grid-area: advantages_title;
  justify-self: start;
}
h3.page_title {
  font-family: 'Tactic Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 140%;
  text-transform: uppercase;
  color: #FFFFFF;
  position: relative;
  margin: 25px 0px;
}
h3.page_title.white {
  color: #ffffff;
}
h3.page_title.blue {
  color: #3667A6;
}
h3.page_title.border_l {
  padding-left: 35px;
  border-left: 3px solid #ffffff;
}
.advantages_triangle_bg {
  position: absolute;
  right: 170px;
  top: 50%;
  width: 1400px;
  height: 1400px;
  max-width: 1000px;
  max-height: 1000px;
  border-radius: 70px;
  background-color: #3667A6;
  background-image: url(/images/pattern.png);
  background-position: center;
  background-repeat: repeat;
  z-index: -1;
  transform: translate(0, -50%) rotate(45deg);
  transform-origin: center;
}
.advantages_list {
  justify-self: end;
  grid-area: advantages_list;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 30px;
  box-sizing: border-box;
}
.advantages_list_row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: auto;
  grid-column-gap: 40px;
}
.advantages_list_row.first {
  justify-self: end;
}
.advantage_item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.advantage_item_title {
  position: relative;
  font-family: 'Tactic Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 150%;
  text-transform: uppercase;
  color: #E73227;
  border-bottom: 1px solid #E7E7E9;
  z-index: 1;
}
.advantage_item_title::after {
  position: absolute;
  content: '';
  left: -20px;
  top: -15px;
  width: 58px;
  height: 58px;
  background-color: #E7E7E9;
  border-radius: 15px;
  z-index: -1;
  transform: rotate(-45deg) scale(0);
  transition: 0.5s;
}
.advantage_item_title.visible::after {
  transform: rotate(45deg) scale(1);
}
.advantage_item_label {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  color: #000000;
  z-index: 1;
}
.mp_certificates_block {
  margin-top: 85px;
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  grid-column-gap: 80px;
  padding-left: 180px;
  box-sizing: border-box;
}
.mp_certificates_block_text {
  justify-self: start;
  padding-top: 100px;
  box-sizing: border-box;
}
.certificates_triangle_bg {
  position: absolute;
  right: 390px;
  top: 50%;
  width: 1400px;
  height: 1400px;
  max-width: 1000px;
  max-height: 1000px;
  border-radius: 70px;
  background-color: #E7E7E9;
  z-index: -1;
  transform: translate(0, -50%) rotate(45deg);
  transform-origin: center;
}
.sp_certificates_list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 30px;
}
.sp_certificates_list a.gallery_sertif {
  text-decoration: none;
}
.mp_certificates_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}
.mp_certificate_item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mp_certificate_item a {
  text-decoration: none;
}
.mp_certificate_img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
}
.mp_certificate_title {
  margin-top: 15px;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  color: #000000;
}
.pages_news_block .text_btn {
  grid-area: all_news_link;
  justify-self: end;
}
.pages_news_list {
  grid-area: news_list;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 20px;
  z-index: 2;
  position: relative;
}
.pages_news_list.rect_gray_left::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 50%;
  width: auto;
  height: 60%;
  aspect-ratio: 1 / 1;
  border-radius: 50px;
  z-index: -1;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #E7E7E9;
}
.pages_news_list_item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  opacity: 0;
  transform: translate(0px, 100%);
  transition: 0.5s;
}
.pages_news_list_item.visible {
  transform: translate(0px, 0px);
  opacity: 1;
}
.news_page_list .pages_news_list_item {
  transform: translate(0px, 0px);
  opacity: 1;
}
.pages_news_list_item_img {
  width: 100%;
  aspect-ratio: 1/1;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.pages_news_list_item_date {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  color: #E73227;
  margin-top: 20px;
  margin-bottom: 25px;
}
.pages_news_list_item_title {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;
  color: #000000;
}
.pages_news_actions {
  grid-area: news_text;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.pages_news_actions h2.page_title {
  z-index: -1;
}
.pages_news_actions .page_text {
  text-align: right;
}
.text_btn {
  display: flex;
  align-items: center;
  font-family: 'Tactic Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 180%;
  color: #000000;
  text-decoration: none;
  cursor: pointer;
}
.arrows_group {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 3px;
  align-items: center;
  margin-right: 10px;
}
.arrows_group svg {
  height: 17px;
  stroke: #E73227;
  stroke-width: 2.5;
}
.pages_news_block_wrapper {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.pages_news_block {
  width: 100%;
  max-width: 1450px;
  padding: 115px 25px 0px 25px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-column-gap: 40px;
  grid-template-areas:
  'news_list news_text'
  'news_list all_news_link'
  'news_list .';
  position: relative;
}
.pages_news_triangle_bg {
  position: absolute;
  right: 0px;
  top: 50%;
  height: 75%;
  aspect-ratio: 1 / 1;
  border-radius: 70px;
  background-color: #E7E7E9;
  transform: translate(calc(50% - 110px), -50%) rotate(45deg);
  transform-origin: center;
  z-index: -1;
}

/* ========================================================================== */

.page_wrapper.application {
  margin-top: 50px;
}
.page_application_bg {
  position: absolute;
  width: 100%;
  height: 100%;
}
.page_application_bg_img {
  max-width: 2500px;
  position: absolute;
  left: 50%;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, 0px);
}
.page_application_bg .bg_wave {
  position: absolute;
  left: 0px;
  top: -2px;
  width: 100%;
  height: auto;
  fill: #ffffff;
  z-index: 3;
}
.page_application_bg::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 200px;
  left: 0px;
  bottom: -2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  z-index: 1;
}
.page_application_bg::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  left: 0px;
  bottom: -2px;
  background-color: #E7E7E9;
  z-index: 2;
}
.page_application_container .page_text {
  padding-left: 35px;
  box-sizing: border-box;
}
.page_application_container .personal_politic {
  padding-left: 35px;
  box-sizing: border-box;
}
.application_form_block {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 30px;
  margin-top: 25px;
  margin-bottom: 30px;
  padding-left: 35px;
  box-sizing: border-box;
}
.application_form_block .form_input_block:nth-child(1){
  grid-row: 1/2;
  grid-column: 1/3;
}
.application_form_block .form_input_block:nth-child(2){
  grid-row: 2/3;
  grid-column: 1/2;
}
.application_form_block .form_input_block:nth-child(3){
  grid-row: 2/3;
  grid-column: 2/3;
}
.application_form_block .form_input_block:nth-child(4){
  grid-row: 3/4;
  grid-column: 1/3;
}
.personal_politic {
  display: flex;
  align-items: flex-start;
}
.custom_checkbox {

}
.custom_checkbox input {
  display: none;
}
.custom_ch {
  width: 24px;
  height: 24px;
  border: 1px solid #ffffff;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}
.custom_ch svg {
  position: absolute;
  top: -1px;
  right: -7px;
  width: 25px;
  height: 21px;
  stroke: #ffffff;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
}
.custom_checkbox input:checked + .custom_ch svg {
  opacity: 1;
}
.pers_politic_text {
  font-family: 'Fregat';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #FFFFFF;
  margin-left: 15px;
}
.personal_politic.error .pers_politic_text {
  color: #e8312f;
}
.pers_politic_text a {
  text-decoration: underline;
  color: #FFFFFF;
}
.personal_politic.error .pers_politic_text a {
  color: #e8312f;
}
.pers_politic_text a:hover {
  text-decoration: none;
}

.form_input_block {
  position: relative;

}
.default_input {
  width: 100%;
  height: 50px;
  background-color: #3667A6;
  border: 2px solid #ffffff;
  border-radius: 10px;
  font-family: 'Tactic Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  color: #FFFFFF;
  padding: 0px 20px;
  box-sizing: border-box;
}
textarea.default_input {
  height: 150px;
  resize: vertical;
  padding: 8px 20px;
}
.default_input:focus {
  outline: none;
}
.default_input.error {
  border: 2px solid #E73227;
}
.form_input_label {
  position: absolute;
  top: 25px;
  left: 20px;
  font-family: 'Tactic Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  color: #FFFFFF;
  transform: translate(0px, -50%);
  transition: 0.25s;
  pointer-events: none;
}
.form_input_label::after {
  position: absolute;
  content: '';
  top: calc(50% + 1px);
  left: 0px;
  width: 100%;
  height: 3px;
  transform: translate(0px, -50%);
  background-color: #3667A6;
  z-index: -1;
}
.form_input_label .star {
  color: #E73227;
}
.form_input_block input:focus + .form_input_label {
  top: 0;
}
.form_input_block input:not(:placeholder-shown) + .form_input_label {
  top: 0;
}
.form_input_block textarea:focus + .form_input_label {
  top: 0;
}
.form_input_block textarea:not(:placeholder-shown) + .form_input_label {
  top: 0;
}
.page_application_block {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  grid-column-gap: 0px;
}
.page_application_container {
  grid-column: 2 / 3;
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 240px;
  margin-bottom: 150px;
  background-color: #3667A6;
  background-image: url(/images/pattern.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 64px 52px;
  box-sizing: border-box;
  border-radius: 20px;
}
.page_application_container .default_btn {
  justify-self: start;
  padding: 0px 20px;
  margin: 30px 0px 0px 35px;
}

/* ========================================================================== */

.footer_block {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas:
  'logo text recv_list'
  '. coopyright .';
  grid-row-gap: 50px;
  margin-top: 50px;
  margin-bottom: 50px;
}
.footer_left_column {
  grid-area: logo;
  max-width: 387px;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 16px;
}
.footer_logo {
  width: 100%;
}
.footer_logo svg {
  width: 100%;
  height: auto;
  fill: #E73227;
}
.footer_logo_text {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  color: #000000;
}
.footer_text {
  grid-area: text;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  color: #000000;
}
.footer_coopyright {
  grid-area: coopyright;
  font-family: 'Tactic Sans';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  color: #000000;
}
.footer_recv_list {
  grid-area: recv_list;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 12px;
  justify-self: end;
  justify-items: end;
}
.footer_phones_list {
  display: flex;
  flex-wrap: wrap;
}
.footer_phone_item {
  font-family: 'Tactic Sans';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #000000;
  text-decoration: none;
}
.footer_recv_mail {
  font-family: 'Fregat';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 19px;
  color: #000000;
}
.footer_recv_adress {
  font-family: 'Fregat';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 19px;
  color: #000000;
}
.footer_social_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 5px;
}
.footer_social {
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_social svg {
  width: 100%;
}

/* ========================================================================== */

.page_wrapper.develop {
  background-color: #3667A6;
  background-image: url(/images/pattern.png);
  background-repeat: repeat;
}
.develop_text {
  margin: 36px;
  font-family: 'Tactic Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  color: #FFFFFF;
}
.develop_text a {
  text-decoration: none;
  color: #ffffff;
}
.develop_text a:hover {
  text-decoration: underline;
}

/* ========================================================================== */

.page_head_background_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
  min-height: 515px;
}
.page_head_background {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-image: url(/images/fon1.jpg);
  background-position: bottom -80px center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page_head_background_cont {
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 70px;
  padding: 0px 25px;
  box-sizing: border-box;
}
.page_head_background_title_wrapper {
  width: 100%;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.secondpage_container {
  width: 100%;
  max-width: 1450px;
  padding: 70px 25px 0px 25px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  font-family: 'Fregat';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;
  color: #000000;
}
.secondpage_container .big_text {
  font-family: 'Tactic Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 180%;
  color: #000000;
}
.secondpage_container blockquote {
  margin: 0px;
  margin-bottom: 25px;
  padding: 0px 25px;
  border-left: 3px solid #3867A4;
}
.secondpage_container p {
  margin: 0px;
  margin-bottom: 25px;
}
.secondpage_container p a {
  font-family: 'Tactic Sans';
  font-weight: 400;
  color: #3667A6;
  text-decoration: none;
}
.secondpage_container p a:hover {
  text-decoration: underline;
}
.secondpage_container p a.get_proposal_btn {
  color: #ffffff;
}
.secondpage_container ul {
  margin: 0px;
  margin-bottom: 25px;
  padding-left: 35px;
}
.secondpage_container li {
  position: relative;
  padding-left: 20px;
  list-style-type: none;
}
.secondpage_container li::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background-color: #E73227;
}
.page_cont_img_wrapper {
  float: right;
  width: 50%;
  padding-top: 30px;
  padding-bottom: 50px;
  padding-left: 15px;
  display: flex;
  justify-content: flex-end;
}
.page_cont_img {
  width: 100%;
  max-width: 547px;
  border-radius: 15px;
  border: 1px solid #E7E7E9;
  box-sizing: border-box;
}
.contentimageright {
  float: right;
  width: 100%;
  max-width: 547px;
  border-radius: 15px;
  margin: 0px 0px 50px 0px;
}
.secondpage_container h3 {
  font-family: 'Tactic Sans';
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 150%;
  color: #E73227;
  margin: 0px;
  margin-top: 5px;
  margin-bottom: 25px;
  position: relative;
}
.secondpage_container h3::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 50%;
  width: auto;
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 15px;
  z-index: -1;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #E7E7E9;
}
.table_wrapper {
  max-width: 100%;
  overflow: auto;
}
.table_wrapper::-webkit-scrollbar {
  display: none;
}
.secondpage_container table {
  width: 100%;
  /* border-collapse: collapse; */
  border-spacing: 1px;
  margin-bottom: 25px;
}
.secondpage_container table td {
  background-color: #ffffff;
}
.secondpage_container table tr:nth-child(2n) td {
  background-color: #E7E7E9;
}
.secondpage_container thead td {
  font-family: 'Fregat';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;
  padding: 5px 15px;
  box-sizing: border-box;
  background-color: #3667A6;
  color: #ffffff;
}
.secondpage_container thead tr:nth-child(2n) td {
  background-color: #E7E7E9;
  color: #000000;
}
.secondpage_container thead tr:first-child td:first-child {
  border-radius: 15px 0px 0px 0px;
}
.secondpage_container thead tr:first-child td:last-child {
  border-radius: 0px 15px 0px 0px;
}
.secondpage_container tbody tr td {
  font-family: 'Fregat';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;
  color: #000000;
  padding: 5px 15px;
  box-sizing: border-box;
}
.secondpage_container tbody tr:last-child td:first-child {
  /* border-radius: 0px 0px 0px 15px; */
}
.secondpage_container tbody tr:last-child td:last-child {
  /* border-radius: 0px 0px 15px 0px; */
}
.secondpage_container tbody tr td[rowspan] {
  background-color: #E7E7E9;
}
.company_create_wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #3667A6;
  background-image: url(/images/pattern.png);
}
.company_create_container {
  width: 100%;
  max-width: 1450px;
  display: flex;
  justify-content: center;
  padding: 90px 25px;
  box-sizing: border-box;
}
.company_create_block {
  display: grid;
  grid-template-columns: 1fr auto auto auto 1fr;
  grid-template-areas:
  'group_tl group_tl . group_tr group_tr'
  'group_cl c_rect c_rect c_rect group_cr'
  'group_bl group_bl . group_br group_br';
  grid-row-gap: 50px;
}
.ccreate_center_rect {
  align-self: center;
  justify-self: center;
  grid-area: c_rect;
  font-family: 'Tactic Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  text-align: center;
  color: #000000;
  z-index: 1;
  position: relative;
  margin: 0px 90px;
}
.ccreate_center_rect::after {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  z-index: -1;
  background-color: #ffffff;
  border-radius: 15px;
  width: 85%;
  aspect-ratio: 1/1;
  transform: rotate(45deg) translate(-50%, -50%);
  transform-origin: top left;
}
.company_create_group {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 15px;
}
.company_create_group:nth-child(1){
  grid-area: group_tl;
  text-align: right;
  justify-items: end;
  justify-self: end;
  max-width: 475px;
}
.company_create_group:nth-child(2){
  grid-area: group_cl;
  text-align: right;
  justify-items: end;
}
.company_create_group:nth-child(3){
  grid-area: group_bl;
  text-align: right;
  justify-items: end;
}
.company_create_group:nth-child(5){
  grid-area: group_tr;
  text-align: left;
  justify-items: start;
  max-width: 560px;
}
.company_create_group:nth-child(6){
  grid-area: group_cr;
  text-align: left;
  justify-items: start;
}
.company_create_group:nth-child(7){
  grid-area: group_br;
  text-align: left;
  justify-items: start;
}
.company_create_item {
  display: flex;
  align-items: flex-start;
}
.company_create_item_text {
  font-family: 'Tactic Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  color: #FFFFFF;
}
.company_create_item_arrow {
  width: 22px;
  min-width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.company_create_item_arrow.left {
  margin-right: 0px;
  margin-left: 10px;
  margin-top: 5px;
  transform: scale(-1, 1);
}
.company_create_item_arrow svg {
  width: 100%;
  height: auto;
  stroke: #ffffff;
}

/* ========================================================================== */

.news_page_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 15px;
  grid-row-gap: 70px;
  padding-top: 70px;
}
.news_page_list .pages_news_list_item {
  align-items: center;
}
.news_page_list .pages_news_list_item .pages_news_list_item_title {
  text-align: center;
}


/* ========================================================================== */

.secondpage_catalog_head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 70px;
}
.default_btn.catalog {
  padding: 0px 30px;
  margin-top: 30px;
}
.default_btn.catalog .arrows_group svg {
  stroke: #ffffff;
}
.default_btn.catalog .pdf_icon {
  width: 24px;
  height: auto;
  margin-left: 12px;
  fill: #ffffff;
}
.catalog_grid {
  width: 100%;
  display: inline-grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  /* grid-template-columns: repeat(3, 450px); */
  grid-row-gap: 70px;
  grid-column-gap: 25px;
  clear: both;
}
.catalog_card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  height: 100%;
}
.catalog_card_body {
  height: 100%;
  background-color: #E7E7E9;
  border-radius: 15px 15px 15px 0px;
}
/* .catalog_grid_row.blue .catalog_card_body {
  background-size: 1000px;
  background-color: #3667A6;
  background-image: url(/images/pattern.png);
} */
.catalog_card.blue .catalog_card_body {
  background-size: 1000px;
  background-color: #3667A6;
  background-image: url(/images/pattern.png);
}
.catalog_card_title {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Tactic Sans';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  padding: 36px 15px;
}
/* .catalog_grid_row.blue .catalog_card_title {
  color: #ffffff;
} */
.catalog_card.blue .catalog_card_title {
  color: #ffffff;
}
.catalog_card_img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.catalog_card_label {
  padding: 20px 16px 5px 16px;
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;
  text-align: center;
  color: #000000;
}




/* .catalog_grid_row.blue .catalog_card_label {
  color: #ffffff;
} */
.catalog_card.blue .catalog_card_label {
  color: #ffffff;
}
.catalog_card_footer {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-column-gap: 18px;
}
.catalog_card_footer_pl {
  width: 100%;
  height: 100%;
  background-color: #E7E7E9;
  border-radius: 0px 0px 15px 15px;
  position: relative;
  z-index: 1;
}
/* .catalog_grid_row.blue .catalog_card_footer_pl {
  background-size: 1000px;
  background-color: #3667A6;
  background-image: url(/images/pattern.png);
  background-position: top -10px left;
} */
.catalog_card.blue .catalog_card_footer_pl {
  background-size: 1000px;
  background-color: #3667A6;
  background-image: url(/images/pattern.png);
  background-position: top -10px left;
}
.catalog_card_footer_pl::before {
  position: absolute;
  content: '';
  right: 0px;
  top: 0px;
  width: 30px;
  height: 30px;
  background-color: #E7E7E9;
  z-index: -2;
  transform: translate(100%, 0px);
}
/* .catalog_grid_row.blue .catalog_card_footer_pl::before {
  background-color: #3667A6;
} */
.catalog_card.blue .catalog_card_footer_pl::before {
  background-color: #3667A6;
}
.catalog_card_footer_pl::after {
  position: absolute;
  content: '';
  right: 0px;
  top: 0px;
  width: 30px;
  height: 30px;
  border-radius: 15px 0px 0px 0px;
  background-color: #ffffff;
  z-index: -1;
  transform: translate(100%, 0px);
}
.catalog_card_btn {
  height: 44px;
  background-color: #E73227;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Tactic Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;
  color: #FFFFFF;
  cursor: pointer;
  text-decoration: none;
  padding: 0px 20px;
  margin-top: 18px;
  z-index: 2;
}
.catalog_card_btn .arrows_group svg {
  stroke: #ffffff;
}
.get_proposal_btn {
  height: 44px;
  background-color: #E73227;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Tactic Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;
  color: #FFFFFF;
  cursor: pointer;
  text-decoration: none;
  padding: 0px 20px;
  margin: 25px 0px;
  z-index: 2;
}
.grid_columns {
  display: grid;
}
.grid_columns.two {
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 100px;
}
.grid_columns.center_rect {
  position: relative;
}
.grid_columns.center_rect::after {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  height: 50%;
  aspect-ratio: 1/1;
  background-color: #E7E7E9;
  border-radius: 15px;
  z-index: -1;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* ========================================================================== */

.gallerycont {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 18px;
}
.gallerycont a {
  text-decoration: none;
}
.gallerycont img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 15px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
  object-fit: cover;
}

/* ========================================================================== */

.jqvmap-label {
  font-family: 'Fregat';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;
  z-index: 20;
}
.advantages_block_map {
  width: 100%;
  aspect-ratio: 2.5 / 1;
  position: relative;
  z-index: 3;
}
.advantages_block_map ._map_block {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120%;
  max-width: calc(100vw - 10px);
  height: 125%;
  z-index: 10;
  transform: translate(-50%, -50%);
  padding: 0px 10%;
  box-sizing: border-box;
  overflow: hidden;
}
.advantages_block_map ._map_block::-webkit-scrollbar {
  display: none;
}
._map_block .map_svg {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  padding-left: 10%;
  box-sizing: border-box;
}
._map_block .path-map-region {
  stroke-width: 1;
  stroke: #ffffff;
  fill: #7394BF;
  transform-origin: center;
  position: relative;
  transition: 0.5s;
}
._map_block .path-map-region:hover {
  fill: #3667A6;
}
._map_block .path-map-region.presence.animate {
  fill: #3667A6;
}
._map_block .marker {
  position: absolute;
  z-index: 10;
  transform: translate(-50%, calc(-50% - 12px));
  pointer-events: none;
  opacity: 0;
}
._map_block .marker.animate {
  animation-delay: 1;
  animation: 1s show_marker ease-out forwards;
}
@keyframes show_marker {
  0% {
    opacity: 0;
    transform: translate(-50%, -500%) scale(2);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, calc(-50% - 12px));
  }
}
._map_block .marker.up {
  /* transition: 0.25s !important; */
  /* transform: translate(-50%, -100%) !important; */
}
._map_block .region-name {
  max-width: 242px;
  position: absolute;
  width: max-content;
  z-index: 11;
  transform: translate(-100%, -100%);
  background-color: #000000;
  border-radius: 5px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  color: #ffffff;
  padding: 5px 10px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
._map_block .region-name::after {
  position: absolute;
  content: '';
  top: 100%;
  right: 0px;
  width: 10px;
  height: 10px;
  background-color: #000000;
  transform: translate(0, -50%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
._map_block .region-name.show {
  opacity: 1;
  visibility: visible;
}

.search_list {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 16px;
}
.search_list_row {
  display: flex;
  align-items: center;
  font-family: 'Tactic Sans';
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
}
.search_list_num {
  color: #000000;
  margin-right: 8px;
}
.search_list_link a {
  color: #3667A6;
  text-decoration: none;
}
.search_list_link a:hover {
  text-decoration: underline;
}

/* ========================================================================== */

.window_wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.window_placeholder {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
}
.window_cont {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.window_content_block {
  box-shadow: 6px 1px 29px rgba(0, 0, 0, 0.3);
}
.window_cont .window_content_block {
  animation: 0.25s window_cont_in cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
.window_cont .quiz_window_wrapper {
  animation: 0.25s window_cont_in cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
.window_cont .application_window {
  animation: 0.25s window_cont_in cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
@keyframes window_cont_in {
  0% { opacity: 0; transform: translate( 0%, 25%); }
  100% { opacity: 1; transform: translate( 0%, 0%); }
}
.window_cont .window_content_block.out {
  animation: 0.25s window_cont_out cubic-bezier(0.25, 0.5, 0.5, 0.9) forwards;
}
@keyframes window_cont_out {
  0% { opacity: 1; transform: translate( 0%, 0%); }
  100% { opacity: 0; transform: translate( 0%, 25%); }
}
.window_loading_logo {
  width: 200px;
  height: auto;
  animation: 3s window_loading_logo ease-in-out infinite;
}
@keyframes window_loading_logo {
  0% {
    transform: scale(0.7);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.7);
  }
}
svg.window_loading_logo {
  width: 246px;
  height: auto;
  margin-bottom: 24px;
  animation: 5s circle_ship_anim linear infinite;
  --anim-bottom: 0px;
  fill: #ffffff;
}

/* ========================================================================== */

.pages_search {
  max-width: 900px;
  grid-area: search;
  position: relative;
  margin-bottom: 25px;
}
.pages_search_input {
  width: 100%;
  height: 54px;
  background: #ffffff;
  border: 1px solid #3867A4;
  border-radius: 32px;
  padding: 0px 16px;
  font-family: 'Tactic Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: #000000;
  box-sizing: border-box;
}
.header.white .pages_search_input {
  background: rgba(183, 205, 226, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.pages_search_input::placeholder {
  font-family: 'Tactic Sans';
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: #676767;
}
.header.white .pages_search_input::placeholder {
  color: #ffffff;
}
.pages_search_input:focus {
  outline: none;
  border: 1px solid #3667A6;
}
.pages_search_icon {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translate(0px, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.pages_search_icon svg {
  width: 20px;
  height: auto;
  stroke: #E73227;
  fill: none;
  transition: 0.25s;
}
.pages_search_icon:hover svg {
  transform: scale(1.3);
}

/* ========================================================================== */

.secondpage_container img {
  height: auto !important;
  border-radius: 15px;
  border: 1px solid silver;
  box-sizing: border-box;
}
.secondpage_container .contentnews img {
  width: 100% !important;
  max-width: 750px !important;
}
.rezsmesi_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  grid-gap: 20px;
  margin-bottom: 25px;
}
.rezsmesi_item {
  background-color: #E7E7E9;
  border-radius: 20px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  border: 1px solid #E7E7E9;
}
.rezsmesi_item:hover {
  border: 1px solid #3667A6;
}
.secondpage_container p a.rezsmesi_item:hover {
  text-decoration: none;
}
.rezsmesi_item_cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: 'Tactic Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #3667A6;
}
.rezsmesi_item strong {
  font-weight: 600;
  color: #E73227;
  margin-bottom: 12px;
  font-size: 24px;
}

.page_wrapper.catalog {
  overflow: hidden;
}
