:root {
  --color-black: #000;
  --color-white: #fff;
  --color-dark: #0A5CFE;
  --color-gray: #e8f1f7;
  --color-text: #454240;
  --color-title: #3B3D62;
  --color-blue: #4ACDFA;
  --color-yellow: #F28E02;
  --color-green: #0A5CFE;
  --color-purple: #5D50C6;
  --color-red: #FA1504;
  --borderWidth: 1px;
  --trans: all 0.2s ease-in-out;
  --grad: linear-gradient(90deg, #00abaa 2.88%,#00D6CA 97.91%); }

.burger {
  width: var(--burger-width);
  height: var(--burger-height);
  position: relative;
  color: var(--color-dark);
  cursor: pointer; }
  .burger__line {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: var(--burger-line-height);
    background-color: currentColor;
    transition: transform 0.3s ease-in-out; }
  .burger::before, .burger::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: var(--burger-line-height);
    background-color: currentColor;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out; }
  .burger::before {
    top: 0; }
  .burger::after {
    top: calc(100% - var(--burger-line-height)); }
    .burger.burger--active{
      color: #fff;
    }
  .burger.burger--active .burger__line {
    transform: scale(0);
    transition: transform 0.3s ease-in-out; }
  .burger.burger--active::before {
    transform: rotate(45deg);
    top: 50%;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out; }
  .burger.burger--active::after {
    transform: rotate(-45deg);
    top: 50%;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out; }

@font-face {
  font-family: "Nunito";
  src: url("../fonts/../fonts/Nunito-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal; }

 

  

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal; }

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal; }

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-Black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
  font-style: normal; }


  @font-face {
    font-family: "FuturaNew";
    src: url("../fonts/../fonts/FuturaNewBold-Reg.woff2") format("woff2");
    font-weight: 700;
    font-display: swap;
    font-style: normal; }

    @font-face {
      font-family: "FuturaNew";
      src: url("../fonts/../fonts/FuturaNewMedium-Reg.woff2") format("woff2");
      font-weight: 400;
      font-display: swap;
      font-style: normal; }

      @font-face {
        font-family: "FuturaNew";
        src: url("../fonts/../fonts/FuturaNewLight-Reg.woff2") format("woff2");
        font-weight: 300;
        font-display: swap;
        font-style: normal; }

html {
  box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: "FuturaNew", sans-serif;
  /* background-color: var(--color-white); */
  background: url(../img/main-bg.png) center no-repeat;
  background-size: cover;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text); }
  body.lock {
    overflow: hidden; }

img {
  max-width: 100%; }

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

ul {
  list-style: none;
  padding: 0; }

.is-outer {
  position: relative !important;
  left: -9999px !important; }

.site-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto; }

.is-hidden {
  display: none !important; }

.for-mobile {
  display: none; }
  @media (max-width: 768px) {
    .for-mobile {
      display: block; } }

.error {
  border: 2px #ff4019 solid !important; }

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

.container {
  margin: 0 auto;
  padding: 0 10px;
  width: 100%;
  max-width: 1280px; }

.js-focus-visible :focus:not(.focus-visible) {
  outline: none; }

.scroll-to-top {
  position: fixed;
  right: 50px;
  bottom: 50px;
  width: 50px;
  height: 50px;
  background-color: rgba(1, 40, 104, 0.344);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 350ms; }

.scroll-to-top svg.to-top {
  display: inline-block;
  fill: #fff;
  width: 40px;
  height: 40px; }

.scroll-to-top.show {
  opacity: 0.7;
  display: flex;
  justify-content: center;
  align-items: center; }
  .scroll-to-top.show svg.to-top {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    fill: #fff;
    width: 20px;
    height: 20px; }

.scroll-to-top:hover {
  background-color: var(--color-biruza);
  opacity: 1;
  cursor: pointer; }
  .scroll-to-top:hover svg.to-top {
    fill: var(--color-yellow); }

.main-title {
  margin: 0;
  font-size: 56px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  text-shadow: 0 2px 0 0px #ffffff, 0 3px 2px 0px rgba(255, 255, 255, 0.8);
  margin-bottom: 5px; }
  .main-title span {
    color: var(--color-red);
    font-weight: 700; }

.p-50 {
  padding: 50px 0; }

.svg-icon {
  width: 20px;
  height: 20px; }

.section-title {
  position: relative;
  display: inline-block;
  font-size: 44px;
  padding: 1rem 0;
  color: var(--color-green); }
  .section-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 3px;
    background: var(--color-red); }

.social {
  position: relative;
  display: inline-flex;
  align-items: center; }
  .social li {
    display: inline-block; }
    .social li:not(:last-child) {
      margin-right: 10px; }
    .social li a {
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      background: var(--color-green);
      padding: 12px; }
      .social li a svg {
        fill: #fff;
        width: 12px;
        height: 12px;
        transition: fill 0.2s ease-in-out; }
      .social li a:hover {
        background: var(--color-blue); }
        .social li a:hover svg {
          transform: rotate(10deg); }

.btn {
  display: inline-block;
  padding: 20px 30px;
  color: #fff;
  background: var(--color-green);
  background-size: 300% auto;
  transition: .5s; }

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

.btn-2 {
  display: inline-block;
  padding: 12px 24px;
  color: #fff;
  /* text-transform: uppercase; */
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 30px;
  text-align: center;
  background: transparent;
  background: var(--color-yellow);
  transition: all .5s; }

.btn-2:hover {
  color: #fff;
  background: var(--color-blue);
}

.archive-link {
  position: relative;
  color: #fff;
  background: var(--color-yellow);
  padding: 1rem;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
 }
  .archive-link svg {
    display: none;
    margin-right: 8px;
    transform: translate(-3px, 1px);
    transition: all 0.3s ease-in-out; }
  .archive-link:hover {
    color: #fff;
    background: var(--color-blue); }
   

.page {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg,rgba(255, 255, 255, 0.9),rgba(255, 255, 255, 0.7)),  url(../img/main-bg.jpg);
 }
  .page__container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #fff;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.08), 0 2px 10px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.08), 0 2px 10px 0 rgba(0, 0, 0, 0.06);
    padding: 3rem 2rem; }
  .page__main {
    position: relative;
    width: 70%;
    min-height: 100vh; }
    .page__main-full {
      width: 100%; 
    }
    .page__main .content p {
      line-height: 150%;
      margin-bottom: 10px; 
      
    }
    .page__main .content h1, .page__main .content h2, .page__main .content h3, .page__main .content h4, .page__main .content h5 {
      color: #111;
      margin-bottom: 5px; }
    .page__main .content a {
      color: var(--color-dark); }
.page__main .content .wp-block-video{
	margin: 0 auto;
	max-width:50%;
}
  .page-title-block {
    margin-bottom: 30px;
    padding: 1rem 0;
    text-align: center;
    background: var(--color-gray); }
    .page-title-block span.page__date {
      color: var(--color-text);
      font-weight: 300;
      font-size: 14px;
      margin-bottom: 0.5rem; }
    .page-title-block h2.page__title {
      font-size: 36px;
      font-weight: 400;
      color: var(--color-text); }
  .page__thumb {
    position: relative;
    width: 50%;
    height: auto;
    margin: 0 auto;
    margin-bottom: 30px; }
    .page__thumb img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover; }
  .page .best-prof {
    padding: 20px;
    background: #f5f5f5; }
    .page .best-prof h3 {
      display: block;
      margin-bottom: 10px;
      font-size: 18px;
      text-transform: uppercase; }
    .page .best-prof .best__slider {
      position: relative;
      width: 100%;
      height: 200px;
      overflow: hidden; }
      .page .best-prof .best__slider-slide img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover; }
      .page .best-prof .best__slider .best-prev::after,
      .page .best-prof .best__slider .best-next::after {
        color: #fff; }

.sidebar {
  position: relative;
  padding: px;
  width: 25%;
  max-width: 350px;
  min-height: 100vh; 
}
  .sidebar__title {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 400;
    display: block;
    padding: 10px 0;
    text-align: center;
    color: #fff;
    border-radius: 30px;
    background: var(--color-dark);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--color-green); }
  .sidebar__news {
    background: var(--color-gray);
    padding: 1.5rem; }
  .sidebar__list {
    position: relative; }
    .sidebar__list li {
      display: block;
      height: auto;
      margin-bottom: 15px;
      text-align: center;
      padding: 0.5rem;
     
       }
       .sidebar__list li .cover{
        width: 100%;
        height: 150px;
        overflow: hidden;
        border: 1px solid #fff;
        margin-bottom: 8px;
       }
       .sidebar__list li .cover img{
        width: 100%;
        height: 100%;
        object-fit: cover;
       }
      .sidebar__list li h5 a {
        color: var(--color-dark);
        font-size: 16px;
        font-weight: 400;
        opacity: 0.7;
        transition: opacity 0.2s ease-in-out; }
        .sidebar__list li h5 a:hover {
          opacity: 1; }
  .sidebar .banners {
    margin-bottom: 2rem; }
    .sidebar .banners a {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      width: 100%;
      height: 350px;
      margin-bottom: 1rem; }
      .sidebar .banners a svg {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
        fill: #fff;
        stroke: #fff; }
      .sidebar .banners a .banners__title {
        position: relative;
        display: block;
        text-align: center;
        font-size: 24px;
        font-weight: 400;
        color: #fff;
        font-family: "Exo2", sans-serif;
        transition: color 0.3s ease-in;
        z-index: 5; }
      .sidebar .banners a.banner-1 {
        position: relative;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        transition: all 0.3s ease-in; }
        .sidebar .banners a.banner-1 img {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
        .sidebar .banners a.banner-1 .banners__title {
          display: block;
          text-align: center;
          width: 100%;
          color: #fff;
          padding: 10px 15px;
          background: var(--color-green);
         }
        .sidebar .banners a.banner-1:hover {
          background: linear-gradient(to bottom, #8bc152fa, #8bc152be), url(assets/img/boss.jpg) center no-repeat;
        background-size: cover;
          background-size: cover; }
          .sidebar .banners a.banner-1 img {
            display: inline-block;
            margin-bottom: 2rem;
           }
          /* .sidebar .banners a.banner-1:hover .banners__title {
            color: var(--color-red); } */
      .sidebar .banners a.banner-2 {
        background: linear-gradient(to right, #1EAAF1, #1eabf1ce), url(https://na-dache.pro/uploads/posts/2022-02/1644113126_64-na-dache-pro-p-gruppa-detskogo-sada-foto-68.jpg) center no-repeat;
        transition: all 0.3s ease-in; }
        .sidebar .banners a.banner-2 img {
          display: inline-block;
          margin-bottom: 2rem;
         }
        .sidebar .banners a.banner-2 .banners__title {
          color: #fff; }
        .sidebar .banners a.banner-2:hover {
          background: linear-gradient(to right, #1EAAF1, #1eabf1), url(https://na-dache.pro/uploads/posts/2022-02/1644113126_64-na-dache-pro-p-gruppa-detskogo-sada-foto-68.jpg) center no-repeat;
          background-size: cover; }
      
          .sidebar .banners a.banner-2:hover .banners__title {
            color: #fff; }

.all-news-content {
  position: relative;
  width: 100%; }
  .all-news-content__box {
    margin-bottom: 70px;
    min-height: 700px; }
    .all-news-content__box .pag {
      text-align: center; }
  .all-news-content__list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px; }
    .all-news-content__list li {
      position: relative;
      width: 30%;
      min-height: 430px;
      /* display: flex;
      justify-content: flex-start;
      align-items: center;
      flex-direction: column; */
      /* min-height: 200px; */
      box-shadow: 0px 5px 10px 2px rgba(219, 225, 231, 0.4);
      margin: 20px; }
      .all-news-content__list li .date {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: auto;
        height: auto;
        padding: 5px;
        color: var(--color-title);
        background: var(--color-yellow);
         }
      .all-news-content__list li .thumb {
        position: relative;
        width: 100%;
        height: 260px; }
        .all-news-content__list li .thumb img {
          display: block;
          width: 100%;
          height: 100%;
          -o-object-fit: cover;
          object-fit: cover; }
      .all-news-content__list li .content {
        position: relative;
        flex-grow: 1;
        padding: 10px; }
        .all-news-content__list li .content h5 {
          display: block;
           }
          .all-news-content__list li .content h5 a {
            display: block;
            font-size: 18px;
            text-align: center;
            color: var(--color-title);
            font-weight: 400;
            transition: color 0.2s ease-in-out; }
            .all-news-content__list li .content h5 a:hover {
              color: var(--color-dark); }
       

.team-content {
  position: relative;
  width: 100%; }
  .team-content__box {
    display: block;
    margin-top: 40px;
    margin-bottom: 70px;
    min-height: 700px; }
    .team-content__box .pag {
      text-align: center; }
  .team-content__list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px; }
    .team-content__list li {
      position: relative;
      margin: 10px;
      width: 280px;
      min-height: 410px;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      flex-direction: column;
      box-shadow: 0px 5px 10px 2px rgba(219, 225, 231, 0.4);
      margin-bottom: 1rem; }
      .team-content__list li .photo {
        position: relative;
        width: 100%;
        height: 300px;
       
      }
        .team-content__list li .photo img {
          display: block;
          width: 100%;
          height: 100%;
          -o-object-fit: cover;
          object-fit: cover; }
      .team-content__list li .information {
        position: relative;
        padding: 1rem 0.5rem;
        text-align: center;
        flex-grow: 1;
        height: calc(100% - 300px);
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        flex-direction: column;
        background: var(--color-blue); }
        .team-content__list li .information span.pos {
          min-height: 40px;
          display: block;
          font-size: 14px;
          font-weight: 300;
          line-height: 130%;
          font-family: "Exo2", sans-serif;
          color: #fff;
          opacity: 0.7; }
        .team-content__list li .information h4.name {
          height: auto;
          display: block;
          font-size: 18px;
          margin-bottom: 5px;
          text-transform: uppercase;
          color: #fff; }
          .team-content__list li .information h4.name:hover {
            opacity: 0.7; }

.team-single {
  position: relative;
  min-height: 350px;
  margin-bottom: 40px; }
  .team-single .team-content__box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; }
  .team-single__photo {
    position: relative;
    width: 400px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-right: 1rem;
    margin-bottom: 1rem;
    text-align: center; }
    .team-single__photo::before, .team-single__photo::after {
      content: '';
      position: absolute;
      width: 100px;
      height: 100px;
      background: var(--color-gray); }
    .team-single__photo::before {
      top: -15px;
      left: -10px; }
    .team-single__photo::after {
      bottom: -15px;
      right: -10px; }
    .team-single__photo img {
      position: relative;
      display: block;
      width: 340px;
      height: 400px;
      -o-object-fit: cover;
      object-fit: cover;
      z-index: 5; }
    .team-single__photo .phone {
      width: 340px;
      padding: 1rem;
      background: var(--color-dark);
      color: #fff;
      text-align: center;
      z-index: 10; }
      .team-single__photo .phone span {
        display: block;
        margin-bottom: 5px;
        font-weight: 300;
        font-family: "Exo2", sans-serif;
        opacity: 0.7; }
      .team-single__photo .phone a {
        display: block;
        text-align: center;
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        transition: color 0.3s ease-in-out; }
        .team-single__photo .phone a:hover {
          color: var(--color-yellow); }
  .team-single__info {
    position: relative;
    width: 70%;
    flex-grow: 1; }
    .team-single__info .tabs {
      display: flex;
      flex-wrap: wrap; }
    .team-single__info .tabs label {
      order: 1;
      display: block;
      padding: 1rem 2rem;
      margin-right: 0.2rem;
      cursor: pointer;
      background: var(--color-dark);
      font-weight: bold;
      color: #fff;
      transition: background ease 0.2s; }
    .team-single__info .tabs .tab {
      order: 99;
      flex-grow: 1;
      width: 100%;
      display: none;
      padding: 1rem;
      background: #fff;
      color: #000;
      line-height: 150%; }
    .team-single__info .tabs input[type="radio"] {
      display: none; }
    .team-single__info .tabs input[type="radio"]:checked + label {
      color: var(--color-dark);
      background: #fff; }
    .team-single__info .tabs input[type="radio"]:checked + label + .tab {
      display: block; }
    @media (max-width: 45em) {
      .team-single__info .tabs .tab,
      .team-single__info .tabs label {
        order: initial; }
      .team-single__info .tabs label {
        width: 100%;
        margin-right: 0;
        margin-top: 0.2rem; } }

.contacts {
  position: relative; }
  .contacts__content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
   }
  .contacts__info {
    position: relative;
    width: 50%;
    padding: 2rem;
    background: var(--color-blue);
    color: #fff;
    box-shadow: 0px 5px 10px 2px rgba(219, 225, 231, 0.4); }
    .contacts__info svg {
      fill: #fff; }
    .contacts__info h3 {
      display: block;
      font-size: 24px;
      text-transform: uppercase;
      line-height: 130%;
      margin-bottom: 3rem; }
    .contacts__info-row {
      position: relative;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      margin-bottom: 1.5rem; }
      .contacts__info-row svg {
        margin-right: 1rem;
        width: 40px;
        height: 40px;
        fill: #fff; }
      .contacts__info-row .text {
        font-family: "Exo2", sans-serif; }
        .contacts__info-row .text span {
          display: block; }
          .contacts__info-row .text span.bold {
            font-weight: 700;
            margin-bottom: 5px; }
  .contacts__form {
    position: relative;
    width: 50%;
    padding: 2rem; }
    .contacts__form h4 {
      display: block;
      font-size: 24px;
      text-align: center;
      color: var(--color-blue);
      margin-bottom: 10px; }
    .contacts__form p {
      line-height: 130%;
      font-weight: 300;
      margin-bottom: 2rem;
      text-align: center; }
    .contacts__form .contacts-form {
      position: relative;
      width: 100%; }
    .contacts__form-input {
      display: block;
      width: 100%;
      padding: 1rem;
      background: var(--color-gray);
      border: none;
      outline: none;
      margin-bottom: 1rem; }
    .contacts__form-message {
      display: block;
      width: 100%;
      height: 200px;
      padding: 1rem;
      background: var(--color-gray);
      border: none;
      outline: none;
      resize: none;
      margin-bottom: 2rem; }
    .contacts__form button {
      display: block;
      width: 100%;
      text-align: center;
      outline: none;
      border: none; }
  .contacts__map {
    position: relative;
    margin-top: 40px; }
    .contacts__map h4 {
      display: block;
      text-align: center;
      font-size: 32px;
      padding: 1rem 0; }

      /* blog */
      .blog__info{
        position: relative;
        width: 40%;
        text-align: center;
      }
      .blog__info .photo{
        position: relative;
        width: 80%;
        height: 450px;
        margin: 0 auto; 
        margin-bottom: 1rem;
        overflow: hidden;
      }
      .blog__info .photo img{
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .blog__info h3{
        display: block;
        margin-bottom: 0.5rem;
        text-transform: uppercase;
        color: var(--color-text);
        font-size: 18px;
      }
      .blog__info-text{
        line-height: 150%;
        opacity: 0.8;
        font-style: italic;
      }
      .blog__faq{
        margin-top: 40px;
        padding: 1rem;
        background: var(--color-gray);
      }
      .blog__faq h2.section-title{
        text-align: center;
        justify-content: center;
      }
.departments {
  position: relative;
  margin-top: 30px; }
  .departments .tabs {
    display: flex;
    flex-wrap: wrap; }
  .departments .tabs label {
    order: 1;
    display: block;
    padding: 1rem 2rem;
    margin-right: 0.2rem;
    cursor: pointer;
    background: var(--color-dark);
    font-weight: bold;
    color: #fff;
    transition: background ease 0.2s; }
  .departments .tabs .tab {
    order: 99;
    flex-grow: 1;
    width: 100%;
    display: none;
    padding: 1rem;
    background: #fff;
    color: #000;
    line-height: 150%; }
    .departments .tabs .tab a.departments__link {
      display: block;
      text-align: center;
      padding: 0.5rem 0;
      color: var(--color-text);
      font-size: 18px; }
      .departments .tabs .tab a.departments__link:hover {
        color: var(--color-dark);
        background: var(--color-gray); }
  .departments .tabs input[type="radio"] {
    display: none; }
  .departments .tabs input[type="radio"]:checked + label {
    color: var(--color-dark);
    background: #fff; }
  .departments .tabs input[type="radio"]:checked + label + .tab {
    display: block; }
  @media (max-width: 45em) {
    .departments .tabs .tab,
    .departments .tabs label {
      order: initial; }
    .departments .tabs label {
      width: 100%;
      margin-right: 0;
      margin-top: 0.2rem; } }

.departments-single {
  margin-top: 40px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start; }
  .departments-single .information {
    position: relative;
    width: 30%;
    max-width: 300px;
    margin-right: 2rem;
    background: var(--color-gray);
    padding: 1rem; }
    .departments-single .information .photo {
      position: relative;
      width: 100%;
      height: 300px;
      overflow: hidden;
      margin-bottom: 2rem; }
      .departments-single .information .photo img {
        display: block;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover; }
    .departments-single .information .contacts {
      position: relative;
      background: var(--color-dark);
      color: #fff;
      padding: 1rem; }
      .departments-single .information .contacts h3 {
        display: block;
        text-align: center;
        font-size: 18px;
        margin-bottom: 1rem; }
      .departments-single .information .contacts .row {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 0.5rem; }
        .departments-single .information .contacts .row span.bold {
          width: auto;
          display: inline-block;
          font-weight: 700;
          font-size: 14px;
          color: var(--color-yellow);
          margin-bottom: 5px; }
        .departments-single .information .contacts .row p {
          line-height: 150%;
          text-align: center; }
  .departments-single .text {
    position: relative;
    width: 65%;
    flex-grow: 1; }

.nav {
  z-index: 100;
  width: 100%; }
  .nav ul.nav-list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start; }
    .nav ul.nav-list .menu-item {
      position: relative;
      display: inline-block; }
      .nav ul.nav-list .menu-item:not(:last-child) {
        margin-right: 10px; }
      .nav ul.nav-list .menu-item a {
        display: inline-block;
        padding: 1.5rem 1rem;
        color: #fff;
        border-bottom: 1px solid transparent;
        transition: background 0.2s ease-in-out; }
        .nav ul.nav-list .menu-item a:hover {
          /*background: var(--color-blue); */
          color: #fff;
        }
      .nav ul.nav-list .menu-item.menu-item-has-children {
        position: relative; }
        .nav ul.nav-list .menu-item.menu-item-has-children ul.sub-menu {
          position: absolute;
          top: 100%;
          left: 0;
          width: 250%;
          height: auto;
          padding: 10px;
          background: var(--color-green);
          opacity: 0;
          visibility: hidden;
          transition: transform 0.2s, opacity 0.25s; }
          .nav ul.nav-list .menu-item.menu-item-has-children ul.sub-menu li.menu-item {
            display: block; }
            .nav ul.nav-list .menu-item.menu-item-has-children ul.sub-menu li.menu-item:not(:last-child){
              border-bottom: 1px solid rgba(255, 255, 255, 0.339);
              margin-bottom: 12px;
            }
            .nav ul.nav-list .menu-item.menu-item-has-children ul.sub-menu li.menu-item a {
              display: block;
              padding: 0.5rem;
             
              font-size: 14px;
              color: #fff;
              opacity: 0.8;
              transition: transform 0.2s; }
              .nav ul.nav-list .menu-item.menu-item-has-children ul.sub-menu li.menu-item a:hover {
                transform: translateX(3px); 
                opacity: 1;
              }
        .nav ul.nav-list .menu-item.menu-item-has-children:hover ul.sub-menu {
          opacity: 1;
          visibility: visible; }

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.767);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s;
  z-index: 999; }
  .popup__container {
    position: relative;
    width: 500px;
    height: auto;
    min-height: 400px;
    background: #fff;
    padding: 2.5rem 1.5rem;
    opacity: 0;
    transform: translateY(-20%);
    transition: transform 0.5s; }
    .popup__container:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0.893), rgba(255, 255, 255, 0.351)), url(../img/form-bg.jpg) center no-repeat;
      background-size: cover; }
    .popup__container h3 {
      position: relative;
      display: block;
      margin-bottom: 1.5rem;
      text-align: center;
      color: var(--color-dark); }
    .popup__container p {
      font-size: inherit;
      line-height: 1.3; }
  .popup.popup-open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s; }
    .popup.popup-open .popup__container {
      opacity: 1;
      transform: translateY(0); }
  .popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    transition: transform 0.2s; }
    .popup-close:before, .popup-close:after {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      height: 1px;
      background: #111; }
    .popup-close:before {
      transform: rotate(45deg); }
    .popup-close:after {
      transform: rotate(-45deg); }
    .popup-close:hover {
      transform: scale(1.1); }
  .popup__form {
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: center; }
    .popup__form .form__row {
      margin-bottom: 1rem; }
    .popup__form input {
      position: relative;
      display: block;
      padding: 1rem;
      width: 100%;
      outline: none;
      background: var(--color-gray);
      border: none;
      text-align: center; }
      .popup__form input::-moz-placeholder {
        font-weight: 700; }
      .popup__form input:-ms-input-placeholder {
        font-weight: 700; }
      .popup__form input::placeholder {
        font-weight: 700; }
      .popup__form input:focus {
        border: 1px solid var(--color-dark); }
    .popup__form textarea {
      position: relative;
      display: block;
      padding: 1rem;
      width: 100%;
      outline: none;
      resize: none;
      background: var(--color-gray);
      border: none;
      height: 200px;
      overflow-y: auto;
      text-align: center; }
      .popup__form textarea::-moz-placeholder {
        font-weight: 700; }
      .popup__form textarea:-ms-input-placeholder {
        font-weight: 700; }
      .popup__form textarea::placeholder {
        font-weight: 700; }
      .popup__form textarea:focus {
        border: 1px solid var(--color-dark); }
    .popup__form button {
      outline: none;
      border: none;
      cursor: pointer; }

.accordion {
  width: 100%; }
  .accordion__item {
    position: relative;
    margin: 10px 20px; }
    .accordion__item .label {
      position: relative;
      padding: 1.5rem;
      padding-right: 2rem;
      border-radius: 30px;
      background: var(--color-blue);
      color: #fff;
      transition: background 0.2s ease-in-out;
      cursor: pointer; }
      .accordion__item .label::before {
        content: '+';
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        font-size: 1.5em; }
      .accordion__item .label:hover {
        background: var(--color-green); }
    .accordion__item .content {
      position: relative;
      background: var(--color-gray);
      height: 0;
      border-radius: 30px;
      
      overflow: hidden;
      opacity: 0;
      transition: height 0.5s;
      overflow-y: auto; }
    .accordion__item.active .label::before {
      content: '-'; }
    .accordion__item.active .content {
      height: 150px;
      padding: 10px;
      opacity: 1; }
/* docs */
.docs{
  position: relative;
}
.docs__container{
  position: relative;
  min-height: 80vh;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.docs__list{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.docs__item{
  position: relative;
  flex-basis: 30%;
  margin: 0 1rem;
  margin-bottom: 30px;
  padding: 10px;
  border: 1px solid #e4e4e4;
  display: flex;
  justify-content: center;
  align-items: center;
 
}
.docs__info{
  width: 80px;
  height: auto;
  padding-left: 10px;
  padding-right: 10px;
  border-right: 1px solid #e4e4e4;
}
.docs__content{
  position: relative;
  flex-grow: 1;
  padding: 0 10px;
}
.docs__item-icon{
  position: relative;
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
.docs__item-date{
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--color-text);
}
.docs__item-date b{
  font-weight: 400;
  margin-right: 4px;
}
.docs__item-title{
  min-height: 70px;
  flex-grow: 1;
  display: block;
  font-size: 16px;
  color: var(--color-dark);
  font-weight: 700;
}
.docs__btn{
  font-size: 14px;
  display: block;
  color: var(--color-green);
}
.docs__btn:hover{
  color: var(--color-red);
}
/* ============================ */

/* vacancy */
.vacancy{
  position: relative;
}
.vacancy .docs__item{
  flex-basis: 80%;
}
/* стили редактора */
.page-full__content h1,h2,h3,h4,h5,h6{
	padding: 1rem 0;
}
.page-full__content p,li{
	margin-bottom: 10px;
}

/* .vacancy .accordion__item .content{
  text-align: left;
  background: transparent;
}
.vacancy .accordion__item .content p{
  color: var(--color-text);
  text-align: left;
  line-height: 150%;
}
.vacancy .accordion__item .label{
  color: var(--color-title);
  border: 1px solid var(--color-green);
  background: transparent;
}
.vacancy .accordion__item .label:hover{
  color: #fff;
  background: var(--color-green);
} */
/* ================================= */
/*# sourceMappingURL=global.css.map */
