}
:root {
  --color-black: #000;
  --color-white: #fff;
  --color-dark: #000000;
  --color-text: #ffffff;
  --color-blue: #00539b;
  --color-green: #02aa60;
  --color-gray: #8db2c5;
  --color-red: #000000;
  --grad: linear-gradient(168deg, #009797 2.88%, #007171 97.91%); }

.burger {
	
  width: var(--burger-width);
  height: var(--burger-height);
  position: relative;
  color: #fff;
  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 .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: "Oswald";
  src: url("../fonts/Oswald-Bold.woff2.html") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal; }

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

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

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.woff2.html") format("woff2");
  font-weight: 700;
  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: "Roboto", sans-serif;
  background-color: var(--color-white);
  font-size: 14px;
  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; }

.sub-menu {
	background-color: black; }

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

.site-container {
  overflow: hidden;
  position: relative;
  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; }

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

.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(0, 0, 0, 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: 30px;
    height: 30px; }

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

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

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

.section-title {
  position: relative;
  font-family: "Oswald", sans-serif;
  display: inline-block;
  font-size: 36px;
  font-weight: 700;
  color: var(--color-blue); 
  letter-spacing: -0.5em;
        -webkit-transform: translateX(-30px);
                transform: translateX(-30px);
        opacity: 0;
        transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, letter-spacing 0.5s ease-in-out;
}
  .section-title span {
    color: var(--color-green); }

    .section-title._active{
      -webkit-transform: translateX(0);
      transform: translateX(0);
      opacity: 1;
      letter-spacing: 0;
    }
    /* @-webkit-keyframes tracking-in-expand-fwd {
      0% {
        letter-spacing: -0.5em;
        -webkit-transform: translateZ(-700px);
                transform: translateZ(-700px);
        opacity: 0;
      }
      40% {
        opacity: 0.6;
      }
      100% {
        -webkit-transform: translateZ(0);
                transform: translateZ(0);
        opacity: 1;
      }
    }
    @keyframes tracking-in-expand-fwd {
      0% {
        letter-spacing: -0.5em;
        -webkit-transform: translateZ(-700px);
                transform: translateZ(-700px);
        opacity: 0;
      }
      40% {
        opacity: 0.6;
      }
      100% {
        -webkit-transform: translateZ(0);
                transform: translateZ(0);
        opacity: 1;
      }
    } */
.social {
  position: relative;
  width: auto; }
  .social li {
    display: inline-block; }
    .social li:not(:last-child) {
      margin-right: 15px; }
    .social li a {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 8px;
      border-radius: 50%;
      background: var(--color-gray); }
      .social li a:hover {
        background: var(--color-green); }

.btn {
  position: relative;
  display: inline-block;
  padding: 15px 20px;
  color: #fff;
  transform: translateX(-30px);
  background: var(--color-green);
  opacity: 0;
  transition: color 0.2s ease-in-out, transform 0.5s ease-in-out, opacity 0.5s ease-in-out; }
  .btn::before{
    content: '';
    position: absolute;
    top:0; bottom: 0; right: 0;
  height: 100%; width: 100%;
  background: var(--color-blue);
  transition: width 0.2s ease-in;
    z-index: -1;
  }
  .btn:hover::before {
    width: 0;
     }
    .btn._active{
      transform: translateX(0);
    opacity: 1;
    }

.btn-go {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-gray); }
  .btn-go:before {
    content: '';
    position: absolute;
    top: 50%;
    right: -70px;
    width: 57px;
    height: 8px;
    background: url(../img/slider-arrow.png) center no-repeat;
    transform: translate(0, -50%) rotate(180deg);
    transition: transform 0.2s ease-in-out; }
  .btn-go:hover::before {
    transform: translate(10px, -50%) rotate(180deg); }

.card {
  width: 200px;
  height: 300px;
  background: #fff;
  padding: 15px 10px;
  margin: 15px; }
  .card__img {
    width: 150px;
    height: 150px;
    overflow: hidden; }
    .card__img img {
      width: 100%;
      height: 100%; }
  .card__title {
    display: block;
    padding: 15px 0;
    border-top: 1px solid var(--color-gray);
    color: var(--color-blue); }

.pagination {
  min-height: 50px; }

.page {
  position: relative;
  padding: 150px 0 50px 0;
  min-height: 100vh;
  background: #f5f5f5; }
  .page__container {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: flex-start; }
  .page__logo {
    position: absolute;
    top: -100px;
    left: 10px;
    height: 100px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    background: #fff; }
    .page__logo svg {
      width: 80%;
      height: 80%; }
  .page__content {
    position: relative;
    width: 72%;
    min-height: inherit;
    padding: 2rem 1.5rem;
    background: #fff; }
  .page__title {
    display: block;
    font-size: 24px;
    font-family: 'Oswald', sans-serif;
    margin: 30px 0;
    padding: 10px 0;
    color: var(--color-blue);
    border-bottom: 1px solid var(--color-green); }
  .page__img {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden; }
    .page__img img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    }
  .page__date {
    display: inline-block;
    padding: 10px;
    font-size: 12px;
    background: var(--color-green);
    color: #fff; }
  .page .content__inner {
    margin: 30px 0;
    line-height: 1.5;
    font-size: 14px; }
    .page .content__inner p {
      margin-bottom: 10px; }
    .page .content__inner a {
      color: var(--color-green); }

.sidebar {
  position: relative;
  width: 25%;
  min-width: 300px;
  padding: 30px;
  background: #fff;
  overflow: hidden; }
  .sidebar__title {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    font-size: 18px;
    transform: translateX(20px);
    opacity: 0;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    z-index: 5; }
    .sidebar__title::before {
      content: '';
      position: absolute;
      top: 50%;
      right: 0;
      width: 120%;
      height: 40px;
      background: var(--color-blue);
      transform: skewX(-20deg) translate(15%, -50%);
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
      z-index: -1; }
      .sidebar__title._active{
        transform: translateX(0);
    opacity: 1;
      }
      /* .sidebar__title._active::before{
        transform: skewX(-20deg) translate(15%, -50%);
        opacity: 1;
      } */
  .sidebar__nav {
    margin-bottom: 30px; }
    .sidebar__nav li {
      display: block;
      text-align: center; }
      .sidebar__nav li:not(:last-child) {
        margin-bottom: 15px; }
      .sidebar__nav li a {
        display: inline-block;
        font-size: 16px;
        transition: color 0.2s ease-in-out, transform 0.2s ease-in-out; }
        .sidebar__nav li a:hover {
          color: var(--color-green);
          transform: translateX(10px); }
  .sidebar .last-news {
    text-align: center;
    margin-bottom: 30px; }
    .sidebar .last-news li {
      position: relative;
      display: block;
      margin-bottom: 15px; }
      .sidebar .last-news li img {
        display: block;
        width: 100%;
        height: 200px;
        -o-object-fit: cover;
        object-fit: cover;
        margin-bottom: 10px; }
      .sidebar .last-news li a {
        font-size: 14px;
        transition: color 0.2s ease-in-out, transform 0.2s ease-in-out; }
        .sidebar .last-news li a:hover {
          color: var(--color-green);
          text-decoration: underline; }
  .sidebar__module {
    position: relative;
    text-align: center; }
    .sidebar__module a {
      display: block;
      width: 100%;
      height: 250px;
      margin-bottom: 10px;
      border: 1px solid transparent; }
      .sidebar__module a:hover {
        border: 1px solid var(--color-biruza); }
      .sidebar__module a img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover; }

.all-news__inner {
  position: relative;
  margin: 20px 0; }
  .all-news__inner li {
    position: relative;
    display: flex;
    align-items: flex-start;
    background: #f5f5f5;
    padding: 1.5rem 2rem;
    min-height: 250px;
    margin-bottom: 2rem; }

.all-news__img {
  position: relative;
  width: 200px;
  height: 200px;
  overflow: hidden;
  margin-right: 20px; }
  .all-news__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover; }

.all-news__text {
  width: 70%;
  min-height: 200px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }
  .all-news__text h4 {
    display: block;
    font-size: 18px;
    margin-bottom: 18px; }
  .all-news__text .desc {
    color: #777;
    font-size: 12px;
    line-height: 150%;
    height: 70px; }
  .all-news__text a.btn {
    display: inline-block;
    margin-top: auto;
    align-self: flex-start; }

.page-contacts {
  position: relative; }
  .page-contacts .page__content {
    position: relative; }
  .page-contacts__info {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 120px;
    min-height: 400px; }
    .page-contacts__info img {
      position: absolute;
      top: 0;
      right: 0;
      display: block;
      width: 500px;
      height: 400px; }
    .page-contacts__info-text {
      width: 60%;
      position: relative;
      margin-top: 40px;
      padding: 1.5rem 2rem;
      background: white;
      z-index: 5; }
      .page-contacts__info-text h3 {
        display: block;
        font-size: 18px;
        margin-bottom: 24px;
        line-height: 150%;
        color: var(--color-blue); }
        .page-contacts__info-text h3 span {
          font-size: 20px;
          color: var(--color-green); }
      .page-contacts__info-text .adress {
        display: flex;
        align-items: center;
        color: var(--color-gray);
        font-size: 14px;
        margin-bottom: 15px;
        line-height: 150%; }
        .page-contacts__info-text .adress svg {
          width: 20px;
          height: 20px;
          fill: var(--color-green);
          margin-right: 10px; }
        .page-contacts__info-text .adress p {
          width: 80%;
          flex-grow: 1; }
      .page-contacts__info-text .email {
        display: flex;
        align-items: center;
        color: var(--color-gray);
        font-size: 14px;
        margin-bottom: 15px; }
        .page-contacts__info-text .email svg {
          width: 20px;
          height: 20px;
          fill: var(--color-green);
          margin-right: 10px; }
        .page-contacts__info-text .email a {
          margin: 0;
          color: var(--color-blue); }
    .page-contacts__info .phone {
      display: flex;
      align-items: center;
      color: var(--color-gray);
      font-size: 14px;
      margin-bottom: 15px; }
      .page-contacts__info .phone svg {
        width: 20px;
        height: 20px;
        fill: var(--color-green);
        margin-right: 10px; }
      .page-contacts__info .phone a {
        margin: 0;
        color: var(--color-blue);
        font-size: 16px;
        text-transform: uppercase; }
  .page-contacts .contacts__form {
    position: relative; 
    text-align: center;
  }
    .page-contacts .contacts__form h4 {
      display: block;
      text-align: center;
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 20px; }
    .page-contacts .contacts__form .form {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      width: 100%; }
      .page-contacts .contacts__form .form label {
        display: block;
        margin-bottom: 15px;
        width: 80%; }
        .page-contacts .contacts__form .form label span {
          display: block;
          font-size: 12px;
          color: var(--color-gray); }
        .page-contacts .contacts__form .form label input {
          display: block;
          width: 100%;
          padding: 5px;
          background: #fff;
          border: none;
          border-bottom: 1px solid var(--color-gray);
          outline: none; }
          .page-contacts .contacts__form .form label input:focus {
            border-bottom: 1px solid var(--color-green); }
      .page-contacts .contacts__form .form .textarea {
        display: block;
        width: 80%;
        height: 200px;
        resize: none;
        padding: 5px;
        background: #fff;
        border-bottom: 1px solid var(--color-gray);
        outline: none; }
      .page-contacts .contacts__form .form .submit {
        margin-top: 20px;
        border: none;
        outline: none;
        cursor: pointer; }
        .page-contacts .wpforms-field input.wpforms-field-medium{
          margin: 0 auto;
        }
        .page-contacts .wpforms-submit-container .wpforms-submit{
          background: var(--color-blue);
          color: #fff;
        }
        .page-contacts .wpforms-submit-container .wpforms-submit:hover{
          background: var(--color-green);
        }

.page-products {
  position: relative; }
  .page-products__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px 0; }
  .page-products__item {
    position: relative;
    width: 30%;
    margin: 10px;
    text-align: center;
    border: 1px solid #f5f5f5; }
    .page-products__item .card__img{
      width: 100%;
    }
    .page-products__item .card__img img{
      width: 100%;
    }
.page-vacancy {
  position: relative; }
  .page-vacancy__list {
    margin: 20px 0; }
  .page-vacancy__item {
    position: relative;
    display: block;
    padding: 1.5rem 2rem;
    margin-bottom: 20px;
    border: 1px solid #f5f5f5; }
    .page-vacancy__item span.date {
      font-size: 12px;
      color: var(--color-gray); }
    .page-vacancy__item a {
      display: block;
      line-height: 150%;
      font-size: 18px;
      transition: color 0.2s ease-in-out; }
      .page-vacancy__item a:hover {
        color: var(--color-green); }

.nav {
  position: relative;
  width: auto;
  flex-grow: 1; }
  .nav ul.nav-list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end; }
    .nav ul.nav-list .menu-item {
      position: relative;
      display: inline-block; }
      .nav ul.nav-list .menu-item:not(:last-child) {
        margin-right: 40px; }
      .nav ul.nav-list .menu-item a {
        display: inline-block;
        padding: 10px 0 10px 0;
        font-size: 16px;
        font-weight: 700;
        font-family: "Oswald", sans-serif;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #fff;
        border-bottom: 1px solid transparent;
        transition: opacity 0.2s; }
        .nav ul.nav-list .menu-item a:hover {
          opacity: 0.7; }
      .nav ul.nav-list .menu-item.menu-item-has-children {
        position: relative; }
        .nav ul.nav-list .menu-item.menu-item-has-children::before {
          content: '';
          position: absolute;
          top: 50%;
          right: -15px;
          width: 11px;
          height: 7px;
          background: url(../img/arrow-down.png) center no-repeat;
          transform: translateY(-50%); }
        .nav ul.nav-list .menu-item.menu-item-has-children:hover::before {
          content: none; }
        .nav ul.nav-list .menu-item.menu-item-has-children ul.sub-menu {
          position: absolute;
          top: calc(100% + 0px);
          left: 0;
          width: 500%;
          height: auto;
          padding: 10px;
          padding-top: 20px;
          background: var(--color-green);
          transform: translateY(20px);
          opacity: 0;
          visibility: hidden;
          transition: transform 0.4s, opacity 0.4s; }
          .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 a {
              display: block;
              padding: 5px;
              margin-bottom: 10px;
              font-size: 14px;
              text-transform: none;
              letter-spacing: 0px;
              color: #000;
              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); }
        .nav ul.nav-list .menu-item.menu-item-has-children:hover ul.sub-menu {
          transform: translateY(0px);
          opacity: 1;
          visibility: visible;
          z-index: 100; }

.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: 80%;
    height: 70%;
    background: #fff;
    padding: 30px 20px;
    opacity: 0;
    transform: translateY(-20%);
    transition: transform 0.5s; }
    .popup__container video {
      width: 100%;
      height: 100%; }
  .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); }

.accordion {
  width: 1000px; }
  .accordion__item {
    position: relative;
    margin: 10px 20px; }
    .accordion__item .label {
      position: relative;
      padding: 10px;
      background: #2694af;
      color: #fff;
      cursor: pointer; }
      .accordion__item .label::before {
        content: '+';
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        font-size: 1.5em; }
    .accordion__item .content {
      position: relative;
      background: #fff;
      height: 0;
      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; }

      /* under styles */
      .site-main{
        min-height: 100vh;
        padding: 100px 0;
      }
      .mb-15{
        margin-bottom: 15px;
      }
      .mb-30{
        margin-bottom: 30px;
      }
      .error-404{
        position: relative;
      }
      .error-404:before{
        content: '404';
        position: absolute;
        top: 100px;
        right: 0;
        width: 50%;
        height: 50%;
        font-size: 200px;
        font-weight: 700;
        color: var(--color-gray);
        opacity: 0.2;
      }
      .blue{
        color: var(--color-blue);
      }
      .entry-title:hover{
        color: var(--color-green);
      }