*::-webkit-scrollbar {
  width: 8px;
}
textarea::-webkit-scrollbar {
  width: 6px;
}
*::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 6px;
}
*::-webkit-scrollbar-thumb {
  background: #343745;
  border-radius: 6px;
}
*::-webkit-scrollbar-thumb:hover {
  background: #5B709C;
}
*::-webkit-scrollbar-corner {
  background: transparent;
}
html, body {
  margin: 0px;
  padding: 0px;
  font-family: 'Futura PT Book';
  background-color: #ffffff;

  --side-padding: 25px;
  /* --max-width: calc(1640px + calc(var(--side-padding) * 2)); */
  --max-width: calc(1540px + calc(var(--side-padding) * 2));

  --header-height: 133px;
  --header-height-scrolled: 69px;
  --secondpage-header-height: 490px;
  --noscroll-padding: 8px;

  --main-border-color: #797977;
  /* --main-border-color: #D9D9D9; */
}
body {

}
body.noscroll {
  overflow: hidden;
  padding-right: var(--noscroll-padding);
}
h1 {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: normal;
  text-transform: uppercase;
  color: #1D1D1D;
  margin: 0px;
}
h2 {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: normal;
  text-transform: uppercase;
  color: #1D1D1D;
  margin: 0px;
}
h3 {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: normal;
  text-transform: uppercase;
  color: #1D1D1D;
  margin: 0px;
}
h2.center {
  text-align: center;
}
h3.center {
  text-align: center;
}
p {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #1D1D1D;
}
.liquid_glass {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 0px;
  height: 0px;
}
.blue_link {
  display: inline-flex;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #5B709C;
  position: relative;
  text-decoration: none;
  cursor: pointer;
}
.blue_link::after {
  position: absolute;
  content: '';
  left: 0px;
  bottom: 0px;
  width: 100%;
  border-bottom: 1px dashed #5B709C;
}
.blue_link:hover::after {
  border-bottom: 0px;
}
.blue_link svg {
  width: 13px;
  height: auto;
  fill: #5B709C;
  stroke: none;
  margin-left: 12px;
}
.blue_link.edit svg {
  width: 15px;
}

/* ========================================================================== */

.header_wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  top: 0px;
  left: 0px;
  position: fixed;
  z-index: 100;
  transition: 0.5s;
  will-change: auto;
}
.header_wrapper.scrolled {
  /* background-color: rgba(0, 0, 0, 80%); */
  /* backdrop-filter: blur(6px); */
}

.header_wrapper.scrolled .header_logo .logo_text_wrapper {
  width: 0px;
}
.header_wrapper.scrolled > .header .header_top {
  height: 0px;
}
.header_wrapper.scrolled > .header {
  grid-gap: 0px;
  padding: 12px var(--side-padding) 12px var(--side-padding);
}

.header_wrapper .header_bg {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.header_wrapper .header_bg::before {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  background-image: var(--header-bg-img);
  background-position: -0px center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  pointer-events: none;
  will-change: auto;
}
.header_wrapper.secondpage .header_bg::before {
  height: var(--secondpage-header-height);
}
.header_wrapper.scrolled .header_bg::before {
  transition: 0.25s;
  opacity: 0.8;
}
.header_wrapper .header_bg::after {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0%);
  transition: 0.25s;
  pointer-events: none;
  backdrop-filter: blur(0px);
  will-change: auto;
}
.header_wrapper.scrolled .header_bg::after {
  background-color: rgba(0, 0, 0, 50%);
  backdrop-filter: url(#displacementFilter) blur(10px);
}

/* .header_wrapper.index .header_bg::before {
  display: none;
}
.header_wrapper.index .header_bg::after {
  background-color: rgba(0, 0, 0, 80%);
} */
.header_wrapper > .header {
  width: 100%;
  max-width: var(--max-width);
  padding: 31px var(--side-padding) 7px var(--side-padding);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-row-gap: 18px;
  transition: 0.25s;
  grid-template-areas:
  'logo header_top header_top'
  'logo header_menu place_btn';
}
.header_wrapper > .header .header_top {
  grid-area: header_top;
  justify-self: end;
  display: grid;
  grid-auto-flow: column;
  grid-gap: 64px;
  align-items: center;
  height: 32px;
  overflow: hidden;
  transition: 0.25s;
}

.mob_burger_placeholder {
  justify-self: end;
  align-self: center;
  display: none;
  grid-area: burger;
  width: 30px;
  height: 30px;
}
.social_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 64px;
  align-items: center;
  --social-color: #ffffff;
}
.social_list.black {
  --social-color: #1D1D1D;
}
.social_list .item {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.header_wrapper .social_list .item {
  width: 18px;
  height: 18px;
}
.social_list .item svg {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  stroke: none;
  fill: var(--social-color);
  transition: 0.25s;
}
.social_list .item.vk:hover svg {
  fill: #447BBA;
}
.social_list .item.tg:hover svg {
  fill: #27A7E7;
}
.social_list .item.max:hover svg {
  fill: #A15CD8;
}
.social_list .item.whatsapp:hover svg {
  fill: #25D366;
}


.search_block {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.search_block input {
  width: 32px;
  height: 32px;
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 8px;
  font-family: 'Futura PT Book';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: #ffffff;
  padding: 0px;
  outline: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.search_block.active input {
  width: 300px;
  visibility: visible;
  opacity: 1;
  padding: 0px 28px 0px 12px;
}
.search_block .icon_wrapper {
  position: absolute;
  top: 5px;
  right: 7px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}
.search_block .icon_wrapper svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.25s;
  transition-timing-function: ease-in-out;
}
.search_block .icon_wrapper svg:nth-child(1) {
  width: 18px;
  height: auto;
  stroke: none;
  fill: #ffffff;
}
.search_block .icon_wrapper svg:nth-child(2) {
  width: 26px;
  height: auto;
  stroke: #B12424;
  stroke-width: 0.7;
  fill: none;
  transform: translate(-50%, -35px);
}
.search_block.active .icon_wrapper svg:nth-child(1) {
  transform: translate(-50%, 12px);
}
.search_block.active .icon_wrapper svg:nth-child(2) {
  transform: translate(-50%, -55%);
}

.header_mail svg {
  width: 18px;
  height: auto;
  stroke: none;
  fill: #ffffff;
}
.header_mail {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  text-align: center;
  color: #FFFFFF;
  text-decoration: none;
}
.header_mail svg {
  width: 20px;
  height: auto;
  stroke: none;
  fill: #ffffff;
  margin-right: 8px;
}
.header_phone {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  text-align: center;
  color: #FFFFFF;
  text-decoration: none;
}
.header_phone svg {
  width: 20px;
  height: auto;
  stroke: none;
  fill: #ffffff;
  margin-right: 8px;
}
.header_logo {
  grid-area: logo;
  align-self: end;
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 4px;
}
.header_logo svg {
  stroke: none;
  fill: #ffffff;
}
.header_logo .logo_icon_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header_logo .logo_icon_wrapper svg {
  width: auto;
  height: 36px;
}
.header_logo .logo_text_wrapper {
  width: 141px;
  margin-left: 8px;
  overflow: hidden;
  transition: 0.25s;
}
.header_logo .logo_text_wrapper svg {
  width: auto;
  height: 17px;
  margin-top: 6px;
}
.header_menu {
  grid-area: header_menu;
  align-self: center;
  width: 100%;
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: space-evenly;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
}
.header_menu::-webkit-scrollbar {
  display: none;
}
.header_menu .item {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  text-align: center;
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}
.header_menu .item.active::after {
  position: absolute;
  content: '';
  top: calc(100% + 6px);
  left: 0px;
  width: 100%;
  height: 1px;
  background-color: #88CA02;
}
.header_menu .item.enter svg {
  width: 22px;
  height: auto;
  stroke: none;
  fill: #ffffff;
  margin-right: 8px;
}
.header .default_btn {
  grid-area: place_btn;
  background-color: rgba(136,202,2, 0.6);
}
.header .default_btn .text.mobile {
  display: none;
}
.header .default_btn svg {
  width: 22px;
  height: auto;
  stroke: none;
  fill: #ffffff;
  margin-right: 8px;
}

.header_enter_mob {
  font-family: 'Futura PT';
  grid-area: enter_mob;
  align-self: center;
  justify-self: center;
  display: none;
  align-items: center;
  font-weight: 450;
  font-size: 16px;
  line-height: normal;
  text-align: center;
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
}
.header_enter_mob svg {
  width: 16px;
  height: auto;
  stroke: none;
  fill: #88CA02;
  margin-right: 8px;
}

/* ========================================================================== */

.mob_burger {
  right: 15px;
  top: 12px;
  position: fixed;
  display: none;
  width: 30px;
  height: 30px;
  overflow: hidden;
  cursor: pointer;
  z-index: 150;
}
.mob_burger .burger {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: auto;
  stroke: #ffffff;
  fill: none;
  transition: 0.25s;
}
.mob_burger .cross {
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translate(-50%, -100%);
  height: 100%;
  width: auto;
  stroke: #AC2E00;
  fill: none;
  transition: 0.25s;
}
.mob_burger.active .burger {
  top: 100%;
  transform: translate(-50%, 0%);
}
.mob_burger.active .cross {
  top: 50%;
  transform: translate(-50%, -50%);
}
.mobmenu_wrapper {
  position: fixed;
  top: 52px;
  left: 0px;
  width: 100%;
  height: calc(100% - 52px);
  z-index: 101;
  transition: 0.5s;
  transform: translate(-100%, 0%);
  overflow: hidden;
  box-sizing: border-box;
  will-change: display, transform;
  background-color: #ffffff;
}
.mobmenu_wrapper.active {
  transform: translate(-100%, 0%);
}
.mobmenu {
  height: 100%;
  display: grid;
  grid-template-columns: 100%;
  padding: 10px 0px 32px 0px;
  box-sizing: border-box;
  max-height: 100%;
  overflow: hidden;
}
/* .mob_header_top {
  display: grid;
  align-items: center;
  margin-bottom: 14px;
  grid-template-columns: auto auto auto 30px;
  justify-content: space-between;
  padding: 0px 15px;
  box-sizing: border-box;
} */
.mob_header_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 0px 15px;
  box-sizing: border-box;
}

/* .mobmenu .header_logo {
  grid-area: unset;
  margin-left: 0px;
}
.mobmenu .header_logo svg {
  width: auto;
  height: 32px;
  fill: #5B709C;
}
.mobmenu .header_logo svg path:nth-child(4){
  fill: #88CA02;
}
.mobmenu .header_logo svg path:nth-child(5){
  fill: #88CA02;
}
.mobmenu .header_logo svg path:nth-child(6){
  fill: #88CA02;
}
.mobmenu .header_logo svg path:nth-child(7){
  fill: #88CA02;
} */

.mob_menu_search {
  padding: 0px 15px;
  box-sizing: border-box;
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 12px;
}
.mob_menu_search_block {
  position: relative;
}
.mob_menu_search_block input {
  width: 100%;
  height: 32px;
  border: 0px;
  border: 1px solid #AAAAAA;
  background-color: #F8F8F8;
  border-radius: 8px;
  font-family: 'Futura PT Book';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #1D1D1D;
  padding-left: 32px;
  box-sizing: border-box;
  outline: none;
}
.mob_menu_search_block input::placeholder {
  font-family: 'Futura PT Book';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #AAAAAA;
}
.mob_menu_search_block svg {
  position: absolute;
  top: 50%;
  left: 5px;
  width: 18px;
  height: auto;
  fill: #88CA02;
  transform: translate(0px, -50%);
}
.mob_menu_search .btn {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  text-align: center;
  color: #ffffff;
  padding: 0px 15px;
  background-color: #88CA02;
  box-sizing: border-box;
  border-radius: 5px;
  cursor: pointer;
}

/* .mob_place_btn {
  display: flex;
  font-family: 'Futura PT';
  align-self: center;
  justify-self: center;
  align-items: center;
  font-weight: 450;
  font-size: 16px;
  line-height: normal;
  text-align: center;
  color: #1D1D1D;
  text-decoration: none;
  cursor: pointer;
}
.mob_place_btn svg {
  width: 16px;
  height: auto;
  fill: #1D1D1D;
  stroke: none;
  margin-right: 8px;
}
.mobmenu .header_enter_mob {
  grid-area: unset;
  color: #1D1D1D;
}
.mobmenu .header_enter_mob svg {
  fill: #1D1D1D;
} */
.mobile_menu {
  align-self: start;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  grid-gap: 10px;
  max-height: 100%;
  overflow: auto;
  padding: 0px 10px 16px 15px;
  margin-right: 5px;
  box-sizing: border-box;
}
.mobile_menu .item {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  position: relative;
  padding: 18px 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  text-decoration: none;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
  aspect-ratio: 1/1;
}
.mobile_menu .item.green {
  background-color: #88CA02;
  --text-color: #1D1D1D;
}
.mobile_menu .item.blue {
  background-color: #5B709C;
  --text-color: #FFFFFF;
}
.mobile_menu .item.two_cl {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}
.mobile_menu .item .arrow {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile_menu .item .arrow svg {
  width: 16px;
  height: auto;
  stroke: none;
  fill: var(--text-color);
  z-index: 2;
}
.mobile_menu .item .title {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  line-height: 150%;
  text-transform: uppercase;
  color: var(--text-color);
  z-index: 1;
}
.mobile_menu .item .img {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: auto;
  max-width: 80%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: right bottom;
  border-radius: 0px 0px 12px 0px;
  pointer-events: none;
}
.mobile_menu .item:nth-child(2) .img {
  max-width: 75%;
}
.mobmenu .header_mail {
  color: #1D1D1D;
}
.mobmenu .header_mail svg {
  fill: #1D1D1D;
}
.mobmenu .social_list {
  grid-gap: 42px;
}
.mobmenu .social_list .item svg {
  fill: #1D1D1D;
}

/* .header_menu_mobile .item  {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
} */

/* ========================================================================== */

.sidebar_search {
  position: relative;
}
.sidebar_search input {
  width: 100%;
  height: 40px;
  border: 1px solid #AAAAAA;
  background-color: transparent;
  border-radius: 8px;
  font-family: 'Futura PT Book';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #1D1D1D;
  padding-left: 5px;
  padding-right: 28px;
  box-sizing: border-box;
  outline: none;
}
.sidebar_search input::placeholder {
  font-family: 'Futura PT Book';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #AAAAAA;
}
.sidebar_search .search_btn {
  position: absolute;
  top: 50%;
  right: 0px;
  padding: 5px;
  box-sizing: border-box;
  transform: translate(0px, -50%);
  display: flex;
  cursor: pointer;
}
.sidebar_search svg {
  width: 18px;
  height: auto;
  fill: #88CA02;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
}
.sidebar_search .search_btn:hover svg {
  transform: scale(1.1);
}
.sidebar_search .btn {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  text-align: center;
  color: #ffffff;
  padding: 0px 15px;
  background-color: #88CA02;
  box-sizing: border-box;
  border-radius: 5px;
  cursor: pointer;
}

/* ========================================================================== */

.default_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0px 10px;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  text-align: center;
  color: #FFFFFF;
  border-radius: 8px;
  box-sizing: border-box;
  cursor: pointer;
  text-decoration: none;
}
.default_btn.green {
  background-color: #88CA02;
}
.default_btn.red {
  background-color: #B53232;
}
.default_btn.gray {
  background-color: #BFBFBF;
}

/* ========================================================================== */

.page_block_wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}
.page_block_wrapper.landing_gray {
  background-color: #F8F8F8;
  border-top: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
}
.page_block {
  width: 100%;
  max-width: var(--max-width);
  padding: 100px var(--side-padding);
  box-sizing: border-box;
  display: grid;
  align-items: start;
  /* grid-template-columns: 215px 1fr; */
  /* grid-template-columns: 215px calc(100% - 62px - 215px); */
  grid-template-columns: 250px calc(100% - 50px - 250px);
  grid-gap: 50px;
  grid-template-areas: 'sidebar content';
}
.page_block.full {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: unset;
  grid-gap: unset;
}
.main_slider_wrapper {
  width: 100%;
  height: 100vh;
  max-height: 1400px;
  position: relative;
}
.main_slider_container {
  width: 100%;
  height: 100%;
  background-color: #343745;
}
.main_slider_cards_container {
  position: absolute;
  top: 0px;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, 0px);

  width: 100%;
  height: 100%;

  max-width: var(--max-width);
  padding: calc(var(--header-height) + 62px) var(--side-padding) 62px var(--side-padding);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  pointer-events: none;
}

.main_slider_wrapper .owl-stage-outer {
  height: 100%;
}
.main_slider_wrapper .owl-stage-outer .owl-stage {
  height: 100%;
}
.main_slider_wrapper .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
}
.main_slider_wrapper .item {
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.main_slider_wrapper .item .main_slider_item_bg {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
  /* filter: blur(5px); */
}
.main_slider_wrapper .item .main_slider_item_bg::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(3px);
}

.main_slider_wrapper .item_content_grid {
  width: 100%;
  max-width: var(--max-width);
  padding: calc(var(--header-height) + 62px) var(--side-padding) 62px var(--side-padding);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 0.5fr;
}

.main_slider_wrapper .item_content {
  align-self: center;
  padding: 100px;
  box-sizing: border-box;
}
.main_slider_wrapper .item_content .title {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 500;
  font-size: 76px;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 32px;
}
.main_slider_wrapper .item_content .subtitle {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 160%;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 32px;
}
.main_slider_wrapper .item_content .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  color: #FFFFFF;
}
.main_slider_wrapper .item_content .default_btn {
  margin-top: 24px;
  justify-self: center;
  padding: 0px 24px;
}
.main_slider_wrapper .slider_dots_wrapper {
  position: relative;
}
.main_slider_wrapper .slider_dots_container {
  --dots-translate: 0px;
  position: absolute;
  left: 50%;
  top: 0px;
  transform: translate(-50%, var(--dots-translate));
  justify-self: center;
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 15px;
  transition: 0.25s;
}
.main_slider_wrapper .slider_dots_wrapper .owl-dot {
  pointer-events: auto;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background-color: #ffffff;
  cursor: pointer;
  transition: 0.25s;
  border: 0px;
}
.main_slider_wrapper .slider_dots_wrapper .owl-dot.active {
  width: 72px;
  cursor: default;
}
.main_slider_wrapper .item_cards_list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 26px;
}
.main_slider_wrapper .item_cards_list .item_cards_group {
  width: 100%;
  height: 100%;
  position: relative;
}
.main_slider_wrapper .item_cards_list .item_card {
  pointer-events: auto;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  padding: 18px 20px 24px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  text-decoration: none;
  transform: rotateY(-90deg);
  transition: 0.5s;
  overflow: hidden;
}
.main_slider_wrapper .item_cards_list .item_card.active {

}




.main_slider_wrapper .item_cards_list .item_card.green {
  background-color: rgba(136,202,2, 0.6);
}
.main_slider_wrapper .item_cards_list .item_card.blue {
  background-color: rgba(91,112,156, 0.6);
}
.main_slider_wrapper .item_cards_list .item_card .card_arrow {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main_slider_wrapper .item_cards_list .item_card .card_arrow svg {
  width: 60px;
  height: auto;
  stroke: none;
  fill: #ffffff;
  z-index: 2;
}
.main_slider_wrapper .item_cards_list .item_card .title {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  text-transform: uppercase;
  color: #FFFFFF;
  z-index: 3;
}
.main_slider_wrapper .item_cards_list .item_card .card_img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right bottom;
  z-index: 1;
}

/* ========================================================================== */

.page_block_wrapper.map {

}
.page_block_wrapper.map .page_block {

}
.page_sidebar_wrapper {
  grid-area: sidebar;
  width: 100%;
  height: 100%;
}
.page_block_sidebar {
  align-self: start;
  display: grid;
  grid-template-columns: 1fr;
  /* grid-row-gap: 50px; */
  overflow: hidden;
}
.page_block_sidebar.sticky {
  position: sticky;
  top: calc(var(--header-height-scrolled) + 25px);
  max-height: calc(100vh - var(--header-height-scrolled) - 50px);
}
.page_block_sidebar .menu_list {
  display: grid;
  grid-template-columns: 1fr;
  /* margin-bottom: 75px; */
  margin: 25px 0px;
}

.page_block_sidebar .menu_list .item {
  font-family: 'Futura PT';
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-weight: 450;
  font-size: 18px;
  line-height: normal;
  color: #1D1D1D;
  padding: 12px 0px;
  box-sizing: border-box;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
}
.page_block_sidebar .menu_list .item.active {
  font-weight: 600;
}
.page_block_sidebar .menu_list .item:not(.active):hover {
  transform: translate(0px, -2px);
}
.page_block_sidebar .menu_list .item::after {
  content: '';
  width: 8px;
  min-width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #88CA02;
  opacity: 0;
}
.page_block_sidebar .menu_list .item.active::after {
  opacity: 1;
}

.page_block_sidebar .sidebar_ads_list {
  /* max-width: 200px; */
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 24px;
  /* margin-bottom: 46px; */
  margin: 25px 0px;
}
.page_block_sidebar .sidebar_ads_list .item_load {
  border: 1px solid #e5e5e5;
  box-sizing: border-box;
  border-radius: 8px;
  background-color: #F8F8F8;
  aspect-ratio: 1/1;
  position: relative;
}
.page_block_sidebar .sidebar_ads_list .item_load::after {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(100deg, #f8f8f8 40%, #d3d3d3 50%, #f8f8f8 60%);
  z-index: 1;
  animation: sidebar_ads_loading 1.5s ease-in-out infinite;
  background-size: 400%;
}
@keyframes sidebar_ads_loading {
  0% {background-position: 100% 50%;}
  100% {background-position: 0 50%;}
}

.page_block_sidebar .sidebar_ads_list .ads-banner-item {
  border: 1px solid #e5e5e5;
  box-sizing: border-box;
  border-radius: 8px;
}
.page_block_sidebar .sidebar_ads_list .ads-banner-item a {
  display: flex;
  text-decoration: none;
}
.page_block_sidebar .sidebar_ads_list .ads-banner-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.page_block_sidebar .lastsite {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 20px;
  /* margin-bottom: 30px; */
  margin: 25px 0px;
}
.page_block_sidebar .lastsite .title {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 180%;
  text-transform: uppercase;
  color: #000000;
}
.page_block_sidebar .lastsite .lastsite_list {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 20px;
}
.page_block_sidebar .lastsite .lastsite_list .item {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 4px;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #1D1D1D;
  text-decoration: none;
}
.page_block_sidebar .sidebar_vk_group {
  margin: 25px 0px;
}
.page_block_content {
  grid-area: content;
  width: 100%;
  max-width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 100%;
}
.map_wrapper {
  width: 100%;
  aspect-ratio: 2/1;
  position: relative;
  /* border: 1px solid blue; */
}
.map_wrapper::-webkit-scrollbar {
  display: none;
}
.map_wrapper .map_resizer {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 115%;
  /* border: 1px solid red; */
}
.page_block_content .map_container {
  width: 100%;
  height: 100%;
  /* aspect-ratio: 2/1.1; */

}
.page_block_content.index_first {

}
.page_block_content.index_first h2.indf_title {
  font-size: 34px;
  margin-bottom: 32px;
}
.page_block_content.index_first h2.indf_title br {
  display: none;
}
.jqvmap-label strong {
  font-family: 'Futura PT';
  font-weight: 600;
  font-size: 12px;
  line-height: normal;
  color: #ffffff;
  text-transform: uppercase;
}
.jqvmap-label ul {
  font-family: 'Futura PT Book';
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: #ffffff;
}
.map_filters_head {
  justify-self: start;
  display: grid;
  grid-template-columns: auto auto;
  grid-column-gap: 14px;
  align-items: end;
  margin-bottom: 32px;
}
.map_filter_block {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 4px;
}
.map_filter_block .label {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: #797979;
}
.map_filter_block .region_select {
  width: 100%;
  width: 290px;
  position: relative;
}
.map_filter_block .region_select select {
  width: 100%;
  height: 32px;
  background-color: #F8F8F8;
  border-radius: 8px;
  border: 0px;
  font-family: 'Futura PT Book';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: #111111;
  padding: 0px 28px 0px 12px;
  outline: none;
  appearance: none;
  cursor: pointer;
}
.map_filter_block .region_select svg {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 6px;
  height: auto;
  stroke: none;
  fill: #88CA02;
  transform: translate(0px, -50%);
  transition: 0.25s;
  pointer-events: none;
}
.map_filter_block .region_select select:focus + svg {
  transform: translate(0px, -50%) rotate(90deg);
}

.map_filters_head .map_info_label {
  justify-self: start;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #000000;
}
.map_filters_head .map_info_label.change_price {
  /* height: 24px; */
  display: grid;
  grid-template-columns: auto auto auto;
  grid-column-gap: 4px;
  margin-bottom: 4px;
}
.map_filters_head .map_info_label.change_price svg {
  width: auto;
  height: 20px;
  stroke: none;
}
.map_filters_head .map_info_label.change_price .arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map_filters_head .map_info_label.change_price .arrow.upp svg {
  fill: #B12424;
}
.map_filters_head .map_info_label.change_price .arrow.down svg {
  fill: #88CA02;
  transform: scale(1, -1);
}






/* ========================================================================== */

.fuel_table {
  /* height: 100%; */
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 50px;
  will-change: contents;
  margin-bottom: 100px;
}
.fuel_table .spinner {
  animation: fuel_table_spinner_rotate 2s linear infinite;
  position: sticky;
  top: 100px;
  left: 50%;
  width: 20%;
  height: auto;
}
.fuel_table .spinner .path {
  stroke: #5C709A;
  stroke-linecap: round;
  stroke-width: 3;
  animation: fuel_tablespinner_dash 1.5s ease-in-out infinite;
}
@keyframes fuel_table_spinner_rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fuel_tablespinner_dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}


.fuel_table .region_item {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 16px;
}
.fuel_table .region_title {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 20px;
  line-height: normal;
  text-transform: uppercase;
  color: #5B709C;
  letter-spacing: 0.05em;
}
.fuel_table .region_title svg {
  width: auto;
  height: 22px;
  fill: #B12424;
  stroke: #ffffff;
  margin-left: 5px;
  margin-right: 10px;
  margin-bottom: -2px;
}
.company_fuel_table {

}
.company_fuel_table::-webkit-scrollbar {
  display: none;
}
.company_fuel_table .item_head {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 140px 150px;
  grid-auto-columns: 1fr;
  background-color: #88CA02;
  align-items: center;
  padding: 6px 20px;
  box-sizing: border-box;
  border-radius: 24px 24px 0px 0px;
}
.company_fuel_table:not(.edit) .item_head {
  padding: 6px 10px 6px 0px;
}
.company_fuel_table.edit .item_head {
  padding: 20px 10px;
  grid-auto-columns: 1fr;
  grid-template-columns: 200px;
}
.company_fuel_table .item_head .head_cell {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  color: #FFFFFF;
  box-sizing: border-box;
}
.company_fuel_table:not(.edit) .item_head .head_cell:nth-child(1){
  padding-left: 10px;
  padding-right: 10px;
}
.company_fuel_table .item_head .head_cell:nth-child(2){
  padding-left: 10px;
}
.company_fuel_table.edit .item_head .head_cell {
  padding: 0px 5px;
}
.company_fuel_table .item_head .head_cell.company_logo a {
  text-decoration: none;
}

/* .company_fuel_table .item_head .head_cell.company_logo img {
  width: auto;
  height: 45px;
} */

.company_fuel_table .item_body {
  /* width: max-content; */
  display: grid;
  grid-template-columns: 140px auto;
  background-color: #F8F8F8;
  /* padding: 0px 20px; */
  border-radius: 0px 0px 24px 24px;
}
.company_fuel_table.edit .item_body {
  grid-template-columns: unset;
}
.company_fuel_table .item_body .fuel_rows_list {
  display: flex;
  flex-direction: column;
}
.company_fuel_table .item_body .fuel_row {
  flex: 1;
  min-height: 0;

  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 150px;
  grid-auto-columns: 1fr;
  border-bottom: 1px solid #F0F0F0;
  box-sizing: border-box;
  padding-left: 10px;
  padding-right: 10px;
}
.company_fuel_table:not(.edit) .item_body .fuel_row {
  border-left: 1px solid #F0F0F0;
}
.company_fuel_table.edit .item_body .fuel_row {
  grid-auto-columns: 1fr;
  grid-template-columns: 200px;
}
.company_fuel_table .item_body .fuel_row:last-child {
  border-bottom: 0px;
}
.company_fuel_table .item_body .fuel_row_cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0px 13px 0px;
  box-sizing: border-box;
  border-right: 1px solid #F0F0F0;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: #1D1D1D;
  /* word-break: break-all; */
}
.company_fuel_table.edit .item_body .fuel_row_cell {
  padding: 16px 5px 13px 5px;
}
.company_fuel_table.edit .item_body .default_input {
  padding: 0px 8px;
}
.company_fuel_table .item_body .fuel_row_cell:first-child {
  justify-content: flex-start;
  text-align: left;
}
.company_fuel_table .item_body .fuel_row:first-child .fuel_row_cell {
  /* font-family: 'Futura PT'; */
  /* font-weight: 600; */
}
.company_fuel_table .item_body .fuel_row_cell:last-child {
  border-right: 0px;
}
.company_fuel_table .item_body .fuel_row_cell .arrow,
.mob_comp_fuel_table .fuel_row_cell .arrow {
   width: 12px;
   height: auto;
   stroke: none;
   margin-right: 5px;
}
.company_fuel_table .item_body .fuel_row_cell.mn,
.mob_comp_fuel_table .fuel_row_cell.mn {
  color: #527806;
}
.company_fuel_table .item_body .fuel_row_cell.mn .arrow,
.mob_comp_fuel_table .fuel_row_cell.mn .arrow {
  fill: #527806;
  transform: scale(1, -1);
}
.company_fuel_table .item_body .fuel_row_cell.ps,
.mob_comp_fuel_table .fuel_row_cell.ps {
  color: #B12424;
}
.company_fuel_table .item_body .fuel_row_cell.ps .arrow,
.mob_comp_fuel_table .fuel_row_cell.ps .arrow {
  fill: #B12424;
}
.company_fuel_table .item_body .info_row {
  flex: none;
  display: flex;
  justify-content: flex-end;
  box-sizing: border-box;
  padding: 1px 10px 1px 10px;
  border-left: 1px solid #F0F0F0;
  color: #5B709C;
  font-size: 14px;
}

.fuel_table .company_actions {
  justify-self: center;
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 15px;
  align-items: center;
}
.fuel_table .company_actions .action_btn {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
.fuel_table .company_actions .action_btn svg {
  width: 12px;
  height: auto;
  fill: #88CA02;
}
.fuel_table .company_actions .action_btn.update {
  cursor: default;
}
.fuel_table .company_actions .action_btn .info_mark {
  position: absolute;
  left: -10px;
  bottom: calc(100% + 10px);
  font-size: 14px;
  line-height: normal;
  color: #5B709C;
  background-color: #ffffff;
  border: 1px solid #88CA02;
  box-sizing: border-box;
  border-radius: 5px;
  width: max-content;
  padding: 5px;
  visibility: hidden;
  opacity: 0;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
}
.fuel_table .company_actions .action_btn .info_mark::after {
  position: absolute;
  content: '';
  left: 10px;
  top: 100%;
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  border: 1px solid #88CA02;
  box-sizing: border-box;
  border-radius: 2px;
  transform: translate(0px, -50%) rotate(45deg);
  clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
}
.fuel_table .company_actions .action_btn:hover .info_mark {
  opacity: 1;
  visibility: visible;
}
.fuel_table .company_block {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  grid-template-rows: 1fr auto;
  gap: 16px;
  padding: 16px 10px;
  box-sizing: border-box;
}
.fuel_table .company_block .company_img_wrapper {
  /* width: 100px; */
  display: flex;
  align-items: center;
}
.fuel_table .company_block .company_img_wrapper a {
  display: flex;
}
.fuel_table .company_block .company_img_wrapper img {
  width: 100%;
  min-height: 82px;
  height: auto;
  object-fit: contain;
}

.company_fuel_table .item_body .fuel_row_del_btn {
  display: flex;
  align-items: center;
  column-gap: 6px;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #B12424;
  cursor: pointer;
  transition: 0.25s;
}
.company_fuel_table .item_body .fuel_row_del_btn svg {
  width: 16px;
  height: auto;
  stroke: none;
  fill: #B12424;
}
.company_fuel_table .item_body .fuel_row_del_btn:hover {
  transform: scale(1.1);
}

/* ========================================================================== */

.mob_fuel_comp_block {
  display: none;
  align-items: center;
  background-color: #F8F8F8;
  border-radius: 12px 12px 0px 0px;
  padding: 5px 10px;
  box-sizing: border-box;

  grid-template-areas:
  'logo info'
  'logo actions';
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
}

.mob_fuel_comp_block .mobile_update_info_row {
  grid-area: info;
  display: flex;
  justify-content: flex-end;
  box-sizing: border-box;
  border-bottom: 1px solid #F0F0F0;
  color: #5B709C;
  font-size: 14px;
  line-height: 14px;
  text-align: right;
  padding: 5px 0px;
}
.fuel_table .mob_fuel_comp_block .company_actions {
  grid-area: actions;
  justify-self: end;
}

.mob_fuel_comp_block .comp_logo {
  grid-area: logo;
}
.mob_fuel_comp_block .comp_logo a {
  display: flex;
}
.mob_fuel_comp_block .comp_logo img {
  width: auto;
  height: 80px;
  max-width: 150px;
  object-fit: contain;
}
.mob_comp_fuel_table {
  display: none;
  grid-auto-flow: column;
  /* grid-template-columns: 84px calc(100% - 84px); */
  grid-template-columns: 1fr;
  max-width: 100%;
  overflow: auto;
  margin-bottom: 24px;
  background-color: #F8F8F8;
  position: relative;
  border-radius: 0px 0px 12px 12px;
  --labels-width: 84px;
}
.mob_comp_fuel_table::-webkit-scrollbar {
  display: none;
}
.mob_comp_fuel_table:last-child {
  margin-bottom: 0px;
}
.mob_comp_fuel_table .labels_column {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  position: absolute;
  top: 0px;
  left: 0px;
  width: var(--labels-width);
  height: 100%;
  background-color: #F8F8F8;
  pointer-events: none;
  z-index: 2;
}
.mob_comp_fuel_table .labels_column .fuel_row_cell:last-child {
  border-bottom: 0px;
}
.mob_comp_fuel_table .head_cell.fuel {
  justify-content: flex-start;
  padding: 0px 10px;
}
.mob_comp_fuel_table .fuel_row_cell.fuel_type {
  justify-content: flex-start;
  text-align: left;
  font-family: 'Futura PT';
  font-weight: 450;
}

.mob_comp_fuel_table .scrolled_container {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 100%;
  overflow: auto;
  padding-left: var(--labels-width);
  box-sizing: border-box;
}
.mob_comp_fuel_table .scrolled_container::-webkit-scrollbar {
  display: none;
}
.mob_comp_fuel_table .table_head {
  width: fit-content;
  min-width: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(120px, 1fr);
  /* padding: 10px; */
  box-sizing: border-box;
}

.mob_comp_fuel_table .head_cell {
  min-height: 42px;
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  background-color: #88CA02;
  padding: 5px;
  box-sizing: border-box;
}
.mob_comp_fuel_table .table_body {
  width: fit-content;
  min-width: 100%;
  border-radius: 0px 0px 12px 12px;
}
.mob_comp_fuel_table .table_body .fuel_row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(120px, 1fr);
  /* border-bottom: 1px solid #BFBFBF; */
  /* padding: 0px 10px; */
}
.mob_comp_fuel_table .fuel_row_cell {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #BFBFBF;
  border-bottom: 1px solid #BFBFBF;
  padding: 0px 10px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: normal;
}
.mob_comp_fuel_table .fuel_row_cell.bold {
  font-family: 'Futura PT';
  font-weight: 600;
}
.mob_comp_fuel_table .fuel_row .fuel_row_cell:last-child {
  border-right: 0px;
  /* padding: 10px 0px 10px 10px; */
}
.mob_comp_fuel_table .fuel_row:last-child .fuel_row_cell {
  border-bottom: 0px;
}

/* ========================================================================== */

.fuel_table .ads_row {
  display: none;
  grid-template-columns: 1fr 1fr;
  grid-gap: 11px;
}
.fuel_table .ads_row .ads-banner-item {
  border: 1px solid #e5e5e5;
  box-sizing: border-box;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: clip;
}
.fuel_table .ads_row .ads-banner-item::before {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  box-sizing: border-box;
  background-color: #F8F8F8;
  background-image: var(--bg-image);
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  z-index: -2;
}
.fuel_table .ads_row .ads-banner-item::after {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  box-sizing: border-box;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  z-index: -1;
}
.fuel_table .ads_row .ads-banner-item a {
  display: flex;
  text-decoration: none;
  width: 100%;
}
.fuel_table .ads_row .ads-banner-item img {
  width: 100%;
  height: auto;
}

/* ========================================================================== */

.page_block_wrapper.info_portal {
  border-top: 1px solid #D0D0D0;
  border-bottom: 1px solid #D0D0D0;
  position: relative;
  z-index: 1;
}
.page_block_wrapper.info_portal .index_usl_bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url(/assets/index_usl/index_usl_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page_block_wrapper.info_portal .index_usl_bg::after {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
}
.page_block_wrapper.info_portal h2 {
  justify-self: center;
  margin-bottom: 20px;
}
.page_block_wrapper.info_portal p {
  max-width: 1160px;
  justify-self: center;
  text-align: center;
  margin: 0px;
  margin-bottom: 36px;
  font-weight: 450;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0.02em;
  color: #454545;
}
.page_block_wrapper.info_portal h3 {
  justify-self: center;
  margin-bottom: 44px;
}
.index_usl_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
.index_usl_grid .usl_card {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  position: relative;
  padding: 14px 20px 18px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  text-decoration: none;
  aspect-ratio: 16/9;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
}
.index_usl_grid .usl_card:hover {
  transform: scale(1.05);
}
.index_usl_grid .usl_card:nth-child(2){
  grid-row: 1/3;
  grid-column: 2/3;
  aspect-ratio: unset;
}
.index_usl_grid .usl_card.green {
  background-color: #88CA02;
  --text-color: #1D1D1D;
}
.index_usl_grid .usl_card.blue {
  background-color: #5B709C;
  --text-color: #FFFFFF;
}
.index_usl_grid .usl_card .card_arrow {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index_usl_grid .usl_card .card_arrow svg {
  width: 32px;
  height: auto;
  stroke: none;
  fill: var(--text-color);
  z-index: 2;
}
.index_usl_grid .usl_card .title {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  text-transform: uppercase;
  color: var(--text-color);
  z-index: 1;
}
.index_usl_grid .usl_card .card_img {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: auto;
  max-width: 60%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: right bottom;
  border-radius: 0px 0px 12px 0px;
  pointer-events: none;
}
.index_usl_grid .usl_card:nth-child(2) .card_img {
  max-width: 75%;
}

/* ========================================================================== */

.page_content_grid {
  align-self: start;
  display: flex;
  flex-direction: column;
  row-gap: 100px;
  min-height: 0px;
}
.page_block_content.ads-index {
  display: grid;
  grid-template-columns: 50% 50%;
  justify-content: space-between;
  grid-template-areas:
  'title actions_list'
  'slider slider';
}
.ads-index .title_group {
  grid-area: title;
  justify-self: start;
  display: grid;
  grid-template-columns: auto auto;
  grid-column-gap: 35px;
  align-items: center;
}
.ads-index .ads_slider_nav {
  display: grid;
  grid-template-columns: auto auto;
  grid-column-gap: 20px;
  align-items: center;
}
.ads-index .ads_slider_nav .nav_arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
}
.ads-index .ads_slider_nav .nav_arrow:hover {
  transform: scale(1.05);
}
.ads-index .ads_slider_nav .nav_arrow svg {
  width: 9px;
  height: auto;
  stroke: none;
  fill: #A7A7A7;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
}
.ads-index .ads_slider_nav .nav_arrow:hover svg {
  fill: #000000;
}
.ads-index .ads_slider_nav .nav_arrow.prew {
  transform: scale(-1, 1);
}
.ads-index .actions_list {
  grid-area: actions_list;
  justify-self: end;
  display: grid;
  grid-template-columns: auto auto auto;
  grid-column-gap: 32px;
  align-items: center;
}
.ads-index .actions_list .link {
  display: flex;
  align-items: center;
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  color: #5B709C;
  text-decoration: none;
}
.ads-index .actions_list .link svg {
  width: 12px;
  height: auto;
  stroke: none;
  fill: #5B709C;
  margin-left: 12px;
  transition: 0.25s;
  transition-timing-function: ease-out;
}
.ads-index .actions_list .link:hover svg {
  transform: translate(5px, 1px) scale(1.2);
}
.ads-index .actions_list .link.sale svg {
  fill: #B12424;
}
.ads-index .actions_list .link.buy svg {
  fill: #88CA02;
}

.ads_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  margin-top: 20px;
}
.ads_item {
  max-width: 100%;
  overflow: hidden;
  background-color: #F8F8F8;
  border-radius: 16px;
  border: 1px solid #D9D9D9;
  padding: 30px;
  box-sizing: border-box;
  text-decoration: none;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr auto;
}
.ads_item:hover {
  border: 1px solid #939393;
}
.ads_item .title {
  font-family: 'Benzin';
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 18px;
}
.ads_item .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #1D1D1D;
  margin-bottom: 18px;
}
.ads_item .info_row {
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #1D1D1D;
  display: flex;
  align-self: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.ads_item .left_side {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.ads_item .company_name {

}
.ads_item .company_phone {

}
.ads_item .views {
  align-self: start;
  color: #8A8A8A;
  display: flex;
  align-items: center;
}
.ads_item .views svg {
  width: 24px;
  height: auto;
  stroke: none;
  fill: #8A8A8A;
  margin-right: 8px;
}
.ads_item .footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  grid-column-gap: 15px;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #1D1D1D;
}
.ads_item.my_ads .footer {
  grid-template-columns: 1fr auto;
}
.ads_item .link_arrow {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ads_item .link_arrow svg {
  width: 100%;
  height: auto;
  stroke: none;
  fill: #b9b9b9;
  transition: 0.25s;
  transition-timing-function: ease-out;
}
.ads_item:hover .link_arrow svg {
  transform: translate(4px, -2px) scale(1.2);
}
.ads_item .date {
  grid-column: 2 / 3;
}
.ads_item .ads_vid {
  padding-left: 23px;
  box-sizing: border-box;
  position: relative;
}
.ads_item .ads_vid::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translate(0px, -50%);
}
.ads_item .ads_vid.sale::after {
  background-color: #88CA02;
}
.ads_item .ads_vid.buy::after {
  background-color: #B12424;
}
.ads_item .adv_adccess {
  font-family: 'Futura PT';
  background-color: #ffb027;
  font-weight: 450;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #454545;
  padding: 10px;
  border-radius: 10px;
  box-sizing: border-box;
  margin-top: 12px;
  text-align: center;
}
.ads_item .adv_actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}
.del_btn {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #FF1616;
  cursor: pointer;
}
.del_btn svg {
  width: 18px;
  height: auto;
  stroke: none;
  fill: #FF1616;
  margin-left: 12px;
}
.promotion_btn {
  display: flex;
  align-items: center;
  font-family: 'Futura PT';
  font-weight: 450;
  font-size: 18px;
  line-height: normal;
  color: #527806;
  cursor: pointer;
  margin-bottom: 2px;
}
.promotion_btn svg {
  width: 12px;
  height: auto;
  stroke: none;
  fill: #527806;
  margin-right: 5px;
}

.ads_item .adv_promotion {
  font-family: 'Futura PT';
  background-color: #85ca2b;
  font-weight: 450;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #ffffff;
  padding: 10px;
  border-radius: 10px;
  box-sizing: border-box;
  margin-top: 12px;
  text-align: center;
}
.ads_item .adv_attention {
  font-family: 'Futura PT';
  background-color: #ffb027;
  font-weight: 450;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #454545;
  padding: 10px;
  border-radius: 10px;
  box-sizing: border-box;
  margin-top: 12px;
  text-align: center;
}
.ads_item .adv_attention .attention_title {
  margin-bottom: 12px;
  text-transform: uppercase;
}
.ads_item .adv_attention .attention_send {
  margin-top: 12px;
  font-size: 14px;
  color: #527806;
}
.ads_item .adv_attention .attention_send span {
  white-space: nowrap;
}

/* ========================================================================== */

.placement_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.placement_head .link {
  display: flex;
  align-items: center;
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  color: #5B709C;
  text-decoration: none;
  margin-bottom: 4px;
}
.placement_head .link svg {
  width: 12px;
  height: auto;
  stroke: none;
  fill: #5B709C;
  margin-left: 12px;
  transition: 0.25s;
  transition-timing-function: ease-out;
}
.placement_head .link:hover svg {
  transform: translate(5px, 1px) scale(1.2);
}
.form_block {
  border-radius: 24px;
  background-color: #343745;
  display: grid;
  grid-template-columns: 1fr 0.4fr;
  position: relative;
  z-index: 1;
  overflow: hidden;
  clear: both;
  padding: 60px;
  box-sizing: border-box;
}
.form_block.placement {
  grid-template-columns: 1fr 0.4fr;
}
.form_block.mailing {
  grid-template-columns: 1fr 0.8fr;
}
.form_block.news_mailing {
  grid-template-columns: 1fr 0.3fr;
  margin-bottom: 50px;
}
.form_block .left_side {
  /* padding: 60px 0px 60px 60px; */
  box-sizing: border-box;
}
.form_block .default_btn {
  padding: 0px 24px;
}


.form_block.loading::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
  z-index: 1;
}
.form_spinner_wrapper {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.form_spinner_wrapper .spinner {
  animation: fuel_table_spinner_rotate 2s linear infinite;
  width: 15%;
  height: auto;
}
.form_spinner_wrapper .spinner .path {
  stroke: #85ca2b;
  stroke-linecap: round;
  stroke-width: 2;
  animation: fuel_tablespinner_dash 1.5s ease-in-out infinite;
}














.form_block .background_container {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  pointer-events: none;
  z-index: -1;
}
.form_block.placement .background_container {
  grid-template-columns: 1fr 0.4fr;
}
.form_block.mailing .background_container {
  grid-template-columns: 1fr 0.8fr;
}
.form_block.news_mailing .background_container {
  grid-template-columns: 1fr 0.9fr;
}
.form_block .background_block {
  grid-column: 2/3;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}
.form_block .background_block::after {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 100%;
  aspect-ratio: 1/1;
  opacity: 0.8;
  filter: blur(100px);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.form_block.placement .background_block::after {
  background: #DE4721;
  max-width: 400px;
}
.form_block.mailing .background_block::after {
  background: #88CA02;
  max-width: 400px;
}
.form_block.news_mailing .background_block::after {
  background: #DE4721;
  max-width: 400px;
}
.form_block .background_block .bg_img {
  width: 100%;
  height: auto;
}
.form_block.mailing .background_block {
  justify-content: center;
  align-items: center;
}
.form_block.mailing .background_block .bg_img {
  max-width: 400px;
}

.form_block .form_title {
  grid-column: 1/3;
  grid-row: 1;
  font-family: 'Benzin';
  font-weight: 500;
  font-size: 20px;
  line-height: 170%;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 38px;
}

.form_block .title {
  font-size: 16px;
  line-height: 170%;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 38px;
}
.form_block .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: #FFFFFF;
}
.form_block .form {
  max-width: 636px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 18px;
  grid-row-gap: 20px;
  margin-bottom: 36px;
}
.form_block .form_input_block.three_cl {
  grid-column: 1 / 4;
}
.form_input_block {
  position: relative;
}
.form_input_block .form_input {
  width: 100%;
  height: 32px;
  background-color: rgba(0, 0, 0, 0);
  border: 0px;
  border-bottom: 1px solid #656565;
  border-radius: 0px;
  padding: 0px;
  padding-bottom: 6px;
  box-sizing: border-box;
  font-family: 'Futura PT Book';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  color: #ffffff;
}
.form_input_block.black .form_input {
  color: #1D1D1D;
}
.form_input_block .form_input:focus {
  outline: none;
}
.form_input_block textarea.form_input {
  height: 125px;
  resize: none;
}
.form_input_block .form_input.error {
  border-bottom: 1px solid #ff0000;
}
.form_input_block > .label {
  position: absolute;
  left: 0px;
  top: 0px;
  font-family: 'Futura PT Book';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  color: #ffffff;
  pointer-events: none;
  transition: 0.25s;
  white-space: nowrap;
}
.form_input_block.black > .label {
  color: #1D1D1D;
}
.form_input_block .form_input:focus ~ .label {
  transform: translate(0px, -100%);
}
.form_input_block .form_input:not(:placeholder-shown) ~ .label {
  transform: translate(0px, -100%);
}
.form_input_block > .label .star {
  color: #FF1616;
}
.form_block .placement_footer {
  max-width: 636px;
  display: grid;
  grid-template-columns: 1fr auto;
}
.form_block .news_mailing_footer {
  max-width: 636px;
  display: grid;
  grid-template-columns: 1fr auto;
}
.politics_block {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 14px;
  align-items: center;
}
.custom_checkbox {
  justify-self: start;
  display: flex;
  align-items: center;
  column-gap: 8px;
  cursor: pointer;
}
.custom_checkbox .label {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  color: #FFFFFF;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
}
.custom_checkbox input {
  display: none;
}
.custom_checkbox .checkbox {
  width: 20px;
  height: 20px;
  border: 1px solid #9E9E9E;
  border-radius: 4px;
  position: relative;
  box-sizing: border-box;
}
.custom_checkbox .checkbox svg {
  position: absolute;
  left: 2px;
  bottom: 2px;
  width: 20px;
  height: auto;
  stroke: #88CA02;
  fill: none;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
}
.custom_checkbox input:checked + .checkbox svg {
  opacity: 1;
}
.politics_block.error .label {
  color: #FF1616;
}
.politics_block.error .custom_checkbox .checkbox {
  border: 1px solid #FF1616;
}
.politics_block .label {
  font-weight: 400;
  font-size: 12px;
  line-height: normal;
  color: #ffffff;
  margin: 0px;
}
.politics_block .label a {
  color: #ffffff;
  text-decoration: underline;
}
.politics_block .label a:hover {
  text-decoration: none;
}

.politics_block.black .label {
  color: #000000;
}
.politics_block.black .label a {
  color: #000000;
}
.politics_block.black.error .label {
  color: #FF1616;
}




/* ========================================================================== */

.page_block_content.vacancy-index {
  display: grid;
  grid-template-columns: 50% 50%;
  justify-content: space-between;
  grid-template-areas:
      'title actions_list'
      'slider slider';
}
.vacancy-index .title_group {
  grid-area: title;
  justify-self: start;
  display: grid;
  grid-template-columns: auto auto;
  grid-column-gap: 35px;
  align-items: center;
}
.vacancy-index .vacancy_slider_nav {
  display: grid;
  grid-template-columns: auto auto;
  grid-column-gap: 20px;
  align-items: center;
}
.vacancy-index .vacancy_slider_nav .nav_arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
}
.vacancy-index .vacancy_slider_nav .nav_arrow:hover {
  transform: scale(1.05);
}
.vacancy-index .vacancy_slider_nav .nav_arrow svg {
  width: 9px;
  height: auto;
  stroke: none;
  fill: #A7A7A7;
}
.vacancy-index .vacancy_slider_nav .nav_arrow:hover svg {
  fill: #000000;
}
.vacancy-index .vacancy_slider_nav .nav_arrow.prew {
  transform: scale(-1, 1);
}

.vacancy-index .actions_list {
  grid-area: actions_list;
  justify-self: end;
  display: grid;
  grid-template-columns: auto auto;
  grid-column-gap: 35px;
  align-items: center;
}
.vacancy-index .actions_list .link {
  display: flex;
  align-items: center;
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  color: #5B709C;
  text-decoration: none;
}
.vacancy-index .actions_list .link svg {
  width: 12px;
  height: auto;
  stroke: none;
  fill: #5B709C;
  margin-left: 12px;
  transition: 0.25s;
  transition-timing-function: ease-out;
}
.vacancy-index .actions_list .link:hover svg {
  transform: translate(5px, 1px) scale(1.2);
}

.vacancy_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
.vacancy_item {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #F8F8F8;
  border-radius: 16px;
  border: 1px solid #D9D9D9;
  padding: 30px;
  box-sizing: border-box;
  text-decoration: none;
}
.vacancy_item:hover {
  border: 1px solid #939393;
}
.vacancy_item .title {
  font-family: 'Benzin';
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 20px;
}
.vacancy_item .info_row {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #1D1D1D;
  display: flex;
  align-self: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.vacancy_item .left_side {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.vacancy_item .company_name {

}
.vacancy_item .company_phone {

}
.vacancy_item .views {
  align-self: start;
  color: #8A8A8A;
  display: flex;
  align-items: center;
}
.vacancy_item .views svg {
  width: 24px;
  height: auto;
  stroke: none;
  fill: #8A8A8A;
  margin-right: 8px;
}
.vacancy_item .salary {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: #1D1D1D;
  margin-bottom: 50px;
}
.vacancy_item .footer {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-column-gap: 15px;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #1D1D1D;
  margin-top: auto;
}
.vacancy_item .link_arrow {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vacancy_item .link_arrow svg {
  width: 100%;
  height: auto;
  stroke: none;
  fill: #b9b9b9;
  transition: 0.25s;
  transition-timing-function: ease-out;
}
.vacancy_item:hover .link_arrow svg {
  transform: translate(4px, -2px) scale(1.2);
}
.vacancy_item .date {
  grid-column: 2 / 3;
}

.vacancy_item .vacancy_actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}
.vacancy_item .vacancy_promotion {
  font-family: 'Futura PT';
  background-color: #85ca2b;
  font-weight: 450;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #ffffff;
  padding: 10px;
  border-radius: 10px;
  box-sizing: border-box;
  margin-top: 12px;
  text-align: center;
}
.vacancy_item .vacancy_attention {
  font-family: 'Futura PT';
  background-color: #ffb027;
  font-weight: 450;
  font-size: 16px;
  line-height: normal;
  color: #454545;
  padding: 10px;
  border-radius: 10px;
  box-sizing: border-box;
  margin-top: 12px;
  text-align: center;
}
.vacancy_item .vacancy_attention .attention_title {
  margin-bottom: 12px;
  text-transform: uppercase;
}
.vacancy_item .vacancy_attention .attention_send {
  margin-top: 12px;
  font-size: 14px;
  color: #527806;
}
.vacancy_item .vacancy_attention .attention_send span {
  white-space: nowrap;
}


/* ========================================================================== */

.mailing_head {
  margin-bottom: 20px;
}

/* ========================================================================== */

.float_cleaner {
  clear: both;
}
.news_head {
  margin-bottom: 20px;
}
.news_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
.news_grid.secondpage {
  margin-top: 30px;
}
.news_grid.index .news_item.with_img {
  grid-row: 1/3;
  grid-column: 3/4;
}
.news_item {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  box-sizing: border-box;
  background-color: #F9F9F9;
  border-radius: 16px;
  text-decoration: none;
  border: 1px solid #D9D9D9;
}
.news_item:hover {
  border: 1px solid #939393;
}
.news_item.noimg {
  grid-template-rows: 1fr auto;
  padding: 12px 16px;
}
.news_item .news_img {
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px 16px 0px 0px;
  aspect-ratio: 2/1;
}
.news_item .title {
  font-family: 'Futura PT';
  font-weight: 450;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 150%;
  color: #1D1D1D;
  padding: 25px 15px 25px 10px;
  box-sizing: border-box;
  letter-spacing: -0.025em;
}
.news_item.noimg .title {
  margin-bottom: 62px;
  padding: 0px;
}
.news_item .footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 0px 15px 0px 10px;
  box-sizing: border-box;
}
.news_item.noimg .footer {
  padding: 0px;
  margin: 0px;
}
.news_item .date {
  /* font-family: 'Futura PT'; */
  /* font-weight: 450; */
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #5B709C;
}
.news_item .link {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #5B709C;
}
.news_item .link svg {
  width: 12px;
  height: auto;
  stroke: none;
  fill: #b9b9b9;
  transition: 0.25s;
  transition-timing-function: ease-out;
}
.news_item:hover .link {
  text-decoration: underline;
}
.news_item:hover .link svg {
  transform: translate(3px, 0px) scale(1.1);
}

/* ========================================================================== */

.vklink_block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 12px;
  background-color: #447BBA;
}
.vklink_block .left_side {
  justify-self: start;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 16px;
  padding: 25px;
  box-sizing: border-box;
}
.vklink_block .title {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 32px;
  line-height: normal;
  text-transform: uppercase;
  color: #FFFFFF;
}
.vklink_block .title svg {
  width: auto;
  height: 35px;
  margin-right: 15px;
}
.vklink_block .text {
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  color: #FFFFFF;
}
.vklink_block .vk_icon {
  width: 100%;
  height: 100%;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.vklink_block .vk_icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 130%;
  stroke: #ffffff;
  fill: none;
}
.default_btn.vk {
  max-width: 250px;
  background-color: #ffffff;
  color: #447BBA;
  font-weight: 500;
}
.default_btn.vk svg {
  width: 24px;
  fill: #447BBA;
  stroke: none;
  margin-right: 8px;
}

/* ========================================================================== */

.footer_wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.footer_wrapper .footer_bg {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
  background-image: url(/assets/footer_bg.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.footer_wrapper .footer_bg::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}
.footer_wrapper .footer {
  width: 100%;
  max-width: var(--max-width);
  padding: 50px var(--side-padding) 100px var(--side-padding);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 100%;
}
.footer .footer_column {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: start;
}
.footer_wrapper .footer .logo {
  margin-bottom: 12px;
}
.footer_wrapper .footer .logo svg {
  width: 210px;
  height: auto;
  fill: #ffffff;
  stroke: none;
}
.footer_wrapper .footer .coopyright {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: normal;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 40px;
}
.footer_wrapper .footer .footer_short .coopyright {
  margin-bottom: 0px;
}
.footer_wrapper .footer .error_reporting {
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #FFFFFF;
  margin-bottom: 40px;
}
.footer_wrapper .footer .site_developer {
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #FFFFFF;
}
.footer_wrapper .footer .site_developer a {
  text-decoration: none;
  color: #FFFFFF;
}
.footer_wrapper .footer .site_developer a:hover {
  text-decoration: underline;
}
.footer_wrapper .footer_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
}
.footer_wrapper .footer_short {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
}
.footer_wrapper .footer .footer_title {
  display: flex;
  align-items: center;
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: normal;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 32px;
}
.footer_wrapper .footer .footer_title svg {
  display: none;
  width: 9px;
  height: auto;
  fill: #ffffff;
  stroke: none;
  transition: 0.5s;
  transition-timing-function: ease-in-out;
}
.footer_wrapper .footer .footer_column.open-menu .footer_title svg {
  transform: rotate(-90deg);
}
.footer_wrapper .footer .footer_menu {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 12px;
  justify-items: start;
}
.footer_wrapper .footer .footer_menu .item {
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  text-align: center;
  color: #FFFFFF;
  text-decoration: none;
  transition: 0.2s;
  transition-timing-function: ease-in-out;
}
.footer_wrapper .footer .footer_menu .item:hover {
  transform: translate(5px, 0px);
}
.footer_wrapper .footer .footer_contacts_list {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 12px;
}
.footer_wrapper .footer .footer_contacts_list > .item {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  text-align: center;
  letter-spacing: -0.05em;
  color: #FFFFFF;
  text-decoration: none;
}
.footer_wrapper .footer .footer_contacts_list > .item svg {
  width: 20px;
  height: auto;
  fill: #ffffff;
  margin-right: 8px;
}
.footer_wrapper .footer .social_list {
  justify-self: start;
  grid-gap: 20px;
  margin-top: 28px;
}

/* ========================================================================== */

.mail_subscr_block {

}
.mail_subscr_block .label {
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
  color: #FFFFFF;
  margin-bottom: 4px;
}

/* ========================================================================== */

.vertical_ads_slider {
  width: 100%;
  overflow: hidden;
}
.vertical_ads_slider .slider .reclt_block {
  width: 100%;
  display: none;
  border-radius: 12px;
  box-sizing: border-box;
  border: 1px solid #e5e5e5;
  overflow: hidden;
}
.vertical_ads_slider .slider .reclt_block.pc_visible {
  display: flex;
}

/* ========================================================================== */
.slider.reclt_slider.pc {
  display: block;
}
.slider.reclt_slider.mobile {
  display: none;
}
/* ========================================================================== */

.slider.owl-carousel {
  width: 100%;
}
.slider.owl-carousel .owl-stage {
  display: flex;
}
.slider.owl-carousel .owl-item {
  display: flex;
  height: 100%;
}
.slider.owl-carousel .reclt_block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider.owl-carousel .owl-dots {
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 6px;
  width: max-content;
  margin: 16px auto 0px auto;
}
.slider.owl-carousel .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  background-color: #D9D9D9;
  border-radius: 12px;
  transition: 0.25s;
  border: 0px;
}
.slider.owl-carousel .owl-dots .owl-dot.active {
  width: 24px;
  background-color: #5B709C;
}

.main_slider_wrapper.owl-carousel .owl-stage-outer {
  height: 100%;
}
.main_slider_wrapper.owl-carousel .owl-stage {
  display: flex;
  height: 100%;
}

/* ========================================================================== */

.secondpage_header {
  width: 100%;
  height: var(--secondpage-header-height);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: var(--header-height);
  box-sizing: border-box;
}
.secondpage_header_bg {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
}
.secondpage_header_bg::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  z-index: -1;
}
.secondpage_header_cont {
  width: 100%;
  max-width: var(--max-width);
  padding: 0px var(--side-padding);
  box-sizing: border-box;
  align-self: center;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 18px;
}
.secondpage_header_cont .title {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 600;
  font-size: 76px;
  line-height: normal;
  text-transform: uppercase;
  color: #FFFFFF;
}
.secondpage_header_cont .short_description {
  max-width: 970px;
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: normal;
  text-transform: uppercase;
  color: #FFFFFF;
}

/* ========================================================================== */

.secondpage_cont_head {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 12px;
  margin-bottom: 15px;
  grid-template-areas:
  'bread right_side'
  'title right_side';
}
.secondpage_cont_head.no_bread {
  grid-template-areas:
  'title right_side';
}
.secondpage_cont_head .secondpage_bread_list {
  grid-area: bread;
  justify-self: start;
  display: flex;
  flex-wrap: wrap;
  column-gap: 4px;
  row-gap: 4px;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #1D1D1D;
}
.secondpage_cont_head .secondpage_bread_list a {
  color: #1D1D1D;
  text-decoration: none;
}
.secondpage_cont_head .secondpage_bread_list a:hover {
  text-decoration: underline;
}
.secondpage_cont_head .secondpage_bread_list > div {
  color: #5B709C;
  cursor: default;
}
.secondpage_cont_head .secondpage_bread_list > span {

}
.secondpage_cont_head h1 {
  grid-area: title;
}
.secondpage_cont_head .right_side {
  grid-area: right_side;
}
.secondpage_cont_head.spectech_head .right_side {
  align-self: end;
}
.secondpage_cont_head.adv {
  align-items: end;
  grid-template-columns: 1fr auto;
}
.secondpage_cont_head.adv .right_side {
  display: grid;
  grid-template-columns: 257px auto;
  grid-column-gap: 25px;
  align-items: end;
}
.secondpage_cont_head.adv .right_side .blue_link {
  align-self: end;
  margin-bottom: 10px;
}
.secondpage_content {
  margin-bottom: 100px;
}
.secondpage_cont_head .default_btn {
  height: 40px;
}

/* ========================================================================== */

.page_cards_grid {
  display: grid;
  grid-template-columns: 100%;
  grid-gap: 20px;
  margin-top: 50px;
}
.page_cards_grid .cards_grid_row {
  display: grid;
  grid-gap: 20px;
}
.page_cards_grid .cards_grid_row.row_1 {
  grid-template-columns: 100%;
}
.page_cards_grid .cards_grid_row.row_2 {
  grid-template-columns: repeat(2, calc(50% - 10px));
}
.page_cards_grid .cards_grid_row.row_3 {
  grid-template-columns: repeat(3, calc((100% - 40px) / 3));
}
.page_cards_grid .card {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto 1fr;
  align-items: start;
  grid-row-gap: 8px;
  text-decoration: none;
  box-sizing: border-box;
  transition: 0.25s;
}
.page_cards_grid .card.inset {
  position: relative;
  z-index: 1;
  padding: 21px 26px 26px 32px;
  aspect-ratio: 2/1;
  border-radius: 20px;
  grid-template-rows: 1fr auto;
}
.page_cards_grid .cards_grid_row.row_1 .card.inset {
  aspect-ratio: 4/1;
}
.page_cards_grid .card:hover {
  transform: scale(1.025);
}
.page_cards_grid .card .item_image {
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  border-radius: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page_cards_grid .card.inset .item_image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  aspect-ratio: unset;
  border-radius: 20px;
}
.page_cards_grid .card.inset .item_image::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 25%); */
  background-color: rgba(0, 0, 0, 50%);
  border-radius: 20px;
}
.page_cards_grid .card .name {
  font-family: 'Futura PT';
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-weight: 450;
  font-size: 18px;
  line-height: normal;
  color: #1D1D1D;
  padding: 0px 8px;
  box-sizing: border-box;
}
.page_cards_grid .card.inset .name {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 0px;
}
.page_cards_grid .card .name svg {
  width: 28px;
  height: auto;
  stroke: none;
  fill: #1D1D1D;
  transition: 0.25s;
  transition-timing-function: ease-out;
}
.page_cards_grid .card.inset .arrow {
  justify-self: end;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_cards_grid .card.inset .arrow svg {
  width: 100%;
  height: auto;
  stroke: none;
  fill: #ffffff;
}

/* ========================================================================== */

.page_cards_grid.uslugi_other_page {
  margin-top: 50px;
  margin-bottom: 0px;
}
.page_cards_grid.uslugi {
  margin-bottom: 50px;
}
.page_cards_grid.uslugi_top {
  margin-bottom: 50px;
}
.page_cards_grid.uslugi {
  margin-top: 10px;
}
.page_cards_grid .usl_card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto 1fr;
  align-items: start;
  grid-row-gap: 18px;
  text-decoration: none;
  box-sizing: border-box;
  transition: 0.25s;
  background-color: #F8F8F8;
  border: 1px solid #D9D9D9;
  border-radius: 12px;
  grid-template-areas:
  'name name'
  'text text'
  'arrow img';
}
.page_cards_grid .usl_card:hover {
  border: 1px solid #939393;
}
.page_cards_grid .cards_grid_row.row_1 .usl_card {
  grid-template-areas:
  'name img'
  'text img'
  'arrow img';
}
.page_cards_grid .usl_card .name {
  grid-area: name;
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  text-transform: uppercase;
  color: #1D1D1D;
  margin-top: 24px;
  margin-left: 32px;
  margin-right: 24px;
}
.page_cards_grid .usl_card .text {
  margin-left: 32px;
  margin-right: 24px;
  box-sizing: border-box;
  grid-area: text;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #8A8A8A;
}
.page_cards_grid .usl_card .item_image {
  align-self: end;
  justify-self: end;
  grid-area: img;
  height: 254px;
  width: auto;
  aspect-ratio: 1/1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 24px;
}
.page_cards_grid .cards_grid_row.row_1 .usl_card .item_image {
  justify-self: center;
  aspect-ratio: 2/1;
  margin-bottom: 0px;
}
.page_cards_grid .usl_card .arrow {
  grid-area: arrow;
  align-self: end;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 32px;
  margin-bottom: 24px;
}
.page_cards_grid .usl_card .arrow svg {
  width: 52px;
  height: auto;
  stroke: none;
  fill: #1D1D1D;
}

/* ========================================================================== */

.company_cards_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
.company_cards_grid.margin_t {
  margin-top: 24px;
}
.company_cards_grid .company_card {
  /* background-color: #F8F8F8; */
  background-color: #ffffff;
  border: 1px solid #D9D9D9;
  border-radius: 16px;
  box-sizing: border-box;
  padding: 30px;
  text-decoration: none;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto 1fr;
  grid-column-gap: 30px;
  grid-template-areas:
  'title title'
  'text img'
  'footer footer';
  transition: 0.25s;
  transition-timing-function: ease-in-out;
}
.company_cards_grid .company_card:hover {
  border: 1px solid #939393;
}
.company_cards_grid .company_card .title {
  grid-area: title;
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  text-transform: uppercase;
  color: #5B709C;
  margin-bottom: 18px;
}
.company_cards_grid .company_card .text {
  grid-area: text;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #1D1D1D;
  margin-bottom: 25px;
}
.company_cards_grid .company_card .text > * {
  margin: 0px;
}
.company_cards_grid .company_card .suplier_image {
  grid-area: img;
  width: 170px;
  /*height: 170px;*/
  max-height:80px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 25px;
}
.company_cards_grid .company_card .suplier_image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  /* border: 1px solid #e5e5e5; */
  box-sizing: border-box;
}
.company_cards_grid .company_card .footer {
  align-self: end;
  grid-area: footer;
  display: grid;
  align-items: center;
  grid-auto-flow: column;
  justify-content: space-between;
  grid-column-gap: 30px;
}
.company_cards_grid .company_card .footer .details_btn {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #5B709C;
}
.company_cards_grid .company_card .footer .details_btn svg {
  width: 20px;
  min-width: 20px;
  height: auto;
  stroke: none;
  fill: #6C6C6C;
  transition: 0.25s;
  transition-timing-function: ease-out;
}
.company_cards_grid .company_card:hover .footer .details_btn svg {
  transform: translate(4px, -2px) scale(1.2);
}
.company_cards_grid .company_card .footer .city {
  max-width: 425px;
  display: grid;
  grid-template-columns: 16px 1fr;
  grid-column-gap: 12px;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #1D1D1D;
}
.company_cards_grid .company_card .footer .city svg {
  width: 16px;
  height: auto;
  fill: #88CA02;
  stroke: none;
}

/* ========================================================================== */

.benz {
  display: block;
  /* height: 21px; */
}

/* ========================================================================== */

.spec_technic_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  margin-top: 24px;
}
.spec_technic_grid .item {
  background-color: #F8F8F8;
  border: 1px solid #D9D9D9;
  border-radius: 12px;
  padding: 14px 20px 16px 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  aspect-ratio: 2/1;
  text-decoration: none;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
  overflow: hidden;
}
.spec_technic_grid .item:hover {
  transform: scale(1.025);
}
.spec_technic_grid .item .item_img {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100% - 30px);
  object-fit: contain;
  z-index: -1;
  transform: translate(20px, 0px);
  transition: 0.25s;
  transition-timing-function: ease-in-out;
}
.spec_technic_grid .item:hover .item_img {
  transform: translate(0px, 0px);
}
.spec_technic_grid .item .title {
  font-family: 'Benzin';
  font-weight: 500;
  font-size: 18px;
  line-height: normal;
  text-transform: uppercase;
  color: #1D1D1D;
}
.spec_technic_grid .item svg {
  width: 32px;
  height: auto;
  stroke: none;
  fill: #1D1D1D;
}

.spec_technic_cont {
  margin-top: 26px;
}
.spec_technic_cont img {
  max-width: 100%;
  height: auto;
}

.def_table_wrapper::-webkit-scrollbar {
  display: none;
}
.default_table {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 10px;
}
.default_table .table_head,
.default_table .mobile_table_head {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  align-items: center;
  grid-template-columns: 100px;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  text-align: center;
  color: #797979;
  padding: 10px 0px;
  box-sizing: border-box;
  position: sticky;
  top: var(--header-height-scrolled);
  background-color: #ffffff;
  z-index: 10;
}
.default_table .mobile_table_head {
  font-size: 12px;
}
.default_table .table_head .cell,
.default_table .mobile_table_head .cell {
  padding: 0px 16px;
  box-sizing: border-box;
}
.default_table .table_body {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 10px;
}
.default_table .table_body > .row {
  min-height: 55px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  align-items: center;
  grid-template-columns: 100px;
  background-color: #F8F8F8;
  border: 1px solid #D9D9D9;
  border-radius: 12px;
}
.default_table .table_body .row .cell {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  /* align-items: center; */
  padding: 8px 16px;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: #555555;
  word-break: break-all;
}
.default_table .table_body .row .cell:first-child {
  font-family: 'Futura PT Demi';
}
.default_table .table_body .row .cell:last-child {
  text-align: left;
  word-break: auto-phrase;
}
.default_table .table_body .row .cell.demi {
  font-family: 'Futura PT Demi';
}
.default_table .table_body .row .cell.jc_start {
  align-items: flex-start;
}
.default_table .table_body .row .cell strong {
  font-weight: 600;
}
.default_table .table_body .row .cell .date {
  font-size: 14px;
}
.default_table .table_body .row .cell .phone_list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 4px;
}
.default_table .table_body .row .cell a {
  color: #555555;
  text-decoration: none;
}
.default_table .table_body .row .cell a:hover {
  text-decoration: underline;
}
.default_table .table_body .row .cell .phone {
  white-space: nowrap;
  /* font-weight: 600; */
  color: #88CA02;
  text-decoration: underline;
}
.default_table .table_body .row .cell .row {
  width: 100%;
  display: flex;
  align-items: flex-start;
  text-align: left;
}
.default_table .table_body .row .cell .row.jc_spaceb {
  justify-content: space-between;
  gap: 8px;
}
.default_table .table_body .row .cell .default_btn {
  width: 100%;
  font-size: 14px;
  height: 34px;
  border-radius: 8px;
}
.default_table.fueltrucks .mobile_table_head {
  display: none;
}
.default_table.fueltrucks .mobile_row {
  display: none;
}

.mobile_row {
  background-color: #F8F8F8;
  border: 1px solid #D9D9D9;
  box-sizing: border-box;
  border-radius: 8px;
}
.mobile_row .mob_head {
  padding: 5px 4px 5px 12px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1.5fr 0.5fr 1fr auto;
  gap: 5px;
  align-items: center;
  cursor: pointer;
}
.mobile_row .mob_head .cell {
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 130%;
  color: #555555;
}
.mobile_row .mob_head .cell a {
  text-decoration: none;
  color: #555555;
}
.mobile_row .mob_head .toggle_btn {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile_row .mob_head .toggle_btn svg {
  width: auto;
  height: 14px;
  stroke: none;
  fill: #6C6C6C;
  transform: rotate(90deg);
  transition: 0.5s;
  transition-timing-function: ease-in-out;
}
.mobile_row.open .mob_head .toggle_btn svg {
  transform: rotate(-90deg);
}
.mobile_row .mob_row_body_wrapper {
  overflow: hidden;
  height: 0px;
  display: flex;
  align-items: flex-end;
}
.mobile_row .mob_row_body {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.mobile_row .fueltrack_sections {
  border-top: 1px solid #D9D9D9;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: space-between;
  gap: 10px;
  padding: 3px 12px 12px 12px;
  box-sizing: border-box;
}
.mobile_row .fueltrack_sections .group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
}
.mobile_row .fueltrack_sections .group .label {
  color: #797979;
}
.mobile_row .fueltrack_sections .group .value {
  color: #555555;
}
.mobile_row .mob_row_body .footer {
  border-top: 1px solid #D9D9D9;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  padding: 3px 12px 10px 12px;
  gap: 10px;
  font-size: 14px;
}
.mobile_row .mob_row_body .footer .cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
}
.mobile_row .mob_row_body .footer .cell:nth-child(1){
  align-items: flex-start;
}
.mobile_row .mob_row_body .footer .cell:nth-child(2){
  align-items: flex-end;
}
.mobile_row .mob_row_body .footer .label {
  color: #797979;
}
.mobile_row .mob_row_body .footer .value {
  color: #555555;
}
.mobile_row .mob_row_body .footer .default_btn {
  font-size: 14px;
  grid-column: 1/3;
  width: 100%;
  height: 30px;
}

.mobile_row .mob_row_body .footer .open-form {
  width: 100%;
  grid-column: 1/3;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0px 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  text-align: center;
  color: #FFFFFF;
  border-radius: 8px;
  box-sizing: border-box;
  cursor: pointer;
  text-decoration: none;
  background-color: #88CA02;
}
.mobile_row .mob_row_body .footer .open-form img {
  display: none;
}

.success_message {
  font-family: 'Futura PT';
  background-color: #85ca2b;
  font-weight: 450;
  font-size: 16px;
  line-height: normal;
  color: #ffffff;
  padding: 14px;
  border-radius: 10px;
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 24px;
}
.success_message .title {
  margin-bottom: 8px;
  text-transform: uppercase;
}


/* ========================================================================== */

.default_table.fueltrucks.margin_b {
  margin-bottom: 40px;
}
.default_table.fueltrucks .table_head {
  grid-template-columns: 100px 1.4fr 0.9fr repeat(6, 1fr) 3fr;
}
.default_table.fueltrucks .table_body > .row {
  grid-auto-flow: unset;
  grid-template-columns: 100px 1.4fr 0.9fr repeat(6, 1fr) 3fr;
}
.default_table.fueltrucks .table_body > .green {
  background:#dde5cd;
}
.default_table.fueltrucks .table_body > .red {
  background:#e3d9bf;
}

.fueltraks_row_actions {
  border-top: 1px solid #D9D9D9;
  padding: 12px 0px;
  box-sizing: border-box;
  grid-column: 1/11;
  margin: 0px 16px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  grid-column-gap: 32px;
}
.fueltraks_row_actions .info_text {
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: #000000;
}

/* ========================================================================== */

.secondpage_cont_head.companies_catalog {
  align-items: end;
  grid-template-columns: 1fr auto;
}
.secondpage_cont_head.companies_catalog .right_side {
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 256px));
  grid-column-gap: 20px;
}
.comp_letters_head {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 10px 0px;
  box-sizing: border-box;
  background-color: #ffffff;
  position: sticky;
  top: var(--header-height-scrolled);
  z-index: 100;
  max-width: 100%;
  overflow: auto;
}
.comp_letters_head::-webkit-scrollbar {
  display: none;
}
.comp_letters_head .item {
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #797977;
  cursor: pointer;
}
.comp_letters_head .item.active {
  color: #88CA02;
}
.companies_list_container {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 62px;
  margin-bottom: 50px;
}
.company_letter_block {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 24px;
}
.company_letter_block .head {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto auto;
  grid-column-gap: 42px;
  padding-bottom: 8px;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(29,29,29, 0.5);
}
.company_letter_block .head .title {
  font-family: 'Benzin';
  font-weight: 600;
  font-size: 40px;
  line-height: normal;
  text-transform: uppercase;
  color: #1D1D1D;
}
.company_letter_block .head .counter {
  font-weight: 600;
  font-size: 40px;
  line-height: normal;
  text-transform: uppercase;
  color: #1D1D1D;
}
.company_letter_block .head .razdel_arrow {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.company_letter_block .head .razdel_arrow svg {
  width: 11px;
  height: auto;
  stroke: none;
  fill: #1D1D1D;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
}
.company_letter_block.collapsed .head .razdel_arrow svg {
  transform: rotate(90deg);
}
.company_letter_block .list_wrapper {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  overflow: hidden;
}
.company_letter_block .list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 24px;
  justify-items: start;
  align-items: start;
}
.company_letter_block .list a {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #1D1D1D;
  text-decoration: none;
}
.company_letter_block .list a:hover {
  text-decoration: underline;
}
.company_letter_block .list a.searching .search-highlight {
  display: inline-block;
  color: #ffffff;
  z-index: 1;
  position: relative;
}
.company_letter_block .list a.searching .search-highlight::after {
  position: absolute;
  content: '';
  top: -5px;
  left: 0px;
  width: calc(100% + 0px);
  height: calc(100% + 10px);
  background-color: #88CA02;
  border-radius: 4px;
  z-index: -1;
}

/* ========================================================================== */

.ads_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
  margin-top: 24px;
}
.ads_container .ads_block {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  background-color: #F8F8F8;
  border: 1px solid #D9D9D9;
  border-radius: 24px;
  padding: 30px;
  box-sizing: border-box;
}
.ads_container .ads_block .title {
  grid-row: 1;
  grid-column: 1;
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: normal;
  color: #1D1D1D;
}
.ads_container .ads_block .default_btn {
  grid-row: 1;
  grid-column: 2;
  justify-self: end;
}
.ads_container .ads_block .ads_list {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 16px;
  margin-top: 36px;
  margin-bottom: 64px;
}
.ads_container .ads_block .ads_list .item {
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #1D1D1D;
  padding-left: 32px;
  box-sizing: border-box;
  position: relative;
  text-decoration: none;
}
.ads_container .ads_block .ads_list .item:hover{
  text-decoration: underline;
}
.ads_container .ads_block .ads_list .item::after {
  position: absolute;
  content: '';
  left: 8px;
  top: 50%;
  transform: translate(0px, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.ads_container .ads_block .ads_list.buy .item::after {
  background-color: #88CA02;
}
.ads_container .ads_block .ads_list.sale .item::after {
  background-color: #B53232;
}

.ads_container .ads_block .link {
  grid-column: 1;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ads_container .ads_block .link svg {
  width: 64px;
  height: auto;
  stroke: none;
  fill: #1D1D1D;
}

/* ========================================================================== */

.adv_page_cont {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto auto 1fr;
  grid-column-gap: 20px;
  grid-template-areas:
  'head head'
  'description_block price_block'
  'description_block contacts_block'
  'description_block images_block';
}
.adv_page_cont .adv_page_head {
  grid-area: head;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.adv_page_cont .adv_page_head .saler {
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #1D1D1D;
}
.adv_page_cont .adv_page_head .saler span {
  text-transform: uppercase;
  color: #5B709C;
}
.adv_page_cont .adv_page_head .date {
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 900;
  font-size: 18px;
  line-height: normal;
  color: #797979;
}
.adv_page_cont .description_block {
  grid-area: description_block;
}
.adv_page_cont .description_block .title_description {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: normal;
  color: #1D1D1D;
  margin-bottom: 10px;
}
.adv_page_cont .description_block .description_text {
  font-size: 18px;
  line-height: 150%;
  color: #000000;
  margin-bottom: 24px;
}
.adv_page_cont .description_block .description_text p {
  font-size: 18px;
  line-height: 150%;
  color: #000000;
  margin-bottom: 24px;
}
.adv_page_cont .description_block .description_text p:last-child {
  margin-bottom: 0px;
}
.adv_page_cont .price_block {
  grid-area: price_block;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 10px;
  padding: 24px 32px;
  box-sizing: border-box;
  border: 1px solid #D9D9D9;
  border-radius: 12px;
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: normal;
  margin-bottom: 20px;
}
.adv_page_cont .price_block .label {
  color: #1D1D1D;
}
.adv_page_cont .price_block .value {
  color: #5B709C;
}
.adv_page_cont .contacts_block {
  grid-area: contacts_block;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 10px;
  padding: 24px 32px;
  box-sizing: border-box;
  border: 1px solid #D9D9D9;
  border-radius: 12px;
  margin-bottom: 32px;
}
.adv_page_cont .contacts_block .label {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: normal;
  color: #1D1D1D;
}
.adv_page_cont .contacts_block .contacts_list {
  display: grid;
  grid-template-columns: 1fr;
}
.adv_page_cont .contacts_block .contacts_list .item {
  font-size: 18px;
  line-height: 150%;
  color: #000000;
}
.adv_page_cont .contacts_block .contacts_list .item a {
  color: #5B709C;
  text-decoration: underline;
}
.adv_page_cont .contacts_block .contacts_list .item a:hover {
  text-decoration: none;
}
.adv_page_cont .images_block {
  grid-area: images_block;
}
.adv_page_cont .images_block .label {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: normal;
  color: #1D1D1D;
  margin-bottom: 16px;
}
.adv_page_cont .images_block .images_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
}
.adv_page_cont .images_block .images_list img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid #D9D9D9;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 3px;
  box-sizing: border-box;
}

/* ========================================================================== */

.vacancy_page_cont {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-column-gap: 20px;
  grid-template-areas:
  'head head'
  'description_block stage_block'
  'description_block price_block'
  'description_block contacts_block';
  align-items: start;
  grid-template-rows: auto auto auto 1fr;
}
.vacancy_page_cont .vacancy_page_head {
  grid-area: head;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.vacancy_page_cont .vacancy_page_head .saler {
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #1D1D1D;
}
.vacancy_page_cont .vacancy_page_head .saler span {
  text-transform: uppercase;
  color: #5B709C;
}
.vacancy_page_cont .vacancy_page_head .date {
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 900;
  font-size: 18px;
  line-height: normal;
  color: #797979;
}
.vacancy_page_cont .description_block {
  grid-area: description_block;
}
.vacancy_page_cont .description_block .title_description {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: normal;
  color: #1D1D1D;
  margin-bottom: 10px;
}
.secondpage_content .vacancy_page_cont .description_block .description_text {
  font-size: 18px;
  line-height: 150%;
  color: #000000;
  margin-bottom: 24px;
}
.secondpage_content .vacancy_page_cont .description_block .description_text p {
  font-size: 18px;
  line-height: 150%;
  color: #000000;
  margin-bottom: 24px;
}
.secondpage_content .vacancy_page_cont .description_block .description_text p:last-child {
  margin-bottom: 0px;
}
.vacancy_page_cont .stage_block {
  grid-area: stage_block;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 10px;
  padding: 24px 32px;
  box-sizing: border-box;
  border: 1px solid #D9D9D9;
  border-radius: 12px;
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: normal;
  margin-bottom: 20px;
}
.vacancy_page_cont .stage_block .label {
  color: #1D1D1D;
}
.vacancy_page_cont .stage_block .value {
  color: #5B709C;
}
.vacancy_page_cont .price_block {
  grid-area: price_block;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 10px;
  padding: 24px 32px;
  box-sizing: border-box;
  border: 1px solid #D9D9D9;
  border-radius: 12px;
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: normal;
  margin-bottom: 20px;
}
.vacancy_page_cont .price_block .label {
  color: #1D1D1D;
}
.vacancy_page_cont .price_block .value {
  color: #5B709C;
}
.vacancy_page_cont .contacts_block {
  grid-area: contacts_block;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 10px;
  padding: 24px 32px;
  box-sizing: border-box;
  border: 1px solid #D9D9D9;
  border-radius: 12px;
  margin-bottom: 32px;
}
.vacancy_page_cont .contacts_block .label {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: normal;
  color: #1D1D1D;
}
.vacancy_page_cont .contacts_block .contacts_list {
  display: grid;
  grid-template-columns: 1fr;
}
.vacancy_page_cont .contacts_block .contacts_list .item {
  font-size: 18px;
  line-height: 150%;
  color: #000000;
}
.vacancy_page_cont .contacts_block .contacts_list .item a {
  color: #5B709C;
  text-decoration: underline;
}
.vacancy_page_cont .contacts_block .contacts_list .item a:hover {
  text-decoration: none;
}
.vacancy_page_cont .images_block {
  grid-area: images_block;
}
.vacancy_page_cont .images_block .label {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: normal;
  color: #1D1D1D;
  margin-bottom: 16px;
}

/* ========================================================================== */

.secondpage_content p {
  margin: 0px;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #1D1D1D;
}
.secondpage_content a {
  /* color: #5B709C; */
  /* text-decoration: underline; */
}
.secondpage_content a:hover {
  /* text-decoration: none; */
}
.secondpage_content strong {
  font-family: 'Futura PT Demi';
  font-weight: 500;
}
.secondpage_content .rightimages {
  width: 500px;
  height: auto;
  float: right;
  border-radius: 24px;
  margin-left: 20px !important;
  margin-bottom: 20px !important;
}
.secondpage_content .leftimages {
  width: 500px;
  height: auto;
  float: left;
  border-radius: 24px;
  margin-right: 20px !important;
  margin-bottom: 20px !important;
}

/* ========================================================================== */

.secondpage_cont_opthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.secondpage_cont_opthead.postoil {
  display: grid;
  grid-template-columns: minmax(200px, 410px) auto;
  margin-top: 24px;
}
.secondpage_cont_opthead.adv {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 257px)) 1fr;
  align-items: end;
  grid-column-gap: 20px;
  margin-top: 24px;
  margin-bottom: 0px;
}
.secondpage_cont_opthead.adv .blue_link {
  justify-self: end;
  margin-bottom: 10px;
}
.page_filter_block {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 4px;
}
.page_filter_block .label {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: #555555;
}
.page_filter_select {
  position: relative;
}
.page_filter_select .custom_select {
  width: 100%;
  height: 40px;
  background-color: #F8F8F8;
  border-radius: 8px;
  border: 1px solid var(--main-border-color);
  font-family: 'Futura PT Book';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: #555555;
  padding: 0px 28px 0px 12px;
  box-sizing: border-box;
  outline: none;
  appearance: none;
  cursor: pointer;
}
.custom_select option {
  background-color: #ffffff;
}
.page_filter_select svg {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 6px;
  height: auto;
  stroke: none;
  fill: #88CA02;
  transform: translate(0px, -50%);
  transition: 0.25s;
  pointer-events: none;
}
.page_filter_select .custom_select:focus + svg {
  transform: translate(0px, -50%) rotate(90deg);
}

.page_filter_search {
  position: relative;
}
.page_filter_search .custom_input {
  width: 100%;
  height: 40px;
  background-color: #F8F8F8;
  border-radius: 8px;
  border: 1px solid var(--main-border-color);
  font-family: 'Futura PT Book';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: #555555;
  padding: 0px 28px 0px 12px;
  box-sizing: border-box;
  outline: none;
  appearance: none;
  cursor: text;
}
.page_filter_search svg {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 18px;
  height: auto;
  stroke: none;
  fill: #88CA02;
  transform: translate(0px, -50%);
  transition: 0.25s;
  pointer-events: none;
}


/* ========================================================================== */

.company_page {
  display: flex;
  flex-direction: column;
  font-size: 18px;
}
.mceContentBody {
  line-height: 150%;
  font-size: 18px;
}
.company-header-block {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 50px;
  margin-bottom: 50px;
  justify-items: start;
}
.company-header-block .logoinfirms {
  grid-row: 1/2;
  grid-column: 2/3;
  width: auto;
  max-width: 300px;
  height: auto;
  max-height: 300px;
}
.company-header-contacts-block {
  grid-row: 1/2;
  grid-column: 1/2;
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 450;
  font-size: 18px;
  line-height: normal;
  color: #1D1D1D;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 24px;
  justify-items: start;
}
.company-header-contacts-block img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  object-position: center;
}
.company-header-contacts-block > div {
  /* display: flex; */
  /* flex-wrap: wrap; */
  column-gap: 14px;
  row-gap: 8px;
  position: relative;
  padding-left: 28px;
  box-sizing: border-box;
}
.company-header-contacts-block > div img {
  position: absolute;
  left: 0px;
  top: 2px;
  width: 20px;
  height: 20px;
}
.company-header-contacts-block > div br {
  /* display: none; */
}
.company-header-contacts-block > div a {
  color: #1D1D1D !important;
  text-decoration: none;
}
.company-header-contacts-block > div a:hover {
  text-decoration: underline;
}
.company-header-address-block {

}
.company-header-phone-block {

}
.company-header-email-block {

}
.company-header-inn-block {

}
.open-form {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0px 50px;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  text-align: center;
  color: #FFFFFF;
  border-radius: 8px;
  box-sizing: border-box;
  cursor: pointer;
  text-decoration: none;
  background-color: #88CA02;
}
.open-form img {
  display: none;
}
.company-content {
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #555555;

  /* margin-top: 18px; */
  margin: 25px 0px;
  background-color: #f5f5f5;
  padding: 30px;
  box-sizing: border-box;
}
.company-content-bg {
  margin: 25px 0px;
  background: #f5f5f5;
  padding: 30px;
  background-position: center center;
  background-size: 100%;
  position: relative;
  z-index: 0;
  box-sizing: border-box;
}
.company-content-placeholder {
  background: #5f729c;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.8;
  z-index: -1;
}
.company-content-bg .company-text p {
  color: #ffffff;
}

.company_page h2 {
  font-size: 20px !important;
  line-height: 130% !important;
}
.company_page h3 {
  font-size: 20px !important;
  line-height: 130% !important;
}
.company_page h4 {
  font-size: 18px !important;
  line-height: 130% !important;
}

.company-title,
.company-content-title,
.left-right-content-title {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  color: #000000;
  text-align: left;
  margin-bottom: 20px;
}
.company-text h2,
.company-title h2,
.company-content-title h2,
.left-right-content-title h2 {
  margin-bottom: 20px;
}
.company-content-bg .company-content-title h2 {
  color: #ffffff;
}
.company-content-title .company-title {
  margin-bottom: 0px;
}

.company-tovar-price,
.company-advantages-container {
  width: 100%;
  /* padding: 50px 0; */
  margin: 25px 0px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 50px;
}
.left-right-block-img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.check-mark-list {
  padding-left: 0px;
}
.check-mark-list ol,
.check-mark-list li {
  /* font-family: 'Futura PT'; */
  /* font-weight: 450; */
  list-style-type: none;
  display: flex;
  font-size: 18px;
  margin-bottom: 10px;
  color: #1D1D1D;
}
.check-mark-list li::before {
  content: "";
  display: inline-block;
  width: 18px;
  min-width: 18px;
  height: 18px;
  background-image: url("/images/check.png");
  background-size: contain;
  background-repeat: no-repeat;
  color: #7EBA27;
  margin: 2px 8px 0px 0px;
}
.mceContentBody p,
.company_page p {
  font-size: 18px;
  /* color: #1D1D1D; */
}
.mceContentBody table,
.company_page table {
  font-size: 18px;
  color: #1D1D1D;
  line-height: normal;
}
.company-offer-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 1;
  margin: 25px 0px;
  display: none;
}
.company-offer-slider .company-offer-slider-item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.company-offer-slider .company-offer-slider-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border: none !important;
  box-shadow: none !important;
}
.company-offer-slider .prev, .company-offer-slider .next {
  cursor: pointer;
  position: absolute;
  top: 0;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.company-offer-slider .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.company-offer-slider .prev:hover,
.company-offer-slider .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.company-offer-slider-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 25px;
  color: black;
}
.company-offer-slider-title {
  color: black !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: center;
}
.company-offer-slider-text {
  text-align: center;
  margin-bottom: 0 !important;
}
.sixth-block-slider-dots {
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 6px;
  width: max-content;
  margin: 16px auto 0px auto;
}
.slider-dots-item {
  display: block;
  width: 12px;
  height: 12px;
  background-color: #D9D9D9;
  border-radius: 12px;
  transition: 0.25s;
  border: 0px;
  cursor: pointer;
}
.slider-dots-item.active {
  width: 24px;
  background-color: #5B709C;
}
.company-offer-slider .item {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}
@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
.page_banner_wrapper {

}
.page_banner_wrapper .recl_slider {

}
.page_banner_wrapper .recl_slider.pc {

}
.page_banner_wrapper .recl_slider.mobile {
  display: none;
}
.page_banner_wrapper p {
  display: none;
}

.page_banner_wrapper .banner_stretching {

}
.page_banner_wrapper .banner_stretching.pc {

}
.page_banner_wrapper .banner_stretching.mobile {
  display: none;
}
.recl_slide {
  display: flex;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  box-sizing: border-box;
}
.recl_slide a {
  width: 100%;
  display: flex;
}
.recl_slide img {
  width: 100%;
  max-width: 100%;
  height: 100%;
}
.recl_slide object {
  width: 100%;
  max-width: 100%;
  height: 100%;
}
.mceContentBody table img,
.company_page table img {
  width: auto;
  max-width: 100%;
  height: auto;
}

/* -- window popup ---------------------------------------------------------- */
.window_wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.window_placeholder {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
}
.window_cont {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  max-height: 95svh;
  overflow: hidden;
}
.window_cont .window_content {
  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.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%); }
}
.close_window_cross {
  height: 32px;
  width: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translate(0px, 3px);
}
.close_window_cross svg {
  width: 22px;
  height: auto;
  stroke: none;
  fill: #B12424;
  transition: 0.5s;
  transition-timing-function: ease-in-out;
}
.close_window_cross:hover svg {
  fill: #DE4040;
  transform: rotate(180deg);
}
.window_wrapper .spinner {
  animation: translate_rotate 2s linear infinite;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
}
.window_wrapper .spinner .path {
  stroke: #85CA2B;
  stroke-linecap: round;
  stroke-width: 2;
  animation: spinner_dash 1.5s ease-in-out infinite, spinner_stroke 3s ease-in-out infinite;
}
@keyframes translate_rotate {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes spinner_dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
@keyframes spinner_stroke {
  0% {
    stroke: #ffffff;
  }
  50% {
    stroke: #85CA2B;
  }
  100% {
    stroke: #ffffff;
  }
}
.window_content {
  background: #F8F8F8;
  border: 1px solid #D9D9D9;
  box-sizing: border-box;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 95vh;
}
.window_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px 16px 0px 0px;
  padding: 42px 42px 16px 42px;
  gap: 12px;
  box-sizing: border-box;
}
.window_head .window_head_title {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: normal;
  text-transform: uppercase;
  color: #1D1D1D;
}
.window_head .window_head_title.green {
  color: #88CA02;
}


.window_head .window_head_title2 {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: normal;
  text-transform: uppercase;
  color: #1D1D1D;
}
/* -- window popup ---------------------------------------------------------- */

.window_cont form {
  width: 100%;
}
.window_content.registration_window {
  width: 620px;
}
.window_content_block {
  padding: 16px 42px 16px 42px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  max-height: 100%;
  overflow: auto;
}


.window_inputs_list {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 32px;
}

.default_input_blocks_2 {
  display: grid;
  grid-template-columns: 1fr  1fr;
  grid-row-gap: 32px;
  gap: 15px;
}


.buttons_benz {
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 24px;
  align-items: center;
}

.default_input_blocks_6 {
  display: grid;
  grid-template-columns: 1fr  1fr 1fr 1fr 1fr 1fr;
  grid-row-gap: 32px;
  gap: 15px;
}

.default_input_block {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 4px;
  align-items: end;
}
.default_input_block .label {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: #555555;
}
.default_input_block .label .redstar {
  color: #B53232;
}
.default_input {
  width: 100%;
  height: 40px;
  background-color: #FFFFFF;
  border: 1px solid #D2D2D2;
  border-radius: 8px;
  padding: 0px 12px;
  box-sizing: border-box;
  outline: none;
  font-family: 'Futura PT Book';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: #000000;
}
.default_input.bold {
  font-weight: 600;
}
.default_input::placeholder {
  font-family: 'Futura PT Book';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: #555555;
}
textarea.default_input {
  resize: vertical;
  padding: 7px 12px 0px 12px;
}
.default_input.error {
  border: 1px solid #B53232;
}
.default_select {
  position: relative;
}
.default_select .select {
  width: 100%;
  height: 40px;
  background-color: #ffffff;
  border: 1px solid #D2D2D2;
  border-radius: 8px;
  box-sizing: border-box;
  font-family: 'Futura PT Book';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: #555555;
  padding: 0px 28px 0px 12px;
  outline: none;
  appearance: none;
  cursor: pointer;
}
.default_select .select.error {
  border: 1px solid #B53232;
}
.default_select svg {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 6px;
  height: auto;
  stroke: none;
  fill: #88CA02;
  transform: translate(0px, -50%);
  transition: 0.25s;
  pointer-events: none;
}
.default_select .select:focus + svg {
  transform: translate(0px, -50%) rotate(90deg);
}
.win_account_footer {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.win_account_footer.registration {

}
.win_account_footer .label {
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 450;
  font-size: 16px;
  line-height: normal;
  color: #000000;
  cursor: pointer;
}
.win_account_footer .form_link {
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 450;
  font-size: 16px;
  line-height: normal;
  color: #5B709C;
  cursor: pointer;
}
.win_account_footer .form_link.mob {
  display: none;
}


.form_link {
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 450;
  font-size: 16px;
  line-height: normal;
  color: #5B709C;
  cursor: pointer;
}


.window_action_buttons {
  display: grid;
  grid-auto-flow: column;
  justify-items: start;
  padding: 16px 42px 42px 42px;
  box-sizing: border-box;
}
.window_action_buttons.center {
  display: flex;
  justify-content: center;
}
.window_action_buttons.end {
  display: flex;
  justify-content: flex-end;
}



/* ========================================================================== */


.window_content.timecode_window {
  width: 620px;
}
.window_content_block {
  padding: 16px 42px 16px 42px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  max-height: 100%;
  overflow: auto;
}
.timecode_input {
  width: 100%;
  height: 100px;
  background-color: #FFFFFF;
  border: 1px solid #D2D2D2;
  border-radius: 8px;
  padding: 0px 12px;
  box-sizing: border-box;
  outline: none;
  font-family: 'Futura PT Book';
  font-style: normal;
  font-weight: 400;
  font-size: 56px;
  line-height: normal;
  color: #85ca2b;
  text-align: center;
}
.timecode_input.error {
  border: 1px solid #FF1616;
}
.timecode_container {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 32px;
}
.timecode_container .timecode_grid {
  display: grid;
  grid-auto-flow: column;
  grid-gap: 16px;
}
.timecode_container .label {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #1D1D1D;
}
.window_content.timecode_window .window_action_buttons {
  padding: 16px 42px 16px 42px;
}

.error_l {
margin: 5px 42px 5px 42px;
padding:0;
color:#ff4500;
display:none;
}

.error_l_vis {
display:block;
}

.info_l {
margin: 5px 42px 5px 42px;
padding:0;
display:none;
}

.info_l_vis {
display:block;
}

.pole_error_n{
border-color:#ff4500;
}





.info_l_2{

}


.posthelp{
margin: 0px 0px 0px 0px;
padding:0;
display:none;
}




.timecode_window_footer {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 8px;
  padding: 16px 0px 42px 0px;
  margin: 0px 42px;
  box-sizing: border-box;
  border-top: 1px solid #8A8A8A;
}
.timecode_window_footer .label {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #1D1D1D;
}
.timecode_window_footer .label span.red {
  color: #FF1616;
}
.timecode_window_footer .action_buttons {
  display: grid;
  grid-auto-flow: column;
}
.timecode_window_footer .action_buttons .link_button {
  justify-self: end;
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 450;
  font-size: 16px;
  line-height: normal;
  color: #5B709C;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.timecode_window_footer .action_buttons .link_button svg {
  justify-self: end;
  width: 16px;
  height: auto;
  fill: #5B709C;
  stroke: none;
  margin-left: 12px;
}
.default_btn.registration {
  padding: 0px 50px;
}

/* ========================================================================== */

.window_content.login_window {
  width: 620px;
}
.win_account_footer.login {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-column-gap: 8px;
}
.default_btn.login {
  width: 250px;
}

/* ========================================================================== */

.window_content.recovery_window {
  width: 620px;
}
.default_btn.recovery {
  width: 250px;
}

/* ========================================================================== */

.cabinet_page_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 50px;
  align-items: center;
}
.cabinet_portal_info {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 16px;
  justify-items: center;
}
.cabinet_portal_info .subtitle {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  color: #1D1D1D;
}
.cabinet_portal_info .portal_caption {
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  color: #1D1D1D;
}
.cabinet_portal_info .username {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  color: #1D1D1D;
}
.cabinet_portal_info .registration_info {
  font-size: 24px;
  line-height: normal;
  color: #1D1D1D;
  text-align: center;
}
.cabinet_portal_info .registration_info span {
  color: #88CA02;
}
.cabinet_portal_info .text {
  font-size: 24px;
  line-height: normal;
  color: #1D1D1D;
  text-align: center;
}
.cabinet_portal_info .text a {
  color: #5B709C;
  text-decoration: underline;
}
.cabinet_portal_info .text a:hover {
  text-decoration: none;
}

.cabinet_user_info {
  border-radius: 12px;
  border: 1px solid #D9D9D9;
  padding: 22px 32px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 32px;
}
.cabinet_user_info .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid #BABABA;
  box-sizing: border-box;
}
.cabinet_user_info .head .text_btn {
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 450;
  font-size: 18px;
  line-height: normal;
  color: #5B709C;
  text-decoration: none;
}
.cabinet_user_info .head .text_btn:hover {
  text-decoration: underline;
}
.cabinet_user_info .footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.exit_btn {
  display: flex;
  align-items: center;
  column-gap: 12px;
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 450;
  font-size: 18px;
  line-height: normal;
  color: #B12424;
  text-decoration: none;
}
.exit_btn svg {
  width: 20px;
  height: auto;
  stroke: none;
  fill: #B12424;
}
.cabinet_user_info .footer .default_btn {
  width: 220px;
}
.cabinet_user_data_list {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 32px;
}
.user_data_inf_block {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 4px;
}
.user_data_inf_block .label {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: #555555;
}
.user_data_inf_block .user_data_inf {
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
  background-color: #F8F8F8;
  border: 1px solid #BABABA;
  border-radius: 8px;
  padding: 0px 12px;
  box-sizing: border-box;
  outline: none;
  font-family: 'Futura PT Book';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: #1D1D1D;
  cursor: default;
}

/* ========================================================================== */


.fuel_table_edit_company {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 50px;
  margin-top: 18px;
  margin-bottom: 50px;
  justify-items: start;
}
.fuel_table_edit_company .logoinfirms {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  width: auto;
  max-width: 300px;
  height: auto;
  max-height: 300px;
}
.fuel_table_edit_company .company_info {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-row-gap: 10px;
  grid-column-gap: 16px;
  justify-items: start;
  font-size: 18px;
  color: #1D1D1D;
  font-weight: 400;
  line-height: normal;
}
.fuel_table_edit_company .company_info .label {
  font-family: 'Futura PT';
  font-weight: 450;
}
.fuel_table_edit_company .company_info .value {

}
.fuel_table_edit_company .company_info .value a {
  color: #5B709C;
  text-decoration: underline;
}
.fuel_table_edit_company .company_info .value a:hover {
  text-decoration: none;
}

.company_fuel_table_edit_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.company_fuel_table_edit_head .title {
  display: flex;
  align-items: center;
  column-gap: 25px;
}
.company_fuel_table_edit_head .update_text {
  justify-self: start;
  font-family: 'Futura PT';
  border-radius: 12px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  font-weight: 450;
  font-size: 20px;
  line-height: normal;
  color: #88CA02;
}
.blue_link.add_fuel_table_row_btn {
  cursor: pointer;
}
.add_fuel_table_row_btn svg {
  width: 14px;
  margin-left: 8px;
}
.fuel_table_edit_actions {
  margin-top: 25px;
  display: flex;
  align-items: center;
  column-gap: 25px;
}

/* ========================================================================== */

.price_stat_header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 25px;
  margin-top: 25px;
}
.price_stat_header .price_stat_range {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  grid-column-gap: 25px;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}
.price_stat_header .price_stat_range .label {
  color: #1D1D1D;
}
.price_stat_header .price_stat_range .select_date {
  grid-column: 1/3;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
  height: 0px;
  overflow: hidden;
  padding-top: 0px;
}
.price_stat_header .price_stat_range .select_date.show {
  height: 40px;
  padding-top: 12px;
}
.price_stat_header .range_lsit {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.price_stat_header .range_lsit .select_item {
  padding: 3px 10px;
  border-radius: 5px;
  box-sizing: border-box;
  background-color: #343744;
  color: #ffffff;
  text-decoration: none;
}

.price_stat_graphic {
  width: 100%;
  background-color: #F8F8F8;
  border-radius: 24px;
  aspect-ratio: 2/0.8;
  overflow: clip;
}
.price_stat_graphic>div>div>div>svg>rect {
  fill: #F8F8F8;
}

.select_date {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  grid-column-gap: 5px;
  align-items: center;
}
.select_date .sepatator {
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  color: #1D1D1D;
}
.select_date .blue_link {
  margin-left: 7px;
  cursor: pointer;
}

/* ========================================================================== */

.add_adv_page {
  display: grid;
  grid-template-columns: 100%;
}
.add_adv_page_footer {
  display: flex;
  justify-content: flex-start;
  margin-top: 18px;
}
.add_adv_page .default_form {
  margin-bottom: 100px;
}
.add_adv_page .form_inputs_list {
  height: 100%;
  grid-template-rows: auto auto auto auto 1fr auto;
}
.add_adv_page .form_company_block {
  margin-bottom: 24px;
}
.add_adv_page .form_inputs_list textarea.default_input[name="cont"] {
  height: 100%;
}
.add_adv_page .form_inputs_list .form_input_group.adv_cont {
  grid-template-rows: auto 1fr;
}

/* ========================================================================== */

.default_form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 72px;
  align-items: start;
}
.default_form textarea.default_input {
  height: 120px;
}
.form_inputs_list {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 22px;
}
.form_input_group {
  display: grid;
  grid-template-columns: 1fr;
}
.form_input_group .label {
  display: flex;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #555555;
  margin-bottom: 4px;
}
.form_input_group .label .red_star {
  color: #B53232;
  margin-left: 4px;
}
.form_input_group .mark {
  margin-top: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #ACACAC;
}
.form_company_block {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 22px;
  padding: 22px 32px 22px 32px;
  box-sizing: border-box;
  border: 1px solid #D9D9D9;
  border-radius: 12px;
}
.form_company_block .head {
  padding-bottom: 22px;
  box-sizing: border-box;
  border-bottom: 1px solid #BABABA;
}
.form_description {
  display: flex;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #555555;
  margin-bottom: 10px;
}
.form_description .red_star {
  color: #B53232;
  margin-right: 4px;
}

/* ========================================================================== */

.files_upload_form_container {
  display: grid;
  grid-template-columns: 100%;
}
.files_upload_title {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: normal;
  text-transform: uppercase;
  color: #1D1D1D;
  margin-bottom: 24px;
}
.files_upload_mark {
  margin-top: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #ACACAC;
}

.files_upload_form {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}
.files_upload_form.adv {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.file_form_item {
  --form-b-radius: 12px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  padding: 40px;
  box-sizing: border-box;
  background-color: #F8F8F8;
  border: 1px solid #D9D9D9;
  border-radius: var(--form-b-radius);
  aspect-ratio: 2 / 1;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
  position: relative;
}
.files_upload_form.adv .file_form_item:first-child {
  grid-column: 1/2;
  grid-row: 1/3;
  aspect-ratio: unset;
  grid-template-rows: 1fr auto;
}
.file_form_item:not(.dragover, .has-file):hover {
  transform: translate(-2px, -2px) scale(1.005);
  box-shadow: 10px 10px 25px #d7d7d7;
  cursor: pointer;
}
.file_form_item input {
  display: none;
}
.file_form_item .file_preview {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #F8F8F8;
  border-radius: var(--form-b-radius);
  border: 1px solid #D9D9D9;
  box-sizing: border-box;
  display: none;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
}
.file_form_item.has-file .file_preview {
  display: flex;
}
.file_form_item .file_preview .preview_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--form-b-radius);
  pointer-events: none;
}
.file_form_item .file_preview .file_info {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #ffffff;
  padding: 10px;
  box-sizing: border-box;
  border-radius: var(--form-b-radius);
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.3);
}
.file_form_item .file_preview .del_file {
  position: absolute;
  top: 0px;
  right: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: var(--form-b-radius);
  cursor: pointer;
}
.file_form_item .file_preview .del_file svg {
  width: 14px;
  height: auto;
  stroke: none;
  fill: #ffffff;
}
.file_form_item .file_preview .del_file:hover svg {
  fill: #FF1616;
}
.file_form_item .file_preview .file_icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.file_form_item .file_preview .file_icon svg {
  width: auto;
  height: 40%;
  fill: #bd1515;
}
.file_form_item .file_preview.loading::after {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(2px);
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: var(--form-b-radius);
}
.file_form_item .file_preview.loading .del_file {
  display: none;
}
.file_form_item .drop_area {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #F8F8F8;
  border-radius: var(--form-b-radius);
  border: 1px dashed #88CA02;
  box-sizing: border-box;
  display: none;
  align-items: center;
  justify-content: center;
}
.file_form_item .drop_area svg {
  width: auto;
  height: 50%;
  fill: none;
  stroke: #88CA02;
}
.file_form_item.dragover .drop_area {
  display: flex;
}
.file_form_item .type {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: normal;
  color: #555555;
}
.file_form_item .formats {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #ACACAC;
}
.file_form_item .info {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 12px;
  justify-items: center;
}
.file_form_item .description {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 8px;
  justify-items: center;
}
.file_form_item .description .label {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #ACACAC;
}
.file_form_item .description .upload_btn {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #5B709C;
}
.file_form_item .description .upload_btn svg {
  width: 11px;
  height: auto;
  fill: none;
  stroke: #5B709C;
}

.default_form_container {

}
.default_form_container.loading {
  position: relative;
}
.default_form_container.loading::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(2px);
  z-index: 1;
}
.form_spinner_wrapper {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.default_form_container .spinner {
  animation: fuel_table_spinner_rotate 2s linear infinite;
  width: 15%;
  height: auto;
}
.default_form_container .spinner .path {
  stroke: #5C709A;
  stroke-linecap: round;
  stroke-width: 2;
  animation: fuel_tablespinner_dash 1.5s ease-in-out infinite;
}
.secondpage_cont_head.vkn_my_vacancies .right_side {
  align-self: end;
  display: grid;
  grid-template-columns: auto auto;
  grid-column-gap: 24px;
  align-items: center;
}
.secondpage_cont_opthead.vkn {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 257px)) 1fr auto;
  align-items: end;
  grid-column-gap: 20px;
}
.secondpage_cont_opthead.vkn .blue_link {
  justify-self: end;
  align-self: end;
  margin-bottom: 10px;
}
.secondpage_cont_opthead.vkn .default_btn {
  grid-column: 4/5;
}

/* ========================================================================== */

.vkn_container {
  background-color: #F8F8F8;
  border: 1px solid #D9D9D9;
  border-radius: 24px;
  padding: 30px;
  box-sizing: border-box;
}
.vkn_container .vkn_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vkn_container .vkn_head .title {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: normal;
  color: #1D1D1D;
}
.vkn_container .vkn_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  margin-top: 36px;
}
.vkn_container .vkn_list .item {
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #1D1D1D;
  padding-left: 32px;
  box-sizing: border-box;
  position: relative;
  text-decoration: none;
}
.vkn_container .vkn_list .item:hover {
  text-decoration: underline;
}
.vkn_container .vkn_list .item::after {
  position: absolute;
  content: '';
  left: 8px;
  top: 50%;
  transform: translate(0px, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #88CA02;
}

.vkn_container .link {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vkn_container .link svg {
  width: 64px;
  height: auto;
  stroke: none;
  fill: #1D1D1D;
}

/* ========================================================================== */

.multi_select {

}
.multi_select .select_block {
  position: relative;
}
.multi_select .select_input {
  width: 100%;
  height: 40px;
  background-color: #ffffff;
  border: 1px solid #D2D2D2;
  border-radius: 8px;
  box-sizing: border-box;
  font-family: 'Futura PT Book';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: #555555;
  padding: 0px 42px 0px 12px;
  outline: none;
  cursor: pointer;
  appearance: none;
}
.multi_select.error .select_input {
  border: 1px solid #B53232;
}
.multi_select.mailing .select_input {
  border: 1px solid #656565;
  background-color: rgba(0,0,0,0);
  color: #ffffff;
}
.multi_select.mailing.error .select_input {
  border: 1px solid #B53232;
}
.multi_select.mailing .select_input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.multi_select .select {
  display: none;
}
.multi_select_dropdown {
  position: fixed;
  top: 0px;
  left: 0px;
  background-color: #F9F9F9;
  border: 1px solid #D2D2D2;
  padding: 4px;
  box-sizing: border-box;
  font-family: 'Futura PT Book';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: #555555;
  z-index: 1000;
  border-radius: 8px;
  display: none;
  overflow: auto;
  flex-direction: column;
  user-select: none;
}
.multi_select_dropdown.mailing {
  background-color: #343744;
  color: #ffffff;
}
.multi_select_dropdown>div {
  cursor: pointer;
  padding: 10px;
  border-radius: 6px;
  box-sizing: border-box;
}
.multi_select_dropdown>div:hover {
  background-color: #e5e5e5;
}
.multi_select_dropdown.mailing>div:hover {
  background-color: #23252d;
}
.multi_select_dropdown::-webkit-scrollbar {
  width: 6px;
}
.multi_select_dropdown::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 3px;
}
.multi_select_dropdown::-webkit-scrollbar-thumb {
  background: #88CA02;
  border-radius: 3px;
}
.multi_select_dropdown::-webkit-scrollbar-thumb:hover {
  background: #7aa325;
}
.multi_select_dropdown::-webkit-scrollbar-corner {
  background: transparent;
}
.multi_select .select_block::after {
  position: absolute;
  content: '';
  right: 24px;
  top: 50%;
  height: 14px;
  width: 1px;
  background-color: #9A9A9A;
  transform: translate(0px, -50%);
}
.multi_select .select_block .search {
  position: absolute;
  top: 50%;
  right: 30px;
  width: 12px;
  height: auto;
  transform: translate(0px, -50%);
  transition: 0.25s;
  pointer-events: none;
  display: flex;
}
.multi_select .select_block .search svg {
  width: 100%;
  height: auto;
  stroke: none;
  fill: #88CA02;
}
.multi_select .select_block .arrow {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 6px;
  height: auto;
  transform: translate(0px, -50%);
  transition: 0.25s;
  pointer-events: none;
  display: flex;
}
.multi_select .select_block svg {
  width: 100%;
  height: auto;
  stroke: none;
  fill: #88CA02;
}
.multi_select.focus .select_block .select ~ .arrow {
  transform: translate(0px, -50%) rotate(90deg);
}
.multi_select .multi_select_vals {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  grid-gap: 8px;
  max-height: 200px;
  overflow: auto;
}
.multi_select .multi_select_vals:not(:empty) {
  margin-bottom: 8px;
}
.multi_select .multi_select_vals::-webkit-scrollbar {
  width: 6px;
}
.multi_select .multi_select_vals::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 3px;
}
.multi_select .multi_select_vals::-webkit-scrollbar-thumb {
  background: #343745;
  border-radius: 3px;
}
.multi_select .multi_select_vals::-webkit-scrollbar-thumb:hover {
  background: #5B709C;
}
.multi_select .multi_select_vals::-webkit-scrollbar-corner {
  background: transparent;
}
.multi_select .multi_select_vals .item {
  display: grid;
  grid-template-columns: auto auto;
  grid-column-gap: 4px;
  align-items: center;
}
.multi_select .multi_select_vals .item .name {
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  color: #000000;
}
.multi_select.mailing .multi_select_vals .item .name {
  color: rgba(255, 255, 255, 0.6);
}
.multi_select .multi_select_vals .item .remove_item {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.multi_select .multi_select_vals .item .remove_item svg {
  width: 10px;
  height: auto;
  fill: #555555;
  transition: 0.25s;
}
.multi_select.mailing .multi_select_vals .item .remove_item svg {
  fill: #ACADB3;
}
.multi_select .multi_select_vals .item .remove_item:hover svg {
  fill: #FF1616;
}
.multi_select_placeholder {
  position: fixed;
  content: '';
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  z-index: 999;
  pointer-events: none;
}

@media (max-width: 1000px) {
  .multi_select .select_input {
    padding: 0px 24px 0px 12px;
  }
  .multi_select .select_block .search {
    display: none;
  }
  .multi_select .select_block::after {
    display: none;
  }
}

/* ========================================================================== */

.indexpage_ads_slider {
  grid-area: slider;
  margin-top: 20px;
}
.indexpage_ads_slider.owl-carousel .owl-stage-outer {
  display: flex;
}
.indexpage_ads_slider.owl-carousel .owl-stage-outer .owl-stage {
  display: flex;
}
.indexpage_ads_slider.owl-carousel .owl-stage-outer .owl-item {
  height: 100%;
}
.indexpage_ads_slider .ads_item {
  height: 100%;
  grid-template-rows: auto 1fr auto auto;
}


.indexpage_vacancy_slider {
  grid-area: slider;
  margin-top: 20px;
}
.indexpage_vacancy_slider.owl-carousel .owl-stage-outer {
  display: flex;
}
.indexpage_vacancy_slider.owl-carousel .owl-stage-outer .owl-stage {
  display: flex;
}
.indexpage_vacancy_slider.owl-carousel .owl-stage-outer .owl-item {
  height: 100%;
}
.indexpage_vacancy_slider .vacancy_item {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
}

/* ========================================================================== */

.window_content.company_contact {
  width: 600px;
}
/* .win_account_footer.login {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-column-gap: 8px;
}
.default_btn.login {
  width: 250px;
} */

.window_content.company_contact textarea.default_input {
  height: 100px;
}

.window_content.company_contact_send {
  width: 500px;
}
.win_success_text {
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  color: #000000;
  padding: 16px 42px;
  box-sizing: border-box;
}
.window_content.company_contact_send .window_action_buttons .default_btn {
  width: 200px;
}

/* ========================================================================== */

.contacts_page {
  display: grid;
  grid-template-columns: minmax(auto, 350px) 1fr;
  grid-column-gap: 32px;
  grid-row-gap: 24px;
  grid-template-areas:
  'phones map'
  'mails map'
  'address map'
  'director map'
  'social map'
  'presentation map';
  margin-top: 15px;
}
.contacts_phones_block {
  grid-area: phones;
}
.contacts_mails_block {
  grid-area: mails;
}
.contacts_address_block {
  grid-area: address;
}
.contacts_director_block {
  grid-area: director;
}
.contacts_social_block {
  grid-area: social;
}
.contacts_presentation_block {
  grid-area: presentation;
}
.contacts_page .map {
  grid-area: map;
}
.contacts_page .map iframe {
  border-radius: 12px;
}

.contact_title {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  text-transform: uppercase;
  color: #1D1D1D;
  margin-bottom: 12px;
}
.contacts_phones_list,
.contacts_mails_list {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 10px;
}
.contacts_phones_list a,
.contacts_mails_list a,
.contacts_address,
.contacts_direktor_block,
.contacts_direktor_block a {
  display: flex;
  align-items: center;
  column-gap: 8px;
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 450;
  font-size: 18px;
  line-height: normal;
  letter-spacing: -0.05em;
  color: #1D1D1D;
  text-decoration: none;
}
.contacts_phones_list a:hover,
.contacts_mails_list a:hover,
.contacts_direktor_block a:hover {
  text-decoration: underline;
}
.contacts_phones_list a svg,
.contacts_mails_list a svg,
.contacts_address a svg {
  width: 20px;
  height: auto;
  stroke: none;
  fill: #1D1D1D;
}
.contacts_direktor_block {
  display: block;
}
.contacts_direktor_block a {
  display: inline;
}
.contacts_presentation {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0px 15px;
  box-sizing: border-box;
  border: 1px solid #CCCCCC;
  box-sizing: border-box;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 450;
  font-size: 18px;
  line-height: normal;
  letter-spacing: -0.05em;
  color: #1D1D1D;
  text-decoration: none;
}
.contacts_presentation svg:first-child {
  width: 20px;
  height: auto;
  margin-right: 18px;
  fill: #1D1D1D;
}
.contacts_presentation svg:last-child {
  width: 16px;
  height: auto;
  margin-left: auto;
  fill: #1D1D1D;
}

.contacts_page > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ========================================================================== */

h2.left-right-content-title {
  margin-bottom: 24px;
}

/* ========================================================================== */

.exel_load_container {
  margin-top: 50px;
  border-radius: 24px;
  background-color: #343745;
  display: grid;
  padding: 60px;
  box-sizing: border-box;
  margin-bottom: 32px;
}
.exel_load_container h3 {
  margin-bottom: 32px;
  color: #ffffff;
}
.exel_load_head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  margin-bottom: 32px;
}
.exel_load_head .label {
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #ffffff;
}
.exel_load_list {
  overflow: auto;
  background: #ffffff;
  padding: 10px;
  border: 1px solid #656565;
  min-height: 100px;
  max-height: 300px;
  border-radius: 12px;
}

/* ========================================================================== */

.search_result_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
.search_result_item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  grid-row-gap: 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #1D1D1D;
  text-decoration: none;
  max-width: 100%;
  background-color: #F8F8F8;
  border-radius: 16px;
  border: 1px solid #D9D9D9;
  padding: 30px;
  box-sizing: border-box;
  text-decoration: none;
}
.search_result_item:hover {
  border: 1px solid #939393;
}
.search_result_item .title {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 180%;
  text-transform: uppercase;
  color: #000000;
}
.search_result_item .text {
  margin-bottom: 12px;
}
.secondpage_content .search_result_item .text p {
  margin: 0px;
}
.search_result_item .btn {
  justify-self: end;
  display: flex;
  gap: 16px;
  align-items: flex-end;
  font-size: 18px;
  color: #5B709C;
}
.search_result_item .btn svg {
  width: 20px;
  height: auto;
  stroke: none;
  fill: #1D1D1D;
  transition: 0.25s;
  transition-timing-function: ease-out;
}
.search_result_item:hover .btn {
  text-decoration: underline;
}
.search_result_item:hover .btn svg {
  transform: translate(4px, -2px) scale(1.2);
}

.search_result_list .search_noresult {
  grid-column: 1/3;
  font-size: 18px;
  line-height: 150%;
}

/* ========================================================================== */
/* ========================================================================== */
/* ========================================================================== */

.about_portal_page {
  display: grid;
  grid-template-columns: 100%;
  gap: 100px;
}
.about_portal_page h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
.secondpage_content .about_portal_page p {
  font-size: 18px;
}
.about_portal_page .row_block {
  display: grid;
}
.about_portal_page .row_block.two_cl {
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 50px;
}
.about_portal_page .row_block .two_cl .half_block {

}
.about_portal_page .row_block a {
  display: flex;
}



.row_block.first_block {
  margin-top: 8px;
}
.about_portal_page .first_block img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.page_cards_grid.about_portal {
  grid-template-columns: 1fr 0.5fr 0.5fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  margin-top: 20px;
}
.page_cards_grid.about_portal .card.inset {
  aspect-ratio: unset;
}
.page_cards_grid.about_portal .card.inset:nth-child(1) {
  grid-column: 1/2;
}
.page_cards_grid.about_portal .card.inset:nth-child(2) {
  grid-column: 2/4;
}
.page_cards_grid.about_portal .card.inset:nth-child(3) {
  grid-column: 4/5;
}
.page_cards_grid.about_portal .card.inset:nth-child(4) {
  grid-column: 1/4;
  aspect-ratio: 10 / 3.67;
}
.page_cards_grid.about_portal .card.inset:nth-child(5) {
  grid-column: 4/5;
}
.page_cards_grid.about_portal .card.inset:nth-child(6) {
  grid-column: 1/3;
}
.page_cards_grid.about_portal .card.inset:nth-child(7) {
  grid-column: 3/5;
}

.about_portal_page .doing_business_block .row_block {
  column-gap: 50px;
}
.about_portal_page .doing_business_block img {
  border-radius: 12px;
  width: 100%;
  height: auto;
}

.check_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 32px;
}
.check_list .li {
  font-size: 18px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #555555;
}
.check_list .li svg {
  width: 14px;
  min-width: 14px;
  height: auto;
  fill: #88CA02;
  margin-top: 3px;
}


.about_portal_page .portal_oppes > p {
  justify-self: center;
  max-width: 727px;
  text-align: center;
  margin-bottom: 40px;
}

.portal_oppes_grid {
  display: grid;
  grid-template-columns: calc(50% - 10px) calc(50% - 10px);
  gap: 20px;
}
.about_portal_page .abport_block {
  --title-color: #1D1D1D;
  --text-color: #555555;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  background-color: #F8F8F8;
  border: 1px solid #D9D9D9;
  padding: 24px 0px 0px 32px;
  box-sizing: border-box;
  border-radius: 12px;
  text-decoration: none;
}
.about_portal_page .abport_block.blue,
.about_portal_page .abport_block.green {
  --title-color: #ffffff;
  --text-color: #ffffff;
}
.about_portal_page a.abport_block:hover {
  border: 1px solid #939393;
}
.about_portal_page .abport_block.green {
  background-color: #88CA02;
}
.about_portal_page .abport_block.blue {
  background-color: #5B709C;
}
.about_portal_page .abport_block h3 {
  grid-row: 1/2;
  grid-column: 1/3;
  font-size: 18px;
  margin-bottom: 18px;
  font-weight: 500;
  color: var(--title-color);
}
.about_portal_page .abport_block .title {
  grid-row: 1/2;
  grid-column: 1/3;
  font-size: 18px;
  margin-bottom: 18px;
  font-weight: 500;
  color: var(--title-color);
  font-family: 'Benzin';
  font-style: normal;
  line-height: normal;
  text-transform: uppercase;
}
.about_portal_page .abport_block .content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 50px;
  /* padding-bottom: 24px; */
  box-sizing: border-box;
}
.about_portal_page .abport_block p {
  color: var(--text-color);
  margin: 0px;
}
.about_portal_page .abport_block .check_list {
  padding-left: 0px;
}
.about_portal_page .abport_block img {
  width: 100%;
  height: auto;
}
.about_portal_page .abport_block .arrow {
  align-self: end;
  grid-column: 1;
  display: flex;
  margin-bottom: 24px;

  width: 32px;
  height: auto;
  fill: #1D1D1D;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
}
.about_portal_page .abport_block.blue .arrow,
.about_portal_page .abport_block.green .arrow {
  fill: #ffffff;
}
.about_portal_page a.abport_block:hover .arrow {
  transform: scale(1.1) translate(3px, -3px);
}

.portal_oppes_grid .abport_block:nth-child(1) .content {
  grid-column: 1/3;
  padding-bottom: 12px;
}
.portal_oppes_grid .abport_block:nth-child(1) img {
  grid-column: 1/3;
  width: 75%;
  height: auto;
  justify-self: end;
}
.portal_oppes_grid .abport_block:nth-child(2){
  grid-template-columns: 1fr 1.3fr;
}
.portal_oppes_grid .abport_block:nth-child(2) img {
  width: 100%;
  height: auto;
  align-self: end;
  margin-bottom: 24px;
}
.portal_oppes_grid .abport_block:nth-child(3){
  grid-column: 1/3;
  padding-right: 32px;
  grid-template-columns: 1fr auto;
}
.portal_oppes_grid .abport_block:nth-child(3) img {
  width: auto;
  max-height: 250px;
  grid-row: 1/3;
}
.portal_oppes_grid .abport_block:nth-child(3) h3 {
  grid-column: unset;
}

.abport_registr_block {
  padding: 50px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  border: 1px solid #D0D0D0;
  position: relative;
  border-radius: 24px;
  z-index: 1;
}
.abport_registr_block::before {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-image: url(/assets/about_portal/registration_block_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
  border-radius: 24px;
}
.abport_registr_block::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 80%);
  backdrop-filter: blur(10px);
  z-index: -1;
  border-radius: 24px;
}
.abport_registr_block img {
  width: 100%;
  height: auto;
}
.abport_registr_block h3 {
  margin-bottom: 50px;
}
.abport_registr_block .check_list {
  padding-left: 0px;
}
.abport_registr_block .check_list .li {
  font-family: 'Futura PT';
  font-weight: 500;
  color: #1D1D1D;
}

.about_portal_page .abport_nav > p {
  justify-self: center;
  max-width: 727px;
  text-align: center;
  margin-bottom: 40px;
}

.abport_nav_grid {
  display: grid;
  grid-template-columns: calc(50% - 10px) calc(50% - 10px);
  gap: 20px;
}
.about_portal_page .abport_nav_grid .abport_block img {
  grid-column: 2;
  grid-row: 2/4;
  align-self: end;
}
.abport_nav_grid .abport_block:nth-child(1){
  grid-template-columns: 1.5fr 1fr;
}
.abport_nav_grid .abport_block:nth-child(2){
  grid-template-columns: 1fr 1fr;
}
.abport_nav_grid .abport_block:nth-child(3){
  grid-template-columns: 1fr 1fr;
  grid-column: 1/3;
  column-gap: 50px;
}
.abport_nav_grid .abport_block:nth-child(3) h3 {
  grid-column: unset;
}
.abport_nav_grid .abport_block:nth-child(3) img {
  grid-row: 1/4;
}

.abport_nav_grid .abport_block:nth-child(6){
  grid-template-columns: 1fr 1fr;
  grid-column: 1/3;
  column-gap: 50px;
}
.abport_nav_grid .abport_block:nth-child(6) h3 {
  grid-column: unset;
}
.abport_nav_grid .abport_block:nth-child(6) img {
  grid-row: 1/4;
}

/* ========================================================================== */

.about_portal_page .abport_calendar > p {
  justify-self: center;
  max-width: 787px;
  text-align: center;
  margin-bottom: 40px;
}
.about_portal_page .abport_calendar > .default_btn {
  margin-top: 20px;
  justify-self: center;
}

.abport_calendar_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
.abport_calendar_item {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  box-sizing: border-box;
  background-color: #F9F9F9;
  border-radius: 16px;
  text-decoration: none;
  padding: 12px 16px;
  border: 1px solid #D9D9D9;
}
.abport_calendar_item:hover {
  border: 1px solid #939393;
}
.abport_calendar_item .title {
  min-height: 64px;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #1D1D1D;
  margin-bottom: 32px;
  box-sizing: border-box;
}
.abport_calendar_item .footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}
.abport_calendar_item .date {
  font-family: 'Futura PT';
  font-weight: 450;
  font-size: 16px;
  line-height: normal;
  color: #1D1D1D;
}
.abport_calendar_item .link {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  color: #000000;
}
.abport_calendar_item .link svg {
  width: 12px;
  height: auto;
  stroke: none;
  fill: #000000;
  margin-left: 10px;
  transition: 0.25s;
  transition-timing-function: ease-out;
}
.abport_calendar_item:hover .link {
  text-decoration: underline;
}
.abport_calendar_item:hover .link svg {
  transform: translate(3px, 0px) scale(1.1);
}

/* ========================================================================== */


.about_portal_page .form_block.placement .left_side {
  max-width: 720px;
}
.form_block .title.abport {
  margin-bottom: 16px;
}
.abport_placement_text {
  color: #ffffff;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
}
.abport_placement_text a {
  color: #ffffff;
  text-decoration: underline;
}
.abport_placement_text a:hover {
  text-decoration: none;
}
.abport_placement_text.one {
  margin-bottom: 24px;
}
.abport_placement_text.two {
  margin-bottom: 50px;
}

.abport_placement_grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  column-gap: 50px;
}
.abport_placement_grid .column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.abport_placement_grid .row {
  display: flex;
  align-items: center;
  gap: 18px;
}
.abport_placement_grid .column .contact_item {
  font-family: 'Futura PT Demi';
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  line-height: normal;
  text-align: center;
  letter-spacing: -0.05em;
  color: #FFFFFF;
  text-decoration: none;
}
.abport_placement_grid .column .contact_item svg {
  width: 20px;
  height: auto;
  fill: #88CA02;
  margin-right: 8px;
}


/* ========================================================================== */
/* ========================================================================== */
/* ========================================================================== */

.mob_ads_grid {
  display: none;
  grid-template-columns: calc(50% - 5px) calc(50% - 5px);
  gap: 10px;
}
.mob_ads_grid.margin_t {
  margin-top: 24px;
}
.mob_ads_grid.margin_b {
  margin-bottom: 24px;
}
.mob_ads_grid.margin_b2 {
  margin-bottom: 50px;
}
.mob_ads_grid .ads-banner-item {
  border: 1px solid #e5e5e5;
  box-sizing: border-box;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: clip;
}
.mob_ads_grid .ads-banner-item::before {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  box-sizing: border-box;
  background-color: #F8F8F8;
  background-image: var(--bg-image);
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  z-index: -2;
}
.mob_ads_grid .ads-banner-item::after {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  box-sizing: border-box;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  z-index: -1;
}
.mob_ads_grid .ads-banner-item a {
  display: flex;
  text-decoration: none;
  width: 100%;
}
.mob_ads_grid .ads-banner-item img {
  width: 100%;
  height: auto;
}

/* ========================================================================== */

.window_content.add_spectech {
  width: 600px;
}
.window_content.add_spectech_send {
  width: 520px;
}
.window_content .default_btn.add_spectech {
  width: 250px;
}


.window_content.site_error {
  width: 600px;
}
.window_content.site_error textarea {
  height: 100px;
}
.window_content .default_btn.site_error {
  width: 250px;
}

/* ========================================================================== */

.abport_rect {
  background-color: #F8F8F8;
  border: 1px solid #D9D9D9;
  padding: 24px 32px 0px 32px;
  box-sizing: border-box;
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 50px;
  margin-top: 24px;
}
.abport_rect h3 {
  margin-bottom: 25px;
  color: #1D1D1D;
}
.abport_rect .check_list {
  margin-bottom: 25px;
  padding-left: 0px;
}
.abport_rect p {
  color: #555555;
}

.abport_reviews_list {
  margin-top: 25px;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.abport_reviews_list .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-family: 'Futura PT';
  font-weight: 500;
  color: #1D1D1D;
  font-size: 20px;
  text-decoration: none;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
}
.abport_reviews_list .item img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  border: 1px solid #D9D9D9;
  box-sizing: border-box;
}
.abport_reviews_list .item:hover {
  transform: scale(1.05);
}
.default_btn.page_review {
  width: 250px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}











/* ========================================================================== */
/* ========================================================================== */
/* ========================================================================== */

.adaptive-table {
  display: grid;
  grid-template-columns: repeat(var(--num-columns, 2), 1fr);
  gap: var(--column-gap, 20px);
}
.adaptive-table > div {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  /* text-align: center; */
  gap: 10px;
}
.adaptive-table > div a {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.adaptive-table img {
  display: inline-block;
  width: min-content;
  max-width: 100%;
  height: 100%;
  border-radius: 10px;
  box-sizing: border-box;
}
.adaptive-table.img-border img {
  border: 1px solid #e5e5e5;
}




/* ========================================================================== */
/* ========================================================================== */
/* ========================================================================== */
