html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

body {
  position: relative;
  margin: 0;
  /*font-family: 'Roboto';*/
  line-height: inherit;
  background-color: var(--color-white);

}

p {
  margin: 0;
}

h1,h2,h3 {
  margin: 0;
  font-weight: 400;
}

/*@font-face {*/
/*  font-family: 'Roboto';*/
/*  src: local("Roboto-Light"),*/
/*     url('../fonts/Roboto-Light.woff2') format('woff2'),*/
/*     url('../fonts/Roboto-light.woff') format('woff');*/
/*  font-weight: 300;*/
/*  font-style: normal;*/
/*  font-display: swap;*/
/*}*/


/*@font-face {*/
/*  font-family: 'Roboto';*/
/*  src: local("Roboto-Regular"),*/
/*     url('../fonts/Roboto-Regular.woff2') format('woff2'),*/
/*     url('../fonts/Roboto-Regular.woff') format('woff');*/
/*  font-weight: 400;*/
/*  font-style: normal;*/
/*  font-display: swap;*/
/*}*/

/*@font-face {*/
/*  font-family: 'Roboto';*/
/*  src: local("Roboto-Medium"),*/
/*     url('../fonts/Roboto-Medium.woff2') format('woff2'),*/
/*     url('../fonts/Roboto-Medium.woff') format('woff');*/
/*  font-weight: 500;*/
/*  font-style: normal;*/
/*  font-display: swap;*/
/*}*/

/*@font-face {*/
/*  font-family: 'Roboto';*/
/*  src: local('Roboto Bold'), local('Roboto-Bold'),*/
/*     url('../fonts/Roboto-Bold.woff2') format('woff2'),*/
/*     url('../fonts/Roboto-Bold.woff') format('woff');*/
/*  font-weight: 700;*/
/*  font-style: normal;*/
/*  font-display: swap;*/
/*}*/


/*glob*/
:root {
  --containerMaxWidth: 1600px;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-red: #ED1C24;
  --color-blue: #004781;
  --color-light-blue: #F2F5FD;
  --color-light-grey: #9AA2B0;
}

.btn-reset{
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.input-reset {
  all: unset;
  display: inline-block;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  color: inherit;
  font: inherit;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: none;
}

.input-reset:hover,
.input-reset:focus,
.input-reset:active {
  outline: none;
  box-shadow: none;
  background: transparent;
  color: inherit;
}

.ul-reset {
  margin: 0;
  padding: 0;
  list-style-type: none;
  list-style-position: outside;
  list-style-image: none;
  padding-inline-start: 0;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-padding-start: 0;
  -moz-padding-start: 0;
  -moz-margin-start: 0;
  -ms-padding-start: 0;
  -ms-margin-start: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}

.visibility-hidden {
  position: absolute;
  display: inline-block;
  visibility: hidden;
  height: 0;
}

.container {
  margin: auto;
  max-width: var(--containerMaxWidth);
  height: 100%;
  width: auto!important;
}

.section {
  margin-bottom: 40px;
}

.section__title {
  margin-bottom: 30px;
  font-size: 32px;
  text-align: center;
}

.section__title--blue {
  color: var(--color-blue);
}

.section__descr {
  margin-bottom: 30px;
  font-size: 20px;
}

.section__descr b {
  font-weight: 500;
}

.section__descr > * {
  margin-bottom: 12px;
}

.section__descr > *:nth-last-child(1) {
  margin-bottom: 0;
}

.btn-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  width: max-content;
  min-height: 43px;
  border-radius: 10px;
  font-size: 20px;
  color: var(--color-white);
  line-height: 1;
  background-color: var(--color-blue);
}

.btn-link--red {
  background-color: var(--color-red);
}

/*modal*/
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #424242a6;
  transition: display .3s ease-in-out;
}

.modal-container--open {
  display: flex;
}

.modal {
  position: relative;
  padding: 30px;
  min-height: 400px;
  width: 500px;
  height: fit-content;
  border-radius: 10px;
  background-color: var(--color-white);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  cursor: pointer;
}

/*swiper*/

.swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper__btn {
  width: auto;
  height: 30px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: var(--color-blue);
  transition: all .3s ease-in-out;
}

.swiper__btn::after {
  font-size: 14px;
  color: var(--color-white);
  transition: all .3s ease-in-out;
}

.swiper__btn.swiper-button-disabled {
  opacity: 1;
  border: 1px solid var(--color-blue);
  background-color: var(--color-white);
}

.swiper__btn.swiper-button-disabled::after {
  color: var(--color-blue);
}


/*main-hero*/

.main-hero__banners {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.main-hero__item {
  position: relative;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  height: 421px;
  border-radius: 10px;
  font-size: 36px;
  text-align: center;
  color: var(--color-white);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.main-hero__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(237, 28, 36, 0.6) 100%);
  z-index: 1;
}

.main-hero__item:nth-child(2n)::before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 71, 129, 0.8) 100%);
}

.main-hero__item:nth-child(2n) > .main-hero-btn {
  background-color: var(--color-red);
}

.main-hero-title, .main-hero-btn {
  z-index: 2;
}

.main-hero-desc {
  z-index: 2;
  font-size: 16px;
  color: var(--color-white);
}

.main-hero-btn {
  height: 48px;
}

/*main-hero__banners--4*/

.main-hero__banners--4 > .main-hero__item:nth-child(2) {
  grid-column: 3 / span 4;
}

.main-hero__banners--4 > .main-hero__item:nth-child(3) {
  grid-column: 1 / span 4;
}

/*main-hero__banners--5*/

.main-hero__banners--5 > .main-hero__item:nth-child(4) {
  grid-column: 1 / span 3;
}

.main-hero__banners--5 > .main-hero__item:nth-child(5) {
  grid-column: 4 / span 3;
}


/*services*/

.services__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.services__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 25px 30px;
  min-height: 220px;
  height: 100%;
  border-radius: 10px;
  font-size: 20px;
  background-color: var(--color-light-blue);
}

.services__item-descr {
  padding: 10px 0;
  text-align: center;
}

/*advantages*/

.advantages__list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.advantages__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 30px;
  max-width: 290px;
  min-width: 210px;
  width: calc((100% - (20px * 3)) / 4);
  border-radius: 10px;
  background-color: var(--color-light-blue);
}

.advantages__item-icon {
  margin-bottom: 10px;
}

.advantages__item-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: var(--color-blue);
}

.advantages__item-descr {
  font-size: 14px;
  text-align: center;
}


/*activities*/

.activities__content {
  display: flex;
  justify-content: center;
  gap: 223px;
}

.activities__block {
  width: 600px;
  text-align: center;
}

.activities__block-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  padding: 24px 40px;
  border-radius: 10px;
  color: var(--color-white);
  line-height: 1;
  background-color: var(--color-blue);
  cursor: pointer;
}

.activities__block-title > * {
  font-size: 24px;
}

.activities__block-title--red {
  background-color: var(--color-red);
}

.activities__block-arrow {
  width: 12px;
  height: 7px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.75 0.75004L6.58333 6.58337L12.4167 0.750041' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
  transition: transform .5s ease-in-out;
}

.activities__block--active .activities__block-arrow {
  transform: rotate(180deg);
}

.activities__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 37px;
  margin-top: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease-in;
}

.activities__block--active .activities__list {
  max-height: 1000px;
}

.activities__item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  min-height: 76px;
  border: 1px solid var(--color-blue);
  border-radius: 10px;
  font-size: 24px;
  text-align: center;
  color: var(--color-blue);
}

/*feedback*/

.feedback {
  background-color: var(--color-blue);
}

.feedback__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  padding: 80px 0;
}

.feedback__title {
  display: flex;
  align-items: center;
  margin: 0;
  margin-right: 20px;
  font-size: 36px;
  font-weight: 700;
  color: var(--color-white);
  text-align: start;
}

.feedback__form {
  position: relative;
  height: fit-content;
}

.feedback__input {
  padding: 20px 10px;
  width: 100%;
  border-radius: 10px;
  font-size: 20px;
}

.feedback__input, .feedback__input:hover, .feedback__input:focus, .feedback__input:active {
  background-color: var(--color-white);
}

.feedback__input::placeholder {
  color: var(--color-light-grey);
}

.feedback__btn {
  position: absolute;
  right: 10px;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid var(--color-blue);
  border-radius: 10px;
  font-size: 20px;
  font-weight: 400;
  color: var(--color-blue);
  background-color: var(--color-white);
  transform: translateY(-50%);
  transition: all .3s ease-in-out;
}

.feedback__btn:hover {
  color: var(--color-white);
  background-color: var(--color-blue);
}


/*news*/

.news__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-left: 20px;
}

.news__tabs-list {
  display: flex;
  align-items: center;
  gap: 40px;
}

.news__tab {
  font-size: 20px;
  cursor: pointer;
  transition: color .3s ease-in-out;
}

.news__tab--active  {
  font-weight: 700;
  color: var(--color-blue);
}

.news__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.news__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 12px;
  border-radius: 10px;
  background-color: var(--color-light-blue);
}

.news__item:hover .news__name {
  color: var(--color-blue);
}

.news__image {
  width: 100%;
  aspect-ratio: 360 / 282;
  object-fit: cover;
  border-radius: 10px;
}

.news__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 0 10px;
}

.news__name {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 20px;
  transition: color .3s ease-in-out;
}

.news__date {
  margin-top: auto;
  font-size: 14px;
}


/*partners*/

.partners__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.partners__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 200px;
}

.partners__logo {
  max-width: 100%;
  max-height: 150px;
}

.partners__name {
  font-size: 14px;
  text-align: center;
}

/*employees*/

.employees {
  height: 600px;
  background-color: var(--color-light-blue);
}

.employees__content {
  display: flex;
  align-items: stretch;
  gap: 20px;
  padding: 40px 0;
  height: 100%;
}

.employees__feedback {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  width: 346px;
  height: 100%;
  border-radius: 10px;
  color: var(--color-white);
  background-color: var(--color-blue);
}

.employees__feedback-title {
  font-size: 32px;
}

.employees__feedback-descr {
  font-size: 20px;
}

.employees__feedback-phone {
  font-size: 32px;
}

.employees__right {
  position: relative;
  width: calc(100% - (20px * 2) - 346px + 20px);
  height: 100%;
}

.employees__item {
  box-sizing: border-box;
  display: flex;
  justify-content: start;
  gap: 20px;
  padding: 10px 9px;
  height: calc((100% - 75px) / 2) !important;
  border-radius: 10px;
  background-color: var(--color-white);
}

.employees__image {
  max-height: 100%;
  aspect-ratio: 135 / 200;
  border-radius: 10px;
  object-fit: cover;
}

.employees__info {
  display: flex;
  flex-direction: column;
  text-align: start;
}

.employees__post {
  margin-bottom: 4px;
  font-size: 14px;
}

.employees__fio {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
}

.employees__ext-number {
  font-size: 16px;
}

.employees__btns-container {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 1;
  display: flex;
  gap: 10px;
  justify-content: center;
  transform: translateX(-50%);
}

.employees__swiper-btn {
  position: unset;
}



/*photogallery*/

.photogallery__top {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  height: 43px;
}

.photogallery__title {
  margin-bottom: 0;
}

.photogallery__btn-link {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

 .photogallery__swiper-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: fit-content;
}

.photogallery__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  text-align: start;
}

.photogallery__tile-image {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 3fr 2fr 3fr;
  gap: 20px;
}

.photogallery__tile-item {
  grid-column: span 1;
  grid-row: span 1;
  height: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  object-fit: cover;
}

.photogallery__tile-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: unset;
}

.photogallery__tile-item:nth-child(6) {
  grid-column: 3 / span 2;
  grid-row: 2 / span 2;
  aspect-ratio: unset;
}

.photogallery__swiper-btn {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  height: 50px;
}

.photogallery__swiper-button-prev {
  right: calc(100% + 33px);
  left: unset;
}

.photogallery__swiper-button-next{
  left: calc(100% + 33px);
  right: unset;
}

.photogallery__item-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.photogallery__item-name {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 24px;
  transition: color .3s ease-in-out;
}

.photogallery__item-count {
  font-size: 24px;
  color: var(--color-light-grey);
}


.photogallery__item:hover .photogallery__item-name {
  color: var(--color-blue) ;
}



      .photogallery__slide {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        align-items: flex-start;
      }

.btn-link:focus, .btn-link:hover {
  background-color: var(--color-white);
  text-decoration: none;
}
.main-hero__item:nth-child(2n) > .main-hero-btn:hover {
  background-color: var(--color-white);
  text-decoration: none;
  color: var(--color-red);
}

/*баннер реестр*/

.kc_dashboard {
  display: block;
  position: relative;
  padding: 20px;
  text-align: left;
  border-radius: 10px;
  margin-bottom: 18px;
}
.kc_dashboard .kc_top {
  display: block;
  position: relative;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 0;
}
.kc_dashboard .kc_count {
  display: inline-block;
  position: relative;
  margin-top: 0;
  margin-bottom: 5px;
  font-style: normal;
  font-weight: 500;
  font-size: 45px;
  line-height: 42px;
  color: #005888;
  background-color: var(--color-white);
  opacity: 0.7;
  padding: 5px;
  border-radius: 5px;
}
.kc_dashboard .kc_count_description {
  display: inline-block;
  position: relative;
  margin-bottom: 17px;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 15px;
}
.form_t {
  display: block;
  position: relative;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #000000;
  border-radius: 5px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #000000;
  padding: 12px 15px;
  margin-bottom: 5px;
}
.kc_dashboard > p {
  font-weight: 300;
  color: var(--color-white);
  font-size: 12px;
}
.kc-polit {
  margin-bottom: 15px;
}
.kc-polit, .kc-polit a {
  display: inline-block;
  position: relative;
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 14px;
}