@font-face {
  font-family: 'AlbertSans';
  src: url("../fonts/AlbertSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'AlbertSans';
  src: url("../fonts/AlbertSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFProDisplay';
  src: url("../fonts/SFProDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'AlbertSans';
  src: url("../fonts/AlbertSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  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;
}

:root {
  --container-width: 1296px;
  --container-padding: 15px;

  --font-main: "Inter", sans-serif;
  --font-accent: SFProDisplay, sans-serif;
  --font-three: "Manrope", sans-serif;
  --font-four: AlbertSans, sans-serif;
  --font-titles: var(--font-accent);

  --page-bg: #fff;
  --text-color: rgba(31, 31, 31, 1);
  --accent: rgba(110, 110, 110, 1);
  --link-color: rgba(73, 98, 118, 1);
  --link-hover: rgba(79, 144, 255, 1);
  --more: rgba(20, 20, 20, 1);
  --header-text: rgba(34, 34, 34, 1);
  --news-link: rgba(44, 88, 165, 1);
  --btn-2: rgba(90, 119, 181, 1);
  --form-label: rgba(45, 45, 45, 1);
  --form-place: rgba(157, 157, 157, 1);
  --modal-bg: rgba(247, 247, 247, 1);
  --news-bg: rgba(236, 236, 236, 1);
  --news-line:rgba(175, 175, 175, 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;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background:var(--link-color);
}

::-webkit-scrollbar-thumb:hover {
  background:var(--link-color);
}

/* Контейнеры */
.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: "Inter", 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: var(--page-bg);
  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;
  padding: 15px 10px 15px 35px;
  text-transform: uppercase;
  display: block;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  line-height: 22px;
  padding-top: 20px;

  & .active {
    opacity: 0.5;
  }
}

.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: var(--page-bg);
  transition: 0.5s ease-in;
}

.submenu--open {
  left: 0;
}

.submenu ul {
  overflow-y: auto;
  padding-top: 20px;
}

.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);
}

.item-arrow {
  position: relative;
}

.item-arrow .item-arrow-img {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  transform: translateY(-50%) rotate(-90deg);
  right: 30px;
  top: 50%;
  z-index: 15;
}

.item-arrow-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.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 {
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--text-color);
  border-radius: 50%;
  position: absolute;
  z-index: 50;
  cursor: pointer;
  transition: 0.3s ease;
  user-select: none;
}

.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{
  stroke: var(--link-color);
}

.button-prev {
  left: -50px;
  transform: translateY(-50%) rotate(0deg);
}

.button-next {
  right: -50px;
}

.view__card .view-pagination-block {
	position: absolute;
	left: 0;
  bottom: -45px !important;
  z-index: 10;
  width: 100%;
  height: 20px;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.view-pagination{
	min-width: max-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.title-1 {
  font-size: 64px;
  line-height: 80px;
  font-weight: 700;
  font-family: var(--font-main);
  color: var(--page-bg);
}

.jumbotron .title-1{
	color: var(--link-color);
}

.title-2 {
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  font-family: var(--font-four);
}

.title-3 {
  font-size: 42px;
  line-height: 48px;
  font-weight: 800;
  font-family: var(--font-three);
}

.title-4 {
  font-size: 36px;
  line-height: 100%;
  font-weight: 700;
  font-family: var(--font-main);
}

.title__5 {
  font-size: 32px;
  line-height: 30px;
  font-weight: 700;
  font-family: var(--font-main);
}

.title-news{
	font-size: 30px;
  line-height: 32px;
  font-weight: 700;
  font-family: var(--font-three);
}

.text-news{
	font-size: 16px;
  line-height: 19px;
  font-weight: 400;
  font-family: var(--font-main);
}

.modal-title {
  font-size: 35px;
  line-height: 47px;
  font-weight: 700;
  font-family: var(--font-main);
}

.jumbotron-title{
	font-size: 25px;
  line-height: 25px;
  font-weight: 600;
  font-family: var(--font-four);
  color: var(--link-color);
}

.promo__text {
  font-size: 24px;
  line-height: 100%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--page-bg);
}

.promo__text-2 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--font-main);
}

.view__text {
  font-size: 16px;
  line-height: 120%;
  font-weight: 700;
  font-family: var(--font-main);
}

.text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  font-family: var(--font-main);
  color: var(--accent);
}

.news__title {
  font-size: 20px;
  line-height: 23px;
  font-weight: 700;
  font-family: var(--font-main);
  color: var(--text-color);
}

.news__text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
}

.date-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 15px;
  font-weight: 500;
  font-family: var(--font-main);
  color: var(--news-link);
}

.advantages__title {
  font-size: 24px;
  line-height: 120%;
  font-weight: 500;
  font-family: var(--font-main);
  color: var(--text-color);
}
.advantages__text {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
}

.news-info-link {
  color: var(--link-hover);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-weight: 600;
  font-size: 15px;
  line-height: 100%;
  color: var(--page-bg);
  background-color: var(--link-color);
  border: 1px solid var(--link-color);
  border-radius: 999px;
  padding: 15px 5px;
  transition: 0.4s linear;
  cursor: pointer;
}

.btn:focus,
.btn:hover,
.btn:active {
  color: var(--link-color);
  background-color: var(--page-bg);
}

.btn-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-weight: 600;
  font-size: 15px;
  line-height: 100%;
  color: var(--page-bg);
  background-color: var(--btn-2);
  border: 1px solid var(--btn-2);
  border-radius: 999px;
  padding: 15px 5px;
  transition: 0.4s linear;
  cursor: pointer;
}

.btn-2:focus,
.btn-2:hover,
.btn-2:active {
  color: var(--btn-2);
  background-color: var(--page-bg);
}

.btn-3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  color: var(--page-bg);
  background-color: var(--link-hover);
  border: 1px solid var(--link-hover);
  border-radius: 999px;
  padding: 15px 5px;
  transition: 0.4s linear;
  cursor: pointer;
}

.btn-3:focus,
.btn-3:hover,
.btn-3:active {
  color: var(--link-hover);
  background-color: var(--page-bg);
}

.text-white {
  color: var(--page-bg);
}

.text-center {
  text-align: center;
}

.text-black {
  color: var(--text-color);
  font-weight: 400;
}

.header__btn {
  width: 186px;
  text-transform: none;
}

.promo-btn {
  width: 186px;
}

.about-info__btn {
  width: 145px;
}

.btn-404{
	max-width: 220px;
	width: 100%;
}

.modal-form__btn {
  width: 100%;
  border-radius: 10px;
  text-transform: uppercase;
}

.page-header {
  min-width: 320px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  background-color: transparent;
  width: 100%;
  z-index: 80;
  padding: 16px 0;

  transition: 0.2s linear;
  background-color: var(--page-bg);
}

.header.header__active {
  padding: 3px 0;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.header__row {
  display: flex;
  align-items: center;
}

.logo {
  flex-shrink: 0;
}

.header__nav {
  flex-grow: 1;
  margin-left: 55px;
}

.nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.nav__list a {
  font-size: 14px;
  line-height: 15px;
  font-weight: 600;
  font-family: var(--font-main);
  transition: 0.3s ease;
  color: var(--header-text);
}

.nav__list a:focus,
.nav__list a:hover,
.nav__list a:active {
  color: var(--link-hover);
}

.header__link {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.header__link svg {
  position: relative;
  top: 2px;
  flex-shrink: 0;
}

.header__link svg path {
  transition: 0.3s ease;
}

.header__link:focus svg path,
.header__link:hover svg path,
.header__link:active svg path {
  stroke: var(--link-hover);
}

.contact__header-block {
  max-width: 382px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  margin-left: 15px;
}

.contact__header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone__header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 23px;
  font-weight: 600;
  font-family: var(--font-main);
  transition: 0.3s ease;
  color: var(--header-text);
}

.phone__header:focus,
.phone__header:hover,
.phone__header:active {
  color: var(--link-hover);
}
.phone__header svg path {
  transition: 0.3s ease;
}

.phone__header:focus svg path,
.phone__header:hover svg path,
.phone__header:active svg path {
  stroke: var(--link-hover);
}

.header__service {
  position: fixed;
  margin: 0 auto;

  max-width: var(--container-width);
  width: 100%;
  top: 90px;
  left: 50%;
  transform: translateX(-60%);
  z-index: 400;
  visibility: hidden;
  opacity: 0;
  transition: 0.7s ease;
  max-height: 80vh;   
  overflow-y: auto;
  scrollbar-width: thin; 
  scrollbar-color: rgba(73, 98, 118, 0.6) transparent;
}


.header__service::-webkit-scrollbar {
  width: 4px; /
}

.header__service::-webkit-scrollbar-track {
  background: transparent; 
}

.header__service::-webkit-scrollbar-thumb {
  background-color: rgba(73, 98, 118, 0.6); 
  border-radius: 10px; 
}

.header__service-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;
}

.header__service.header__service-active {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%);
}

.header__service-bg.header__service-bg-active {
  visibility: visible;
  opacity: 1;
}

.header__service-wrap {
  border-radius: 15px;
  background-color: var(--news-bg);
  padding: 30px;
  position: relative;
}

.header__service-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 22px;
  row-gap: 30px;
}

.header__service-item {
  align-self: center;
}

.header__service-link {
  font-size: 14px;
  line-height: 120%;
  font-weight: 500;
  font-family: var(--font-main);
  transition: 0.3s ease;
  color: var(--header-text);
}

.header__service-link:focus,
.header__service-link:hover,
.header__service-link:active {
  color: var(--link-hover);
}

.close-ser {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.close-ser:focus,
.close-ser:hover,
.close-ser:active {
  transform: rotate(15deg);
}

.footer {
  background-color: rgba(0, 0, 0, 1);
  padding: 62px 0 32px 0;
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__top {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 112px;
  padding-bottom: 30px;
  border-bottom: 1px solid #434343;
}

.footer__nav {
  flex-grow: 1;
  display: flex;
  justify-content: flex-start;
  gap: 178px;
}
.footer__block {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}
.footer__title {
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  font-family: var(--font-main);
  color: var(--page-bg);
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__text {
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  font-family: var(--font-accent);
  color: var(--page-bg);
}
.footer__link {
  transition: 0.3s ease;
}

.footer__link:focus,
.footer__link:hover,
.footer__link:active {
  color: var(--link-hover);
}

.footer__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__social svg {
  flex-shrink: 0;
}

.footer__social svg path {
  transition: 0.3s ease;
}

.footer__social:focus svg path,
.footer__social:hover svg path,
.footer__social:active svg path {
  stroke: var(--link-hover);
}

.footer__eagle {
  position: absolute;
  right: 0;
  bottom: -22px;
}

.no-scroll {
  overflow: hidden;
}

.modal {
  position: fixed;
  width: 643px;
  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: var(--modal-bg);
  z-index: 1;
  border-radius: 16px;
  padding: 50px;
}

.modal__form {
  width: 100%;
}

.modal__top {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
  position: relative;
}

.modal-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-form__top-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.modal-form__top {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.modal__block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-label {
  width: 100%;
}

.modal-label .modal-input {
  width: 100%;
}

.modal-label {
  width: 100%;
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
  font-family: var(--font-main);
  color: var(--text-color);
}
.modal__input {
  width: 100%;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
  padding: 17px 20px;
  background-color: var(--page-bg);
  border-radius: 12px;
  border: 1px solid transparent;
  transition: 0.3s ease;
  cursor: pointer;
}

.modal-input::placeholder {
  color: var(--form-place);
}

.modal__btn {
  position: absolute;
  right: 0;
  top: -2px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  transform: rotate(0deg);
  transition: transform 0.5s ease;
}

.modal__btn:hover {
  transform: rotate(25deg);
}

.modal__input:focus,
.modal__input:hover,
.modal__input:active {
  border: 1px solid var(--link-color);
  outline: none;
}

.modal-review {
  outline: none;
  resize: none;
  height: 82px;
  width: 100%;
}

.promo {
  margin-top: 100px;
  height: 87vh;
}

.promo-2 {
  margin-top: 100px;
  height: 356px;
}

.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-color: rgba(31, 31, 31, 0.34);
   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: 32px;
  width: 700px;
}

.promo__inner-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap:15px;
}

.promo__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.promo__block-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.promo__block-text-2 {
  max-width: 635px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.view {
  min-width: 320px;
  padding: 60px 0 104px 0;
  overflow: hidden;
}

.view__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.view__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.view__top .view__link {
  font-size: 15px;
  line-height: 15px;
  font-weight: 400;
  font-family: var(--font-four);
  color: var(--more);
  text-decoration: underline;
  transition: 0.3s ease;
}

.view__link:focus,
.view__link:hover,
.view__link:active {
  color: var(--link-hover);
}

.view__card {
  position: relative;
}

.view-block {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 12px;
  transition: 0.3s ease;
}

.view-block::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.59);
  border-radius: 12px;
}

.view-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  filter: grayscale(1);
}

.view-block .view__text {
  width: calc(100% - 20px);
  position: absolute;
  left: 10px;
  bottom: 23px;
  z-index: 4;
}

.view-block:focus img,
.view-block:hover img,
.view-block:active img {
  filter: grayscale(0);
}

.about-info {
  min-width: 320px;
  padding-bottom: 80px;
}

.about-info-2 {
  min-width: 320px;
  padding: 60px 0;
}

.about-info-3{
  min-width: 320px;
  padding: 120px 0 40px 0;
}

.about-info__wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.about-info__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}


.about-info-3 .about-info__inner {
  align-items: stretch;
  flex-direction: column;
}

.reverse {
  flex-direction: row-reverse;
}

.about-info__img {
  width: 50%;
}

.about-info-3 .about-info__inner .about-info__img {
  width: 100%;
}

.services__inner .title-3{
	margin-bottom: 30px;
}

.services__inner p{
	margin-bottom: 6px;
}

.services__img{
	float: left;
	margin-right: 30px;
	margin-bottom:5px;
}

.about-info__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.about-info-3 .about-info__inner .about-info__img img {
  height: 490px;
}

.about-info__block {
	align-self: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 50%;
}

.about-info-3 .about-info__inner .about-info__block {
  width: 100%;
}

.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: 3px;
}

.text-hidden {
  max-height: 100px;       
  overflow: hidden;
  transition: max-height 0.4s ease; 
}

.text-hidden-active {
  max-height: 1000px; 
}

.main-form {
  min-width: 320px;
  padding-bottom: 60px;
}

.form__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  border-radius: 15px;
  padding: 50px 15px;
}

.form__inner::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
}

.form__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 512px;
  width: 100%;
}



.form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}
.form-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
  row-gap: 20px;
}

.form__label-block:nth-child(3) {
  grid-column: 1 / 3;
}

.form__label-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form__label {
  width: 100%;
  text-align: center;
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
  font-family: var(--font-main);
  color: var(--page-bg);
}
.form__input {
  width: 100%;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
  padding: 10px 20px;
  background-color: var(--page-bg);
  border-radius: 12px;
}

.form__input::placeholder {
  text-align: center;
  color: var(--form-place);
}

.form__textarea {
  outline: none;
  resize: none;
  height: 74px;
}

.img__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  border-radius: 15px;
}

.news-block {
  min-width: 320px;
  padding-bottom: 60px;
}

.news-block-2 {
  min-width: 320px;
  padding: 60px 0;
}

.news-block__wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.news-block__top {
  text-align: center;
}

.news-block__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.news-block__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.news-block__list-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-block__item-link {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px;
  background-color: var(--news-bg);
  border-radius: 16px;
}

.news-block__item-row-link {
  height: 100%;
  display: flex;
  gap: 24px;
  padding: 28px;
  background-color: var(--news-bg);
  border-radius: 16px;
}

.news-block__item:nth-child(1) {
  grid-row: 1/3;
}

.news-block__list-2 .news-block__item:nth-child(1) {
  grid-row: 1/1;
}

.news-block__item-row-link .news-block__img {
  width: 335px;
  height: 224px;
}

.news-block__img {
  border-radius: 16px;
  height: 261px;
}

.news-block__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.news-block__item-row-link .news-block__info {
  width: 260px;
}

.news-block__info {
  align-self: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.news-block__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-info-block {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--news-line);
}

.services-card {
  min-width: 320px;
  padding: 40px 0;
}

.services-card__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.advantages {
  min-width: 320px;
  padding: 84px 0 60px 0;
}

.advantages__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.advantages__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 30px;
}
.advantages__item {
  display: flex;
  align-items: center;
  gap: 24px;
  background-color: var(--modal-bg);
  border-radius: 20px;
  padding: 24px;
}
.advantages__icon {
  width: 94px;
  height: 94px;
  flex-shrink: 0;
}

.advantages__icon img {
  object-fit: cover;
}

.advantages__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact {
  min-width: 320px;
  padding: 60px 0;
}

.contact__wrapper {
  display: flex;
  gap: 16px;
}
.contact__map {
  width: 97%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact__map-top {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.map iframe {
  border-radius: 15px;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 30%;
}
.contact__block {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 44px 25px;
  border-radius: 15px;
  background-color: var(--news-bg);
}

.contact__block:focus .contact__link,
.contact__block:hover .contact__link,
.contact__block:active .contact__link{
	color: var(--link-color);
}

.contact__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.contact__info-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__text {
  font-size: 16px;
  line-height: 30px;
  font-weight: 600;
  font-family: var(--font-main);
  color: var(--text-color);
}
.contact__link {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
}


.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;
}


.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;
}


.jumbotron{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 28px;
	width: 100%;
  height: 100vh;
}


.jumbotron__wrapper{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 28px;
}


.fixed-social {
  position: fixed;
  right: 20px;
  bottom: 12px;
  z-index: 200;
  transition: 0.7s ease;
}
.fixed-social__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.fixed-social__link {
  display: block;
  transform: rotate(0deg);
  transition: 0.7s ease;
}

.fixed-social__link img {
  width: 70px;
  height: 70px;
}

.fixed-social__link:hover {
  transform: rotate(360deg);
}

.fixed-social.hidden {
  opacity: 0;
  visibility: hidden;
  transition: 0.7s ease;
}