:root {
  --color-black: #000;
  --color-white: #fff;
  --color-red:#fd3838;
  --color-orange: #f0801c; }

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

html {
  box-sizing: border-box; }

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

body{


  position: relative;
  margin: 0;
  font-family: "Muller", sans-serif;
  background-color: var(--color-white);
  color: #4f5e62;
  font-size: 14px;
  line-height: 1.6em;
  background: url(../img/bg_middle.jpg) center 735px repeat-y #bdeeeb; }
  body:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 735px;
    background: url(../img/bg_header.jpg) center no-repeat;
    margin: 0 auto; }

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 {
  position: relative;
  height: 100%;
  overflow: hidden; }

.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; }

.main {
  position: relative;
  background: #fcfcfc;
  height: 100%; }

.container {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1170px; }
  .container-full {
    max-width: 1920px; }

.w-1200 {
  max-width: 1200px;
  margin: 0 auto; }

.pt80 {
  padding-top: 80px; }

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

.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  font-size: 32px;
  color: #277d80; }
  .section-title:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    height: 2px;
    background: linear-gradient(to right, #30999c 0%, #53b9a3 74%); }

.btn {
  display: inline-flex;
  background: linear-gradient(to bottom, #30999c 0%, #53b9a3 74%);
  padding: 15px 35px;
  border-radius: 50px;
  color: #fff;
  box-shadow: 0px 14px 80px rgba(48, 152, 156, 0.39);
  text-decoration: none;
  font-weight: 500;
  justify-content: center;
  text-align: center;
  letter-spacing: 1px;
  transition: background 0.2s; }
  .btn:hover {
    background: linear-gradient(to top, #53b9a3 0%, #30999c 74%); }

.page {
  position: relative;
  min-height: 100vh;
  padding: 50px 15px; }
  .page-title {
    display: block;
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
    color: var(--color-red);
    text-transform: uppercase; }
  .page-text {
    line-height: 1.5; }
    .page-text p, .page-text h3, .page-text h4, .page-text h5, .page-text h6 {
      margin-bottom: 10px; }
    .page-text a {
      color: var(--color-red); }
  .page .content img.page-thumb {
    float: left;
    display: block;
    width: 150px;
    height: 150px;
    -o-object-fit: cover;
    object-fit: cover;
    margin: 0 15px 15px 0; }

.nav {
  width: auto; }
  .nav ul.nav-list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center; }
    .nav ul.nav-list .nav-item {
      position: relative;
      display: inline-block; }
      .nav ul.nav-list .nav-item:not(:last-child):before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 100%;
        background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.842), transparent); }
      .nav ul.nav-list .nav-item a.nav-link {
        display: inline-block;
        padding: 15px 20px;
        color: #fff;
        font-weight: 700;
        text-transform: uppercase;
        background: #cac733;
        background: linear-gradient(to bottom, #cac733, #bebc32);
        box-shadow: 2px 10px 20px rgba(202, 199, 51, 0.4);
        transition: box-shadow 0.2s, transform 0.2s; }
        .nav ul.nav-list .nav-item a.nav-link:hover {
          box-shadow: 0 0.5em 0.5em -0.4em rgba(202, 199, 51, 0.4);
          transform: translateY(-0.25em); }
      .nav ul.nav-list .nav-item.has-child {
        position: relative; }
        .nav ul.nav-list .nav-item.has-child ul.sub-list {
          position: absolute;
          top: 100%;
          left: 0;
          width: 150%;
          height: auto;
          padding: 10px;
          background: #2694af;
          transform: scale(0);
          opacity: 0;
          visibility: hidden;
          transition: transform 0.2s, opacity 0.25s; }
          .nav ul.nav-list .nav-item.has-child ul.sub-list li.sub-item {
            display: block; }
            .nav ul.nav-list .nav-item.has-child ul.sub-list li.sub-item a.sub-link {
              display: block;
              padding: 5px;
              margin-bottom: 5px;
              font-size: 13px;
              color: #fff;
              transition: transform 0.2s; }
              .nav ul.nav-list .nav-item.has-child ul.sub-list li.sub-item a.sub-link:hover {
                transform: translateX(3px); }
        .nav ul.nav-list .nav-item.has-child:hover ul.sub-list {
          transform: scale(1);
          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: 400px;
    background: #fff;
    padding: 30px 20px;
    opacity: 0;
    transform: translateY(-20%);
    transition: transform 0.5s; }
    .popup__container h3 {
      display: inline-block;
      margin-bottom: 15px; }
    .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); }

.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; }
