.kurinets__header {
  position: sticky;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  background-color: #131313;
  color: #FFFFFF;
  font-family: "Source Sans 3", serif;
  -webkit-box-shadow: 0 -0.25vw 1vw rgba(0, 0, 0, 0.25);
          box-shadow: 0 -0.25vw 1vw rgba(0, 0, 0, 0.25);
}
.kurinets__header-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #131313;
  display: none;
}
.kurinets__header--mobile {
  padding: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.kurinets__header--mobile-content {
  width: 90%;
  height: auto;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.kurinets__header--mobile-content-logo {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.kurinets__header--mobile-content-logo img {
  width: 80%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.kurinets__header--mobile-content-burger {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.kurinets__header--mobile-content-burger button {
  position: relative;
  z-index: 0;
  width: 4rem;
  height: 4rem;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  background-color: transparent;
  outline: none;
}
.kurinets__header--mobile-content-burger button:focus {
  outline: none;
}
.kurinets__header--mobile-content-burger button span {
  width: 3.5rem;
  height: 0.5rem;
  border-radius: 1rem;
  display: inline-block;
  background-color: #FFFFFF;
  pointer-events: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.kurinets__header--mobile-content-burger .button-back span:nth-child(1) {
  position: absolute;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.kurinets__header--mobile-content-burger .button-back span:nth-child(2) {
  display: none;
}
.kurinets__header--mobile-content-burger .button-back span:nth-child(3) {
  position: absolute;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.kurinets__header--desktop {
  display: none;
}
@media (min-width: 1200px) {
  .kurinets__header--mobile {
    display: none;
  }
  .kurinets__header--desktop {
    width: 100%;
    height: auto;
    display: block;
  }
  .kurinets__header--desktop-content {
    width: 90%;
    min-width: 288px;
    margin: 0 auto;
    padding: 1vw 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 1vw 10fr;
    grid-template-columns: 2fr 10fr;
    grid-auto-rows: auto;
    gap: 1vw;
  }
  .kurinets__header--desktop-content-logo {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .kurinets__header--desktop-content-logo img {
    width: 80%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .kurinets__header--desktop-content-menu {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .kurinets__header--desktop-content-menu-nav {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 1vw;
    list-style: none;
    font-size: 1vw;
  }
  .kurinets__header--desktop-content-menu-nav a {
    font-weight: 500;
    text-decoration: none;
    color: #FFFFFF;
  }
}

.kurinets__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
  padding: 2rem;
  display: none;
  background-color: #131313;
}
.kurinets__mobile-menu-nav {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  overflow-y: scroll;
}
.kurinets__mobile-menu-nav a {
  font-family: "Source Sans 3", serif;
  font-weight: 500;
  font-size: 2rem;
  color: #FFFFFF;
  text-decoration: none;
}