@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'UbuntuSans';
  src: url("../fonts/UbuntuSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Reset and base styles  */
* {
	padding: 0px;
	margin: 0px;
	border: none;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Links */

a, a:link, a:visited  {
    text-decoration: none;
}

a:hover  {
    text-decoration: none;
}

/* Common */

aside, nav, footer, header, section, main {
	display: block;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
	font-weight: inherit;
}

ul, ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

img, svg {
	max-width: 100%;
	height: auto;
}

address {
  font-style: normal;
}

/* Form */

input, textarea, button, select {
	font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
	display: none;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}

section {
    overflow: hidden;
    position: relative;
}

:root {
  --container-width: 1310px;
  --container-padding: 15px;

  --font-main: "proxima-nova", sans-serif;
  --font-accent: Montserrat, sans-serif;
  --font-thirty: UbuntuSans, sans-serif;
  --font-titles: var(--font-accent);

  --page-bg: #fff;
  --text-color: #151515;
  --accent: rgba(85, 85, 85, 1);
  --thirty: #888888;
  --link-color: #008bd0;
  --slide-pag: #c4c4c4;
  --slide-arrow-br: #b5b5b5;
  --bread-text: #bfbfbf;
  --bread-active: #666666;
  --lang-text: #999999;
  --line-text: #adadad;
  --data-text: #b6b6b6;
  --lang-line: #bcbcbc;
  --search-bg: #f3f3f3;
  --footer-bg: #ededed;
  --footer-line: #d2d2d2;
  --card-br: rgba(181, 181, 181, 1);
  --card-br-2: rgba(221, 221, 221, 1);
  --doc-card: rgba(232, 232, 232, 1);
  --text-back: rgba(102, 102, 102, 1);
  --table-num: rgba(119, 119, 119, 1);
}

html {
  scroll-behavior: smooth;
  background-color: rgb(39, 39, 39);
}

body {
  background-color: var(--page-bg);
  color: var(--text-color);
  font-family: var(--font-main);
}

img {
  display: block;
}

a {
  color: var(--link-color);
}

code {
  background-color: #e9f1f6;
  padding: 0.2rem;
  border-radius: 4px;
}

pre.code {
  overflow-x: auto;
  background-color: #e9f1f6;
  padding: 1rem;
  border-radius: 4px;
}

/* Контейнеры */
.container {
	margin: 0 auto;
	padding: 0 var(--container-padding);

	max-width: var(--container-width);
	width: 100%;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
	white-space: nowrap;
	clip-path: inset(100%);
	clip: rect(0 0 0 0);
	overflow: hidden;
}

.page {
  height: 100%;
  font-size: 14px;
  font-family: "proxima-nova", sans-serif;
  line-height: 18px;
}

.page__body {
  display: flex;
  flex-direction: column;
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  background-color: #fff;
  color: #000000;
}

.page-main {
  flex-grow: 1;
}

.footer {
  margin-top: auto;
}

.footer {
  padding: 60px 0;
  background-color: #e3e3e3;
}

/* Nav Icon */
.mobile-nav-btn {
	--time: 0.1s;

	--width: 40px;
	--height: 30px;

	--line-height: 4px;
	--spacing: 6px;

	--color: #000;
	--radius: 4px;

	/* Fixed height and width */
	/* height: var(--height); */
	/* width: var(--width); */

	/* Dynamic height and width */
	height: calc(var(--line-height) * 3 + var(--spacing) * 2);
	width: var(--width);

	display: flex;
	justify-content: center;
	align-items: center;
}

.nav-icon {
	position: relative;
	width: var(--width);
	height: var(--line-height);
	background-color: var(--link-color);
	border-radius: var(--radius);
}

.nav-icon::before,
.nav-icon::after {
	content: '';
	display: block;

	position: absolute;
	left: 0;

	width: var(--width);
	height: var(--line-height);

	border-radius: var(--radius);
	background-color: var(--link-color);
	transition: transform var(--time) ease-in,
		top var(--time) linear var(--time);
}

.nav-icon::before {
	/* top: calc(var(--line-height) * -2); */
	top: calc(-1 * (var(--line-height) + var(--spacing)));
}

.nav-icon::after {
	/* top: calc(var(--line-height) * 2); */
	top: calc(var(--line-height) + var(--spacing));
}

.nav-icon.nav-icon--active {
	background-color: transparent;
}

.nav-icon.nav-icon--active::before,
.nav-icon.nav-icon--active::after {
	top: 0;
	transition: top var(--time) linear,
		transform var(--time) ease-in var(--time);
}

.nav-icon.nav-icon--active::before {
	transform: rotate(45deg);
}

.nav-icon.nav-icon--active::after {
	transform: rotate(-45deg);
}

/* Layout */

.mobile-nav-btn {
	z-index: 999;
	display: none;
}

.mobile-nav {
  position: fixed;
  // top: 0;
  left: -110%;
  width: 45%;
  height: 100%;
  z-index: 110;

  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
  background: #fff;
  box-shadow: 5px 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease-in;
}

.mobile-nav--open {
  left: 0;
}

.mobile-nav a {
  color: #151515;
  text-transform: uppercase;
  display: block;
  padding: 0px 0px 0px 35px;
  border-top: 1px solid var(--link-color);
  border-bottom: 1px solid var(--link-color);
  height: 50px;
  display: flex;
  align-items: center;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  line-height: 22px;
}

.mobile-nav__list li {
  position: relative;
}

.menu-title {
  min-height: 67px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: var(--link-color);
  text-transform: uppercase;
  font-size: 18px;
  line-height: 22px;
  padding: 7px 5px;
  position: relative;
}

.menu-title .menu__close {
  display: none;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.submenu {
  position: fixed;
  top: 0px;
  left: -100%;
  width: 45%;
  height: 100%;
  z-index: 100;

  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
  background: #fff;
  transition: 0.5s ease-in;
}

.submenu--open {
  left: 0;
}

.back-btn {
  position: absolute;
  z-index: 1000;
  left: 35px;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.back-btn img {
  transform: rotate(90deg);
}

.has-submenu .item-arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.item-arrow .item-arrow__icon {
  flex-shrink: 0;
  width: 80px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 15;
  border-left: 1px solid var(--link-color);
}

.item-arrow__icon img {
  transform: rotate(-90deg);
}

.news-card__slide {
  display: flex !important;
  height: auto !important;
}

.pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background-color: rgba(196, 196, 196, 1);
  border-radius: 0;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.pagination .swiper-pagination-bullet-active {
  background-color: var(--link-color);
  opacity: 1;
}

.slider-arrow {
  width: 35px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--card-br);
  z-index: 50;
  cursor: pointer;
  transition: 0.5s linear;
}

.slider-arrow svg path{
	transition: 0.5s linear;
}

.slider-arrow:focus,
.slider-arrow:hover,
.slider-arrow:active {
  border: 1px solid var(--link-color);
}

.slider-arrow:focus svg path,
.slider-arrow:hover svg path,
.slider-arrow:active svg path{
  fill: var(--link-color);
}

.button-prev svg {
  position: relative;
}

.button-next svg {
  position: relative;
  transform: rotate(180deg);
}

.news-card__block .swiper-pagination {
  bottom: -45px !important;
}

.breadcrumbs__wrapper {
  display: flex;
  margin-top: 30px;
}

.breadcrumbs__wrapper-1 {
  position: absolute;
  left: 0;
  top: 130px;
  width: 100%;
  z-index: 15;
}

.breadcrumbs {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
}

.breadcrumbs__link {
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  font-family: var(--font-main);
  color:rgba(102, 102, 102, 1);
  position: relative;
  text-transform: lowercase;
}

.breadcrumbs__wrapper-1 .breadcrumbs__link {
  color: #666666;
}

.breadcrumbs__link:not(:last-child) {
  padding-right: 10px;
}

.breadcrumbs__link:not(:last-child)::after {
  position: absolute;
  content: "|";
  right: -16px;
  top: 0;
  color:rgba(191, 191, 191, 1);
}

.breadcrumbs-active {
  color:rgba(191, 191, 191, 1);
}

.breadcrumbs__wrapper-1 .breadcrumbs-active {
  color: #bfbfbf;
}

.title-1 {
  font-size: 71px;
  line-height: 88px;
  font-weight: 600;
  font-family: var(--font-main);
  color: var(--page-bg);
}

.title-1 span {
  font-size: 100px;
  text-transform: uppercase;
}

.title-2 {
  font-size: 40px;
  line-height: 48px;
  font-weight: 500;
  font-family: var(--font-main);
  color: var(--text-color);
}

.title-3 {
  font-size: 37px;
  line-height: 50px;
  font-weight: 500;
  font-family: var(--font-main);
  color: var(--text-color);
  text-transform: uppercase;
}

.title-4 {
  font-size: 27px;
  line-height: 34px;
  font-weight: 600;
  font-family: var(--font-main);
  color: var(--text-color);
}

.title-5 {
  font-size: 21px;
  line-height: 28px;
  font-weight: 700;
  font-family: var(--font-main);
  color: var(--text-color);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.title-5 span {
  flex-shrink: 0;
}

.text {
  font-size: 20px;
  line-height: 29px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--accent);
}

p strong{
	color:var(--text-color);
}

.promo__text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--page-bg);
}

.services-title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--font-main);
}

.news-title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  font-family: var(--font-main);
  color: var(--text-color);
  transition: 0.3s ease;
}

.doc-text {
  font-size: 17px;
  line-height: 20px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
  transition: 0.3s ease;
}

.about-text {
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  font-family: var(--font-main);
  color: rgba(136, 136, 136, 1);
}

.footer__title {
  font-size: 21px;
  line-height: 26px;
  font-weight: 400;
  font-family: var(--font-main);
}

.footer__title-2 {
  font-size: 17px;
  line-height: 100%;
  font-weight: 700;
  font-family: var(--font-main);
  color: var(--text-color);
  transition: 0.4s linear;
  text-transform: uppercase;
}

.footer__text {
  font-size: 17px;
  line-height: 100%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
  transition: 0.4s linear;
}

.footer__link:focus,
.footer__link:hover,
.footer__link:active {
  color: var(--link-color);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 17px;
  line-height: 100%;
  color: var(--page-bg);
  text-transform: uppercase;
  background-color: var(--link-color);
  border: 1px solid transparent;
  padding: 13px 5px;
  transition: 0.4s linear;
  cursor: pointer;
}

.btn:focus,
.btn:hover,
.btn:active {
  color: var(--link-color);
  background-color: var(--page-bg);
  border: 1px solid var(--link-color);
}
.text-white {
  color: var(--page-bg);
}

.header-btn {
	text-transform:none;
  max-width: 215px;
  width: 100%;
}

.news-card-btn {
  max-width: 188px;
  width: 100%;
}

.about-info__btn {
  max-width: 215px;
  width: 100%;
}

.contact__tab {
  width: 100%;
}

.page-header {
  min-width: 320px;
}

.header {
  /* // position: fixed;
  // top: 0;
  // left: 0; */
  background-color: var(--page-bg);
  /* // box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5); */
  width: 100%;
  z-index: 80;
  transition: 0.2s linear;
  padding: 10px 0;
  border-bottom: 1px solid #efefef;
}

.header__row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid #efefef;
}

.logo {
  flex-shrink: 0;
}

.header__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  // width: 640px;
}

.nav__list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav__list li {
  position: relative;
}

.nav__submenu {
  position: relative;
  display: flex;
  gap: 4px;
  align-items: center;
  padding-right: 12px;
}

.nav__submenu img {
  position: absolute;
  right: -5px;
  top: 65%;
  transform: translateY(-50%);
}

.header__submenu {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 100%;
  opacity: 0;
  min-width: 400px;
  max-width: 100%;
  word-break: break-word;
  white-space: normal;
  visibility: hidden;
  transform: translateY(-10px);
  transition: 0.5s linear;
  z-index: 5;
}

.nav__list li:hover .header__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  background-color: var(--page-bg);
  border-radius: 12px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.header__submenu li a {
  padding: 10px;
  display: flex;
  background-color: #fff;
  color: var(--text-color);
}

.header__submenu li a:hover {
  color: var(--link-color);
}
.header__submenu-sublist {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 100%;
  top: 0;
  opacity: 0;
  min-width: 400px;
  max-width: 100%;
  word-break: break-word;
  white-space: normal;
  visibility: hidden;
  transform: translateX(-10px);
  transition: 0.5s linear;
  z-index: -1;
}

.header__submenu li:hover .header__submenu-sublist {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  background-color: var(--page-bg);
  border-radius: 12px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.nav__list a {
  font-size: 16px;
  line-height: 100%;
  font-weight: 300;
  font-family: var(--font-main);
  color: var(--text);
  transition: 0.4s linear;
}

.nav__list a:hover,
.nav__list a:focus,
.nav__list a:active {
  color: var(--link-color);
}

.header__contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  width: 440px;
}

.search__header {
  flex-grow: 1;
  width: 100%;
}

.header__search-input {
  position: relative;
  width: 100%;
  display: flex;
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--lang-text);
}



.header__search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.header-contact__wrapper {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
.header-hidden {
  display: none;
}

.header-contact__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}
.header__lang {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__lang-block {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lang {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--lang-text);
  font-size: 16px;
  line-height: 100%;
  font-weight: 500;
  font-family: var(--font-main);
  transition: 0.3s linear;
}

.lang:focus,
.lang:hover,
.lang:active{
	color: var(--link-color);
}

.lang:not(:last-child)::after {
  position: absolute;
  content: "|";
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--lang-line);
}

.lang.lang-active {
  color: var(--text-color);
}

.footer {
  background-color: var(--footer-bg);
  padding: 28px 0;
  color: var(--accent);
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
}
.footer__contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--footer-line);
}

.footer__contact-block {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--link-color);
}

.footer__contact-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 6px;
}

.footer__line {
  position: relative;
}

.footer__line:not(:last-child)::after {
  position: absolute;
  content: "/";
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  color: #adadad;
}

.footer__block {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 38px 0 45px 0;
  border-bottom: 1px solid var(--footer-line);
}

.footer__block .footer__title {
  width: 400px;
}

.footer__nav {
  flex-grow: 1;
  max-width: 700px;
  width: 100%;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer__nav-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__nav-item-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer__copyright {
  padding-top: 30px;
}

.footer__copyright a {
  font-size: 13px;
  line-height: 100%;
  font-weight: 400;
  font-family: var(--font-main);
  color: rgba(85, 85, 85, 1);
  transition: 0.4s linear;
}

.footer__copyright a:focus,
.footer__copyright a:hover,
.footer__copyright a:active {
  color: var(--link-color);
}

.pd45{
	padding-top: 45px;
}

.promo {
  height: 100vh;
}

.promo__wrapper {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.promo__wrapper::after {
   position: absolute;
   content: "";
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.6) url("/storage/app/media/promo/map-promo.png") center/contain no-repeat;
   z-index: 0;
 }

.banner {
  height: 100%;
}

.banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo__block {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.promo__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 43px;
  width: 504px;
}

.promo__info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.promo__block-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services-2 {
  min-width: 320px;
  padding: 80px 0 66px 0;
}

.services-1__wrapper {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.services-2__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.services-3__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}

.services-3__list .services-2__item:nth-child(5n + 1),
.services-3__list .services-2__item:nth-child(5n + 2) {
  grid-column: span 3;
}

.services-3__list .services-2__item:nth-child(5n + 3),
.services-3__list .services-2__item:nth-child(5n + 4),
.services-3__list .services-2__item:nth-child(5n + 5) {
  grid-column: span 2;
}

.services-2__item {
  position: relative;
  height: 303px;
  transition: 0.4s linear;
  overflow: hidden;
}

.services-2__item-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 0.4s linear;
  transform: scale(1);
}

.services-2__item:focus .services-2__item-img,
.services-2__item:hover .services-2__item-img,
.services-2__item:active .services-2__item-img {
  transform: scale(1.1);
}

.services-2__item-layout {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: flex;
  gap: 3px;
  transition: 0.4s linear;
  width: calc(100% - 20px);
}

.services-2__link {
  align-self: flex-end;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--link-color);
  transition: 0.4s linear;
}

.services-2__link img {
  width: 12px;
  height: 9px;
  transition: 0.4s linear;
}

.services-2__block {
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
  padding: 14px 12px;
  width: 361px;
  transition: 0.4s linear;
}

.services-2__item:focus .services-2__item-layout,
.services-2__item:hover .services-2__item-layout,
.services-2__item:active .services-2__item-layout {
  gap: 0;
}

.services-2__item:focus .services-2__block,
.services-2__item:hover .services-2__block,
.services-2__item:active .services-2__block {
  background-color: var(--link-color);
  gap: 0;
}

.services-2__item:focus .services-2__link,
.services-2__item:hover .services-2__link,
.services-2__item:active .services-2__link {
  height: 76px;
}

.services-2__item:focus .services-2__link img,
.services-2__item:hover .services-2__link img,
.services-2__item:active .services-2__link img {
  width: 22px;
  height: 17px;
}

.news-card {
  min-width: 320px;
  padding-bottom: 74px;
}

.news-card__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.news-card__block {
  position: relative;
}

.news-card__top {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.news-card__links {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  max-width: 278px;
  width: 100%;
}

.news-card-btns {
  display: flex;
  gap: 10px;
}

.news-card__link {
  display: flex;
  flex-direction: column;
  min-height: 448px;
  gap: 32px;
  border: 1px solid var(--card-br-2);
  width: 100%;
  transition: 0.3s linear
}

.news-card__link:hover{
	border: 1px solid var(--link-color);
}

.news-card__link:hover .date-text{
	color: var(--link-color);
}

.news-card__link:hover .news-title{
	color: var(--link-color);
	text-decoration: underline;
}

.news-card__img {
  width: 100%;
  height: 235px;
}

.news-card__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.news-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card__info-block {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 0px 32px 22px 20px;
}

.news-card__date {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  border-top: 1px solid rgba(221, 221, 221, 1);
  padding: 18px 20px 25px 22px;
  transition: 0.3s ease;
}

.news-card__link:hover .news-card__date{
	border-top: 1px solid var(--link-color);
}

.date-text {
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: var(--card-br);
  text-transform: uppercase;
  transition: 0.3s ease;
}

.news-text {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: var(--link-color);
  text-transform: uppercase;
  text-decoration: underline;
}
.news-card__date-link {
  width: 35px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--text);
  transition: 0.4s linear;
}

.news-card__date-link:focus,
.news-card__date-link:hover,
.news-card__date-link:active {
  background-color: var(--link-color);
}

.doc-slider {
  min-width: 320px;
  padding-bottom: 135px;
}
.doc-block {
	height: 100%;
  border: 1px solid var(--doc-card);
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 40px 30px 30px 30px;
  transition: 0.3s ease;
}

    
.doc-block:focus,
.doc-block:hover,
.doc-block:active{
	border: 1px solid var(--link-color);
}

.doc-block__top {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.doc-block__bottom {
	margin-top: auto;
  display: flex;
  align-items: center;
  gap: 25px;
}
.doc-block__link {
  display: flex;
  align-items: center;
  gap: 9px;
}

.doc-block__link svg{
	flex-shrink: 0;
}

.doc-block__link svg path{
	transition: 0.3s ease;
	
}

.doc-block__link:focus svg path,
.doc-block__link:hover svg path,
.doc-block__link:active svg path{
	fill:var(--page-bg);
	stroke:var(--link-color);
}



.doc-block__link span {
  font-size: 17px;
  line-height: 100%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
  text-decoration: underline;
  transition: 0.3s ease;
}

.doc-block__link:focus span,
.doc-block__link:hover span,
.doc-block__link:active span{
	color:var(--link-color);
}

.about-info {
  min-width: 320px;
  padding-bottom: 80px;
}

.about-info-2 {
  min-width: 320px;
  padding: 45px 0 75px 0;
}

.about-info__wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.about-info__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 83px;
}

.reverse {
  flex-direction: row-reverse;
}

.about-info__img {
  width: 52%;
}

.about-info__img-2 {
  width: 42%;
}

.about-info__img.about-info__img-3 {
  width: 33.5%;
}

.about-info__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-info__img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-info__block {
  display: flex;
  flex-direction: column;
  gap: 34px;
  width: 50%;
}

.about-info__block.about-info__block-2 {
  width: 60%;
}

.about-info__block-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-info__block-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.partner {
  min-width: 320px;
  padding-bottom: 135px;
}

.partners__link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  border: 1px solid #e8e8e8;
  padding: 0 20px;
}

.management {
  min-width: 320px;
  padding: 61px 0 75px 0;
}
.management__wrapper {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.management__layout {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.management__inner {
  display: flex;
  align-items: center;
  gap: 108px;
}
.management__img {
  width: 49%;
}

.management__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.management__block {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 50%;
}
.management__block-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.management__title-2 {
  font-size: 50px;
  line-height: 58px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
}
.about-info__block-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.management__text {
  font-size: 26px;
  line-height: 38px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--accent);
}

.structure {
  min-width: 320px;
  padding: 62px 0 74px 0;
}

.structure__wrapper {
  display: flex;
  flex-direction: column;
  gap: 43px;
}
.structure__top {
  padding-bottom: 33px;
  border-bottom: 1px solid rgba(232, 232, 232, 1);
  border-radius: 2px;
}

.structure__block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news {
  min-width: 320px;
  padding: 62px 0 72px 0;
}

.news__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.news__top {
  padding-bottom: 33px;
  border-bottom: 1px solid rgba(232, 232, 232, 1);
  border-radius: 2px;
}

.news__inner {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.news__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.activity-ser {
  min-width: 320px;
  padding-bottom: 74px;
}

.activity-ser__wrapper {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.activity-ser__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.activity-ser__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  padding: 34px 49px 30px 33px;
  border: 1px solid var(--doc-card);
  transition: 0.3s ease;
}

.activity-ser__item:focus .doc-block__link span, .activity-ser__item:hover .doc-block__link span, .activity-ser__item:active .doc-block__link span {
    color: var(--link-color);
}

.activity-ser__item:focus .doc-block__link svg path,
.activity-ser__item:hover .doc-block__link svg path,
.activity-ser__item:active .doc-block__link svg path{
	fill:var(--page-bg);
	stroke:var(--link-color);
}


.activity-ser__item:focus,
.activity-ser__item:hover,
.activity-ser__item:active{
	border: 1px solid var(--link-color);
	
}

.activity-ser__item:focus .doc-text,
.activity-ser__item:hover .doc-text,
.activity-ser__item:active .doc-text{
	color: var(--link-color);
}


.activity-ser__item-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.activity-ser__icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.activity-ser__icon img {
  width: 61px;
  height: 53px;
}

.about-info__block-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.about-info__block-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.about-info__block-item img {
  position: relative;
  top: 5px;
  flex-shrink: 0;
}

.advantage {
  min-width: 320px;
  // padding-bottom: 75px;
}

.advantage__wrapper {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.advantage__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.advantage__item {
  display: flex;
  flex-direction: column;
  gap: 44px;
  border: 1px solid var(--doc-card);
  padding: 48px 32px 78px 32px;
}
.advantage__num {
  font-size: 40px;
  line-height: 48px;
  font-weight: 300;
  font-family: var(--font-main);
  color: var(--link-color);
}
.advantage__block {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 33px;
}
.advantage__title {
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  font-family: var(--font-main);
  color: var(--text-color);
}

.activity-contact {
  min-width: 320px;
  padding-bottom: 72px;
}

.activity-contact__wrapper {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.activity-contact__top {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--doc-card);
}

.activity-contact__block {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.activity-contact__list {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
}
.activity-contact__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 39px 52px 53px 30px;
  border: 1px solid var(--doc-card);
}
.activity-contact__item-block {
  display: flex;
  align-items: center;
  gap: 11px;
}
.activity-contact-text {
  font-size: 15px;
  line-height: 100%;
  font-weight: 400;
  font-family: var(--font-main);
  color: rgba(167, 167, 167, 1);
}
.activity-contact-title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
  transition: 0.3s ease;
}


.activity-contact-title:focus,
.activity-contact-title:hover,
.activity-contact-title:active{
	color: var(--link-color);
}

.activity-contact__block-2 {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.activity-contact-text-2 {
  font-size: 17px;
  line-height: 100%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--accent);
}

.activity-table {
  min-width: 320px;
  padding: 47px 0 75px 0;
}

.activity-table__wrapper {
  display: flex;
  flex-direction: column;
  gap: 37px;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
}
.custom-table th {
  border: 1px solid rgba(219, 219, 219, 1);
  padding: 10px 24px;
  vertical-align: top;
}

.custom-table td {
  border: 1px solid rgba(219, 219, 219, 1);
  padding: 15px 20px;
  vertical-align: top;
}

.custom-table th {
  background-color: rgba(249, 249, 249, 1);
  text-align: left;
}

.custom-table td:nth-child(1) {
  width: 40px;
  text-align: center;
}

.custom-table td:nth-child(2) {
  white-space: nowrap;
}

.table-text {
  font-size: 17px;
  line-height: 19px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
}

.table-num {
  color: var(--table-num);
}

.npa {
  min-width: 320px;
  padding: 62px 0 75px 0;
}

.npa__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.npa__top {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--doc-card);
}

.npa__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.npa__left {
  border: 1px solid var(--doc-card);
  width: 23%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.npa__title {
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--thirty);
  border-bottom: 1px solid var(--doc-card);
  padding: 22px 10px 18px 21px;
}

.npa__tabs-block {
  padding: 0px 10px 40px 10px;
}

.npa__tabs {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.npa__tab {
  width: 100%;
}

.npa__tab-text {
  text-align: left;
  font-size: 17px;
  line-height: 19px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
  padding-left: 11px;
  transition: 0.3s ease;
}

.npa__tab-text:focus,
.npa__tab-text:hover,
.npa__tab-text:active{
	color: var(--link-color);
}

.npa__tab .npa__tab-active {
  width: 100%;
  padding: 10px 11px;
  background-color: var(--link-color);
  color: var(--page-bg);
}



.npa__right {
  width: 73%;
}
.npa__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.activity-info {
  min-width: 320px;
  padding: 46px 0 70px 0;
}

.activity-info__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.activity-info__top {
  border-bottom: 1px solid rgba(232, 232, 232, 1);
  border-radius: 2px;
  padding-bottom: 18px;
}
.activity-info__back {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  transition: 0.4s ease;
}

.activity-info__back span {
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-back);
  transition: 0.4s ease;
  text-transform: lowercase;
}

.activity-info__back svg path{
	transition: 0.4s ease;
}

.activity-info__back:focus span,
.activity-info__back:hover span,
.activity-info__back:active span{
	color: var(--link-color);
}

.activity-info__back:focus svg path,
.activity-info__back:hover svg path,
.activity-info__back:active svg path{
	
	stroke:var(--link-color);
}

.activity-info__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}
.activity-info__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 67%;
}
.activity-info__left-top {
  border-bottom: 1px solid rgba(232, 232, 232, 1);
  border-radius: 2px;
  padding-bottom: 25px;
}

.activity-info__left-bottom {
  display: flex;
  flex-direction: column;
  gap: 43px;
}
.activity-info__left-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.activity-info__left-text {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-left: 38px;
}

.activity-info__left-text-2 {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.activity-text {
  font-size: 21px;
  line-height: 28px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--accent);
}

.activity-text strong {
  color: var(--text-color);
  font-weight: 500;
}

.activity-info__left-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.activity-info__left-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.activity-info__left-marker {
  flex-shrink: 0;
  position: relative;
  top: 10px;
  display: block;
  width: 5px;
  height: 5px;
  background-color: var(--accent);
  border-radius: 50%;
}

.activity-text-2 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--accent);
}
.block-line {
  padding-top: 29px;
  padding-bottom: 20px;
  position: relative;
}

.block-line::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 39px;
  height: 2px;
  background-color: rgba(0, 0, 0, 1);
}

.left-block-line {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.left-block-line .title-4 {
  border-bottom: 1px solid rgba(232, 232, 232, 1);
  border-radius: 2px;
  padding-bottom: 25px;
}

.activity-info__left-product-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.activity-info__left-product-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activity-info__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 26%;
  border: 1px solid var(--doc-card);
}
.activity-doc-title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--font-main);
  text-transform: uppercase;
  color: var(--accent);
  padding: 22px 18px 23px 23px;
  border-bottom: 1px solid var(--doc-card);
}
.activity-info__right-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 22px;
}
.activity-info__right-item {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid var(--doc-card);
  padding: 23px 0 20px 0;
  transition: 0.3s ease;
}



.activity-info__right-item--top {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 0px 30px 17px 25px;
  border-bottom: 1px solid var(--doc-card);
  transition: 0.3s ease
}

.activity-info__right-item-icon{
	flex-shrink: 0;
}






.activity-info__right-item .doc-block__bottom {
  padding: 0px 30px 0px 25px;
}
.activity-doc {
  font-size: 19px;
  line-height: 20px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
}

.contact-info {
  min-width: 320px;
  padding: 35px 0 65px 0;
}

.contact-info__wrapper {
  display: flex;
  gap: 44px;
  justify-content: space-between;
}
.map {
  width: 61%;
}
.contact-info__block {
  display: flex;
  flex-direction: column;
  width: 34.4%;
  border: 1px solid var(--doc-card);
}
.contact-title {
  font-size: 31px;
  line-height: 50px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
  text-transform: uppercase;
  padding: 29px 101px 29px 63px;
}

.contact-block__top .contact-title {
  padding: 0;
}

.contact__list {
  display: grid;
  grid-template-columns: 1fr;
}
.contact__item {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 29px 101px 29px 63px;
  border-top: 1px solid var(--doc-card);
}

.contact__item .activity-contact-text {
  text-transform: uppercase;
}

.activity-contact__links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-block {
  min-width: 320px;
  padding-bottom: 75px;
}

.contact-block__wrapper {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.contact-block__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--doc-card);
}

.contact-tabs__list {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 450px;
  width: 100%;
}

.contact__tab-item {
  max-width: 215px;
  width: 100%;
}

.contact__tab.btn {
  border: 1px solid var(--link-color);
  color: var(--link-color);
  background-color: var(--page-bg);
  transition: 0.3s ease;
}

.contact__tab:focus.btn,
.contact__tab:hover.btn,
.contact__tab:active.btn{
	border: 1px solid var(--page-bg);
  color: var(--page-bg);
  background-color: var(--link-color);
}


.contact__tab.btn.contact__tab-active {
  color: var(--page-bg);
  background-color: var(--link-color);
}

.map-2 {
  position: relative;
}

.link__svg {
  cursor: pointer;
  transition: fill 0.7s ease;
}
.svg__map {
  transition: fill 0.7s ease;
}
.svg__title {
  fill: #151515;
  transition: fill 0.7s ease;
}
.svg__circle {
  fill: var(--link-color);
  transition: fill 0.7s ease;
}

.link__svg:hover .svg__map {
  fill: var(--link-color);
}

.link__svg:hover .svg__title {
  fill: #fff;
}

.link__svg:hover .svg__circle {
  fill: #fff;
}

/* .geography__item-block-place {
  pointer-events: none;
} */

.geography__item-block {
  position: absolute;
  bottom: 10px;
  right: 10px;
  border: 1px solid #b1b1b1;
  background-color: #ffffff;
  padding: 25px 15px;
  width: 220px;
  z-index: 50;
  display: none;

  pointer-events: none;
}

.geography__item-block.geography__item-active {
  display: block;
}

.geography__item-block::after {
  content: "";
  position: absolute;
  right: 82px;
  bottom: -38.5px;
  border-right: 1px solid #b1b1b1;
  border-bottom: 1px solid #b1b1b1;
  width: 20px;
  height: 40px;
  transform: translate(445%, -75%) skew(50deg) rotate(30deg);
  background: transparent;
  border-bottom-right-radius: 5px;
  background: #ffffff;
  background: linear-gradient(-60deg, #ffffff 55%, #ffffff00 45%);
}

.geography__item-block-title {
  font-family: var(--font-thirty);
  font-weight: 400;
  font-size: 15px;

  line-height: 20px;
  letter-spacing: 0%;
  vertical-align: bottom;
  color: var(--text-back);
}
.geography__item-block-text-place {
  padding-top: 25px;
  padding-bottom: 0px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.geography__item-block-text {
  font-family: var(--font-thirty);
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0%;
  color: var(--text-color);
}


.search-form{
	width: 100%;
}

.search{
    padding: 80px 0;
    min-width: 320px;
}

.search__wrapper{
   display: flex;
    flex-direction: column;
    gap: 40px; 
}

.search__content{
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.search__results{
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.ss-result {
    font-size: 20px;
    line-height: 26px;
    
}
.ss-result__aside {
    float: right;
    margin-left: .5em;
}
.ss-result__title {
    font-weight: bold;
    margin-bottom: .5em;
}
.ss-result__badge {
    font-size: .7em;
    padding: .2em .5em;
    border-radius: 4px;
    margin-left: .75em;
    background: #eee;
    display: inline-block;
}
.ss-result__text {
    font-size: 17px;
    line-height: 22px;
    font-weight: 400;
    color: #777777;
    margin-bottom: .5em;
}

.header__search__label{
	position: relative;
	width: 100%;
	display: flex;
  
}

.header__search__label input[type="text"] {
  background-color: var(--search-bg);
  padding: 11px 32px 11px 16px;
  color:var(--text-color);
  width: 100%;
}

.news-arrow-prev{
	transform: rotate(180deg);
}


.pagination_news{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 60px;
}

.pagination_news-arrow{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 30px;
	border:1px solid rgba(166, 166, 166, 1);
	transition: 0.4s linear;
}

.pagination_news-arrow:focus,
.pagination_news-arrow:hover,
.pagination_news-arrow:active{
	border:1px solid var(--link-color);
}



.pagination_news-numbrs{
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 32px 0 32px; 
}

.pagination_news-numbrs li{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 30px;
	background-color: transparent;
	transition: 0.4s linear;
}

.pagination_news-numbrs li a{
	text-align: center;
	font-size: 18px;
	line-height: 100%;
	font-weight: 400;
	font-family: var(--font-main);
	color: var(--text-color);
}

.pagination_news-numbrs .news-active{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 37px;
	height: 37px;
	border: 1px solid rgba(215, 215, 215, 1);
}

.pagination_news-numbrs .news-active a{
	color: var(--text-color);
}

.news-inner {
  min-width: 320px;
  padding: 80px 0;
}

.news-inner__wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.news-inner__top .title-2 {
  position: relative;
}

.news-inner__top .title-2::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 3px;
  left: 0;
  bottom: -15px;
  background-color: var(--accent);
}

.news-inner__info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.news-inner__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.news-inner__link img {
  object-fit: cover;
  width: 100%;
  height: 300px;
  border-radius: 16px;
}

.form-control {
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    min-width: 50px;
    cursor: pointer;
}

.select-arr{
    position: absolute;
    right:0px;
    top:50%;
    transform:translateY(-55%);
}


.form__success {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.form__success .alert-success {
  width: 500px;
  background-color: white;
  padding: 20px;
  position: relative;
  border-radius: 15px;
}

.form__success .alert-success button {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 19px;
  line-height: 23px;
  color: #151515;
  background: url("/storage/app/media/svg/close-success-2.svg") no-repeat;
  background-size: cover;
  background-position: center;
}

.form__success .alert-success button span {
  visibility: hidden;
}

.form__success .alert-success p {
  font-size: 19px;
  line-height: 23px;
  color: #151515;
}

.modal-form__btn{
	max-width: 225px;
  width: 100%;
  background-color: var(--link-color);
  transition: 0.4s linear;
}

.modal-form__btn:focus,
.modal-form__btn:hover,
.modal-form__btn:active {
  box-shadow: 0 0 20px var(--link-color);
}

.no-scroll {
  overflow: hidden;
}

.modal {
  position: fixed;
  width: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  z-index: 400;
  visibility: hidden;
  opacity: 0;
  transition: 0.7s ease;
}

.modal-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 399;
  background-color: rgba(0, 0, 0, 0.3);
  visibility: hidden;
  opacity: 0;
}

.modal__active {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%);
}

.modal__active-bg {
  visibility: visible;
  opacity: 1;
}

.modal__wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #fff;
  z-index: 1;
  padding: 40px;
}

.modal__form {
  width: 100%;
}

.modal__top {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 26px;
}

.modal-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.modal-form__top-inner {
  display: flex;
  gap: 15px;
}

.modal-form__top {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.modal-label {
  width: 100%;
}

.modal-label .modal-input {
  width: 100%;
}

.modal-label input::placeholder {
  color: #151515;
}

.modal__btn {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  transform: rotate(0deg);
  transition: transform 0.5s ease;
}

.modal__btn:hover {
  transform: rotate(25deg);
}

.modal-label .modal__input {
  color: #151515;
  border: 1px solid var(--link-color);
  padding: 13px 14px;
  width: 100%;
}

.modal__inner textarea {
  color: #151515;
  border: 1px solid var(--link-color);
  padding: 13px 14px;
  width: 100%;
}

.modal-label input::placeholder {
  color: #151515;
}

.modal__inner textarea::placeholder {
  color: #151515;
}

.modal-label input:focus,
.modal-label input:active {
  border: 1px solid var(--link-color);
  outline: none;
}

.modal__inner textarea:focus,
.modal__inner textarea:active {
  border: 1px solid var(--link-color);
  outline: none;
}

.modal-review {
  outline: none;
  resize: none;
  height: 99px;
  width: 100%;
}

.site-lock {
  overflow: hidden;
  height: 100vh; 
}


