.content-title {
  position: relative;
}
.content-title::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #00ccc5 0%, transparent 70%);
  width: calc(100% - 100px);
  height: 2px;
}

.content-top {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 30px;
}

.content-nav__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 10px;
  background: #fbfbfb;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.nav-item {
  display: flex;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  overflow: hidden;
  min-height: 64px;
  text-decoration: none !important;
}
.nav-item__icon {
  display: flex;
  align-items: center;
  position: relative;
  padding: 10px;
  background: #00ccc5;
}
.nav-item__icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/wp-content/themes/mpgu20/assets/img/icon/double-left-arrow-icon-white.svg") center/cover no-repeat;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.nav-item__img {
  width: 32px;
  height: 32px;
  transition: opacity 0.3s ease;
}
.nav-item__name {
  flex: 1;
  display: flex;
  align-items: center;
  padding-left: 10px;
  background: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}
.nav-item:hover .nav-item__icon::before {
  opacity: 1;
}
.nav-item:hover .nav-item__img {
  opacity: 0;
}

.content-extra__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
}
.content-extra__button {
  width: 250px;
  border: 1px solid #1d62a1;
  border-radius: 4px;
  font-size: 18px;
  line-height: 22px;
  color: #1d62a1 !important;
  text-align: center;
  text-decoration: none !important;
  padding: 10px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

.content-epgu {
  display: flex;
  align-items: center;
  margin-top: 60px;
  padding: 10px;
  background-color: #fbfbfb;
  border: 1px solid #1d62a1;
  border-radius: 10px;
}
.content-epgu__logo {
  flex-shrink: 0;
  width: calc(30% - 6px);
  margin-top: 10px;
}
.content-epgu__logo-img {
  width: 100%;
  height: 100%;
}
.content-epgu__description {
  margin-left: 10px;
}
.content-epgu__text {
  font-size: 20px;
}
.content-epgu__text:last-child {
  margin-bottom: 0 !important;
}
.content-epgu__buttons {
  margin-left: auto;
}
.content-epgu__button {
  color: #1d62a1;
  text-decoration: none !important;
  border: 1px solid #1d62a1;
  border-radius: 4px;
  padding: 10px;
  font-size: 18px;
  transition: background 0.3s ease, color 0.3s ease;
}
.content-epgu__button:hover {
  background: #1d62a1;
  color: #ffffff;
}

.content-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.content-news {
  display: flex;
  flex-direction: column;
}

.news-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  flex: 1;
}

.news-item {
  border-radius: 10px;
  overflow: hidden;
}
.news-item__content {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.news-item__img {
  width: 100%;
  height: 100%;
  filter: brightness(0.5);
}
.news-item__title {
  position: absolute;
  top: 10px;
  right: 10px;
  left: 10px;
  font-size: 20px;
  margin: 0 !important;
  color: #ffffff;
}
.news-item__more {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #00ccc5;
  color: #ffffff;
  padding: 4px;
  border-radius: 4px;
}

.content-service__buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-button {
  display: flex;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  overflow: hidden;
}
.service-button__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1d62a1;
  flex-shrink: 0;
}
.service-button__img {
  width: 64px;
  height: 64px;
}
.service-button__texts {
  flex-grow: 1;
  background: #fbfbfb;
  padding: 10px;
}
.service-button__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0 !important;
}
.service-button__description {
  font-size: 16px;
  line-height: 18px;
  margin: 0 !important;
}
.service-button__icon-more {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-left: 4px solid #00ccc5;
  transition: background 0.3s ease;
}
.service-button__img-more {
  width: 64px;
  height: 64px;
  color: #00ccc5;
  transition: color 0.3s ease;
}
.service-button:hover {
  text-decoration: none;
}
.service-button:hover .service-button__icon-more {
  background: #00ccc5;
}
.service-button:hover .service-button__img-more {
  color: #ffffff;
}

.content-contacts__blocks {
  display: grid;
  grid-template-columns: 0.3fr 0.7fr;
  gap: 60px;
}
.content-contacts__map {
  border-radius: 10px;
  margin-top: 20px;
  overflow: hidden;
}

.contact-switch {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-switch__btn {
  display: flex;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 4px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: background 0.3s ease;
}
.contact-switch__btn_active {
  background: #1d62a1;
}
.contact-switch__btn_active .contact-switch__icon {
  background: #00ccc5;
}
.contact-switch__btn_active .contact-switch__name {
  color: #ffffff;
}
.contact-switch__btn_active .contact-switch__icon-img {
  opacity: 0;
}
.contact-switch__btn_active .contact-switch__icon::before {
  opacity: 1;
}
.contact-switch__icon {
  position: relative;
  padding: 4px;
  background: #1d62a1;
  transition: background 0.3s ease;
}
.contact-switch__icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/wp-content/themes/mpgu20/assets/img/icon/dot-filled-icon.svg") center/cover no-repeat;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.contact-switch__icon-img {
  width: 48px;
  height: 48px;
  transition: opacity 0.3s ease;
}
.contact-switch__name {
  width: 100%;
  text-align: center;
  font-size: 18px;
  line-height: 20px;
  padding: 0 10px;
  transition: color 0.3s ease;
}

.contact-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.contact-block_active {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.contact-block__address {
  position: relative;
  padding: 10px 10px 10px 30px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 0;
  min-height: 100px;
}
.contact-block__address::after {
  content: "";
  width: 20px;
  background: #1d62a1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 0;
}
.contact-block__phones {
  position: relative;
  padding: 10px 10px 10px 30px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  border-top-left-radius: 0;
  border-bottom-left-radius: 10px;
  min-height: 100px;
}
.contact-block__phones::after {
  content: "";
  width: 20px;
  background: #1d62a1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 10px;
}
.contact-block__phones .contact-block__texts {
  display: inline-flex;
  flex-direction: column;
}
.contact-block__working {
  position: relative;
  padding: 10px 30px 10px 10px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 0;
  min-height: 100px;
}
.contact-block__working::after {
  content: "";
  width: 20px;
  background: #1d62a1;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 0;
}
.contact-block__emails {
  position: relative;
  padding: 10px 30px 10px 10px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  border-top-right-radius: 0;
  border-bottom-right-radius: 10px;
  min-height: 100px;
}
.contact-block__emails::after {
  content: "";
  width: 20px;
  background: #1d62a1;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 10px;
}
.contact-block__icon {
  color: #00ccc5;
  width: 24px;
  height: 24px;
}
.contact-block__title {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}
.contact-block__name {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 0 4px !important;
}
.contact-block__text {
  font-size: 16px;
  margin: 0 !important;
}
.contact-block__text:not(:last-child) {
  margin-bottom: 6px !important;
}
.contact-block__work-block {
  display: flex;
}
.contact-block__work-block .contact-block__text {
  flex: 1;
}

@media (max-width: 1200px) {
  .content-extra__button {
    font-size: 16px;
    padding: 8px;
  }
  .content-epgu__text {
    font-size: 18px;
    margin-bottom: 4px;
  }
  .content-epgu__button {
    font-size: 16px;
  }
  .news-item__title {
    font-size: 18px;
  }
  .service-button__title {
    font-size: 18px;
  }
  .service-button__description {
    font-size: 16px;
  }
  .content-contacts__blocks {
    gap: 30px;
  }
  .contact-switch {
    justify-content: space-evenly;
  }
  .contact-switch__icon-img {
    width: 36px;
    height: 36px;
  }
  .contact-switch__name {
    font-size: 16px;
    line-height: 18px;
  }
  .contact-block__name {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .content-top {
    grid-template-columns: 1fr;
  }
  .content-body {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .news-list {
    grid-template-columns: 1fr;
  }
  .service-button__title {
    font-size: 16px;
  }
  .service-button__description {
    font-size: 14px;
  }
  .contact-switch {
    gap: 20px;
  }
  .content-contacts__blocks {
    grid-template-columns: 1fr;
  }
  .contact-block__name {
    font-size: 16px;
  }
  .contact-block__text {
    font-size: 14px;
  }
  .contact-block__text:not(:last-child) {
    margin-bottom: 0px !important;
  }
  .contact-block__work-block {
    flex-direction: column;
  }
  .contact-block__work-block:not(:last-child) {
    margin-bottom: 6px;
  }
}

/*# sourceMappingURL=template-general.css.map */
