:root {
  --color-primary: #0073c2;
  --color-secondary: #61b4e4;
  --color-success: #17b26a;
  --color-danger: #e02b1d;
  --color-warning: #ffb240;
  --color-info: #0dcaf0;
  --color-light: #f8f9fa;
  --color-dark: #212121;
  --font-family-base: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.5;
  --spacing-unit: 1rem;
  --color-white: #fff;
  --white: #fff;
  --green: #009262;
  --color-blue-mediumlight: #f1f8ff;
  --color-blue-ultralight: #f4f7fe;
  --color-gray: #89939e;
  --color-gray-light: #f6f8fd;
  --blue-medium: #61b4e4;
  --color-dark-blue: #1b2559;
  --color-success-light: rgba(5, 205, 153, 0.1);
  --color-green: #05cd99;
  --color-blue-light: #dbedff;
  --color-silver: #fafafa;
  --color-silver-medium: #d5d7da;
  --color-silver-dark: #e9eaeb;
  --color-gray-medium: #535862;
  --font-bebas: "Bebas Neue", sans-serif;
  --font-inter: "Inter", sans-serif;
  --black: #000;
  --green-success: #32c997;
  --gray-medium: #4d4d4d;
  --gray-light: #f4f4f4;
}
html,
body {
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.header {
  width: 100%;
  top: 0;
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  z-index: 10;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.inner__header {
  padding-left: 2rem;
  padding-right: 2rem;
  margin-left: auto;
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.logo__header {
  width: 200px;
  margin-right: 100px;
}
.left__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.form__search .form-control {
  background-image: url("../img/search__icon.svg");
  background-repeat: no-repeat;
  background-position: 8px center;
  background-size: 20px;
  padding-left: 3rem;
  width: 300px;
  max-width: 300px;
}
.form__search .form-control + label {
  padding-left: 3.25rem;
}
.options__header {
}
.button__user {
  border: none;
  background-color: var(--color-white);
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all linear 0.25s;
  -o-transition: all linear 0.25s;
  transition: all linear 0.25s;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.button__user:hover {
  background-color: var(--color-primary);
  cursor: pointer;
}
.button__user:hover svg rect {
  fill: var(--color-primary);
}
.button__user:hover svg path {
  stroke: var(--color-white);
}
.main__site {
  min-height: 100vh;
  display: inline-block;
  width: 100%;
  background-color: var(--color-blue-ultralight);
}

.sidebar__site {
  position: fixed;
  width: 300px;
  padding-top: 0;
  background-color: var(--color-white);
  height: calc(100vh - 80px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.main__site.no__sidebar .content__site {
  margin-left: 0;
  width: 100%;
}
.sidebar__site ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.sidebar__item {
  padding-left: 2rem;
  padding-right: 2rem;
}
.sidebar__item a {
  text-decoration: none;
  position: relative;
  color: var(--color-gray);
  padding-left: 2.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  border-radius: 0.25rem;
  -webkit-transition: all linear 0.25s;
  -o-transition: all linear 0.25s;
  transition: all linear 0.25s;
}
.sidebar__item a svg {
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
}
.sidebar__item a.active,
.sidebar__item a:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
}
.sidebar__item a svg path {
  -webkit-transition: all linear 0.25s;
  -o-transition: all linear 0.25s;
  transition: all linear 0.25s;
}
.sidebar__item a.active svg path,
.sidebar__item a:hover svg path {
  stroke: var(--color-white);
}
.sidebar__item a.is__filled.active svg path,
.sidebar__item a.is__filled:hover svg path {
  fill: var(--color-white);
  stroke: none;
}
.top__sidebar {
  padding-top: 2rem;
}
.bottom__sidebar {
}
.content__site {
  padding: 2rem;
  margin-left: 300px;
  width: calc(100% - 300px);
}
.footer {
  background-color: var(--blue-medium);
  padding-left: calc(2rem + 300px);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 1rem;
  padding-top: 1rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer p {
  margin-bottom: 0;
  text-align: center;
  color: var(--color-white);
}
/* buttons */
.text__dark {
  color: var(--color-dark);
}
.text__dark__blue {
  color: var(--color-dark-blue);
}
.text__blue {
  color: var(--color-primary);
}
.text__gray {
  color: var(--color-gray);
}
.text__green {
  color: var(--color-green);
}
.btn__site {
  padding: 0.5rem 2rem 0.25em;
  border-radius: 2rem;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-family: "Bebas Neue", sans-serif;
  text-decoration: none;
  background-color: transparent;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  -webkit-transition: all linear 0.25s;
  -o-transition: all linear 0.25s;
  transition: all linear 0.25s;
}

.btn__site:disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}
.btn__site.btn__outline {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}
.btn__site.btn__outline:hover {
  border: 1px solid var(--color-primary);
  color: var(--color-white);
  background-color: var(--color-primary);
}
.btn__site.btn__outline:hover svg path {
  stroke: var(--color-white);
}
.btn__site.btn__white {
  border: 1px solid var(--color-white);
  color: var(--color-primary);
}
.btn__site.btn__white:hover {
  border: 1px solid var(--color-primary);
  color: var(--color-white);
  background-color: var(--color-primary);
}

.btn__site.btn__filled {
  border: 1px solid var(--color-primary);
  color: var(--color-white);
  background-color: var(--color-primary);
}
.btn__site.btn__filled:hover {
  background-color: #0087e0;
  border-color: #0087e0;
}

.btn__site.btn__filledlight {
  border: 1px solid var(--color-blue-light);
  color: var(--color-primary);
  background-color: var(--color-blue-light);
}
.btn__site.btn__filledgreen {
  border: 1px solid var(--green);
  color: var(--color-white);
  background-color: var(--green);
}
.btn__site.btn__filledred {
  border: 1px solid var(--color-danger);
  color: var(--color-white);
  background-color: var(--color-danger);
}

.btn__site.btn__large {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}
.btn__site.btn__small {
  font-size: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.btn__site.btn__fullwidth {
  width: 100%;
}

.btn__site.btn__high {
  min-height: 58px;
}
.btn__site.btn__link {
  border: none;
  text-transform: none;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.breadcrumb-item {
  color: var(--color-gray-medium);
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb-item.active {
  color: var(--color-primary);
}
.breadcrumb-item a {
  text-decoration: none;
  color: var(--color-gray);
}

.legend__recaptcha {
  color: var(--gray-medium);
  font-size: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.legend__recaptcha a,
.legend__recaptcha {
  color: var(--gray-medium);
}
.legend__recaptcha a {
  text-decoration: underline;
}


.menu__sidebar{
    
    border: none;
    background-color: transparent;
    cursor: pointer;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.hamburger {
  position: relative;
  width: 1em;
  height: 1em;
  font-size: inherit;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.hamburger.is-md {
  font-size: 1.5rem;
}
.hamburger-line {
  position: absolute;
  right: 0;
  width: 100%;
  height: 0.125em;
  border-radius: 0.125em;
  background: #0073c2;
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}
.hamburger-line:nth-child(1) {
  top: 0.125em;
}
.hamburger.is-active .hamburger-line:nth-child(1),
.w-nav-button.w--open .hamburger-line:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotateZ(-135deg);
      -ms-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotateZ(-135deg);
}
.hamburger-line:nth-child(2) {
  top: 0.438em;
}
.hamburger.is-active .hamburger-line:nth-child(2),
.w-nav-button.w--open .hamburger-line:nth-child(2) {
  right: 50%;
  width: 0;
}
.hamburger-line:nth-child(3) {
  top: 0.75em;
  width: 0.625em;
}
.hamburger.is-active .hamburger-line:nth-child(3),
.w-nav-button.w--open .hamburger-line:nth-child(3) {
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%) rotateZ(135deg);
      -ms-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotateZ(135deg);
}

@media screen and (max-width: 1024px) {
    .menu__sidebar{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
  .content__site {
    margin-left: 0;
    width: 100%;
  }
  .sidebar__site {
    position: fixed;
    left: -300px;
    transition: all linear 0.25s;
    -webkit-transition: all linear 0.25s;
    -moz-transition: all linear 0.25s;
    -ms-transition: all linear 0.25s;
    -o-transition: all linear 0.25s;
}
  .sidebar__site.open{
    left: 0;
    z-index: 10;
  }
}
@media screen and (max-width: 767px) {
  .left__header {
    width: auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .content__site{
    padding-left: 0;
    padding-right: 0;
  }
  

  .main__site.no__sidebar .content__site {
    padding-left: 0;
    padding-right: 0;
  }

  .logo__header {
    margin-right: 0;
  }

  .footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
