

.burger {
  --burger-width: 40px;
  --burger-height: 14px;
  --burger-line-height: 2px; }
  .burger .burger {
    width: var(--burger-width);
    height: var(--burger-height);
    position: relative;
    color: #fff;
    cursor: pointer; }
    .burger .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 .burger::before, .burger .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 .burger::before {
      top: 0; }
    .burger .burger::after {
      top: calc(100% - var(--burger-line-height)); }
    .burger .burger.burger--active .burger__line {
      transform: scale(0);
      transition: transform 0.3s ease-in-out; }
    .burger .burger.burger--active::before {
      transform: rotate(45deg);
      top: 50%;
      transition: transform 0.3s ease-in-out, top 0.3s ease-in-out; }
    .burger .burger.burger--active::after {
      transform: rotate(-45deg);
      top: 50%;
      transition: transform 0.3s ease-in-out, top 0.3s ease-in-out; }

.header {
	
  position: relative;
  color: #fff; 
  /* font-family: "Oswald", sans-serif; */
}
  .header__container {
    position: relative; }
  .header__top {
    position: relative;
    padding: 10px 0;
    background: var(--color-blue); }
    .header__top::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 80%;
      height: 100%;
      background: var(--color-green);
      transform: skewX(-20deg) translateX(30%); }
    .header__top-container {
      display: flex;
      justify-content: space-between;
      align-items: center; }
  .header__spec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 30%; }
  .header__menu {
    position: relative;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1; }
  .header__lang {
    display: flex;
    align-items: center; }
    .header__lang li {
      display: inline-block; }
      .header__lang li:not(:last-child) {
        margin-right: 10px; }
      .header__lang li a {
        display: inline-block;
        padding: 5px;
        background: #fff;
        color: var(--color-blue);
        text-transform: uppercase;
        font-weight: 700; }
        .header__lang li.current-lang a {
          color: var(--color-green); }
  .header a.bvi-open {
    display: inline-block;
    flex-shrink: 0;
    font-size: 14px;
    color: #fff;
    transition: color 0.2s ease-in-out; }
    .header a.bvi-open:hover {
      color: var(--color-green); }
  .header__search {
    position: relative;
    width: 400px;
    display: flex;
    justify-content: flex-start;
    align-items: center; }
    .header__search input {
      width: 70%;
      padding: 10px;
      border: none;
      background: transparent;
      color: #fff;
      outline: none;
      border-bottom: 1px solid var(--color-gray); }
    .header__search .search-btn {
      padding: 10px;
      background: var(--color-gray); }

.burger {
  display: none; }

.hero {
  position: relative;
  height: 90vh; }
  .hero__container {
    position: relative;
    min-height: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5; }
  .hero__title {
    position: relative;
    width: 30%;
    height: 90vh;
    background: #f5f5f5;
    text-align: center;
    padding: 100px 20px;
    z-index: 10; }
    .hero__title .logo {
      display: block;
      width: 100%;
      height: auto;
      margin-bottom: 30px; }

 .logo2 {
	 display: block;
      width: 100%;
      height: auto;
      margin-bottom: 30px; }
    .hero__title p {
      font-size: 14px;
      font-weight: 700;
      line-height: 150%;
      text-transform: uppercase;
      color: var(--color-gray); }
    .hero__title-contacts {
      position: relative;
      margin-top: 40px;
      padding: 20px 0;
      text-align: center;
      color: var(--color-blue); }
      .hero__title-contacts::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        width: 60%;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--color-gray), transparent);
        transform: translateX(-50%); }
  .hero__mail {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px; }
    .hero__mail svg {
      fill: var(--color-blue);
      margin-right: 7px; }
    .hero__mail a {
      color: var(--color-blue);
      font-weight: 700; }
    .hero__mail:hover svg {
      fill: var(--color-green); }
    .hero__mail:hover a {
      color: var(--color-green); }
  .hero__phone {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    font-size: 18px; }
    .hero__phone a {
      font-weight: 700; }
    .hero__phone svg {
      fill: var(--color-blue);
      margin-right: 7px; }
    .hero__phone:hover svg {
      fill: var(--color-green); }
    .hero__phone:hover a {
      color: var(--color-green); }
  .hero__social li a svg {
    width: 16px;
    height: 16px;
    fill: #fff; }
  .hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: inherit; }
    .hero__video video {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover; }

.hero__slider {
  position: relative;
  width: 70%;
  height: 90vh;
  overflow: hidden; }
  .hero__slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 2; }
  .hero__slider-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover; }

.hero__slider-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, transparent, #fff);
  z-index: 5; }
  .hero__slider-controls .slider-nav {
    position: relative;
    width: auto;
    position: relative;
    width: auto;
    display: flex;
    margin-right: 15px; }
    .hero__slider-controls .slider-nav .hero__slider-prev,
    .hero__slider-controls .slider-nav .hero__slider-next {
      position: relative;
      left: 0;
      width: 60px;
      height: 60px;
      background: transparent;
      margin: 0 0px 0 0; }
      .hero__slider-controls .slider-nav .hero__slider-prev::after,
      .hero__slider-controls .slider-nav .hero__slider-next::after {
        color: #fff;
        font-size: 32px; }
      .hero__slider-controls .slider-nav .hero__slider-prev:hover,
      .hero__slider-controls .slider-nav .hero__slider-next:hover {
        background: rgba(255, 255, 255, 0.8); }
        .hero__slider-controls .slider-nav .hero__slider-prev:hover::after,
        .hero__slider-controls .slider-nav .hero__slider-next:hover::after {
          color: var(--color-green); }
  .hero__slider-controls .hero__slider-pag {
    position: relative;
    width: auto;
    margin: 0 15px;
    color: #fff; }
    .hero__slider-controls .hero__slider-pag .swiper-pagination-current {
      font-size: 36px;
      font-weight: 700;
      color: #fff; }
    .hero__slider-controls .hero__slider-pag .swiper-pagination-total {
      opacity: 0.5;
      color: #fff; }
  .hero__slider-controls .hero__slider-scrollbar {
    width: 50%;
    height: 1px;
    position: relative;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3); }
    .hero__slider-controls .hero__slider-scrollbar .swiper-scrollbar-drag {
      height: 3px;
      background: #fff; }

.text-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  overflow: hidden;
  z-index: 5; }
  .text-slider-slide {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #fff; 
  }
    .text-slider-slide h2 {
      display: block;
      padding: 1rem 1.5rem;
      /* background: rgba(245, 245, 245, 0.74); */
      max-width: 80%;
      font-size: 46px;
      font-weight: 700;
      color: #fff;
      text-transform: uppercase;
      transform: translateX(20%);
      opacity: 0;
      transition: transform 2s ease-in-out, opacity 1.5s ease-in-out; }
      .text-slider-slide h2 span {
        display: block;
        font-size: 18px;
        transform: translateX(10%);
        opacity: 0;
        transition: transform 2.5s ease-in-out, opacity 2s ease-in-out;
      }
    .text-slider-slide.swiper-slide-active h2 {
      transform: translateX(0);
      opacity: 1; }
      .text-slider-slide.swiper-slide-active h2 span {
        transform: translateX(0);
        opacity: 1; }

.about {
  position: relative;
  overflow: hidden; }
  .about::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 550px;
    height: 680px;
    background: url(https://otarbiopharm.kz/wp-content/themes/OtarBioPharm/img/page-bg.png) center no-repeat;
    background-size: contain; }
  .about::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 350px;
    height: 480px;
    background: url(https://otarbiopharm.kz/wp-content/themes/OtarBioPharm/img/page-bg.png) center no-repeat;
    background-size: contain; }
  .about__top {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px; }
    .about__top h2.section-title {
      color: var(--color-green); }
  .about__list {
    display: flex;
    width: auto; }
    .about__list li {
      display: inline-block; }
      .about__list li:not(:last-child) {
        margin-right: 25px; }
      .about__list li a {
        display: inline-block;
        color: #fff;
        background: var(--color-blue);
        padding: 15px 20px;
        border-radius: 30px;
        transition: background 0.2s ease-in-out; }
        .about__list li a:hover {
          background: var(--color-green); }
  .about__content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start; }
  .about__left {
    position: relative;
    width: 40%;
    margin-right: 40px; }
    .about__left .about__content-img {
      position: relative;
      width: 100%;
      height: 300px;
      overflow: hidden;
      margin-bottom: 40px; }
      .about__left .about__content-img img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover; }
    .about__left .about__btns {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      margin-bottom: 40px; }
      .about__left .about__btns .film-btn {
        display: flex;
        align-items: center;
        background: var(--color-green);
        margin-right: 20px; }
        .about__left .about__btns .film-btn img {
          display: block;
          width: 21px;
          height: 21px;
          margin-right: 10px; }
          .about__left .about__btns .film-btn::before{
            content: none;
          }
        .about__left .about__btns .film-btn:hover {
          background: var(--color-blue); }
      .about__left .about__btns .contacts-btn {
        display: flex;
        align-items: center; }
        .about__left .about__btns .contacts-btn img {
          display: block;
          width: 21px;
          height: 21px;
          margin-right: 10px; }
    .about__left .gmp {
      display: flex;
      align-items: center;
      background: #f5f5f5;
      padding: 1rem 0.5rem; }
      .about__left .gmp img {
        display: block;
        width: 100px;
        height: 100px;
        margin-right: 10px; }
      .about__left .gmp p {
        font-family: "Oswald", sans-serif;
        font-size: 16px;
        line-height: 150%;
        font-weight: 700;
        color: var(--color-blue); }
  .about__right {
    position: relative;
    width: 50%;
    flex-grow: 1; }
    .about__right .about__content-text {
      position: relative; }
      .about__right .about__content-text h2.section-title {
        margin-bottom: 24px; }
      .about__right .about__content-text .about__content-list {
        line-height: 1.5;
        list-style-type: disc;
        padding-left: 20px; }
        .about__right .about__content-text .about__content-list li {
          margin-bottom: 10px; }
      .about__right .about__content-text a.btn {
        margin-top: 20px; }
    .about__right .certificate__slider {
      position: relative;
      width: 100%;
      height: 250px;
      overflow: hidden;
      padding: 25px 35px 0 35px;
      margin-top: 40px; }
      .about__right .certificate__slider-slide {
        display: flex;
        justify-content: center;
        text-align: center; }
        .about__right .certificate__slider-slide img {
          display: block;
          width: 150px;
          height: 200px; }
      .about__right .certificate__slider .certificate__slider-prev::after,
      .about__right .certificate__slider .certificate__slider-next::after {
        color: var(--color-gray); }
      .about__right .certificate__slider .certificate__slider-prev:hover::after,
      .about__right .certificate__slider .certificate__slider-next:hover::after {
        color: var(--color-blue); }

.products {
  position: relative;
  padding: 50px 0;
  background: #f5f5f5; }
  .products__container {
    position: relative; }
  .products__info {
    position: relative;
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-gray);
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .products__info .slider-nav {
      position: relative;
      width: auto;
      position: relative;
      width: auto;
      display: flex;
      margin-right: 15px; }
      .products__info .slider-nav .products__slider-prev,
      .products__info .slider-nav .products__slider-next {
        position: relative;
        left: 0;
        width: 60px;
        height: 60px;
        background: transparent;
        margin: 0 0px 0 0;
        transition: background 0.2 s ease-in-out; }
        .products__info .slider-nav .products__slider-prev::after,
        .products__info .slider-nav .products__slider-next::after {
          color: var(--color-gray);
          font-size: 32px; }
        .products__info .slider-nav .products__slider-prev:hover,
        .products__info .slider-nav .products__slider-next:hover {
          background: rgba(255, 255, 255, 0.8); }
          .products__info .slider-nav .products__slider-prev:hover::after,
          .products__info .slider-nav .products__slider-next:hover::after {
            color: var(--color-green); }
  .products__slider {
    width: 100%;
    height: 330px;
    overflow: hidden;
    margin-bottom: 40px; }
    .products__slider-slide {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      border-radius: 5px;
      background: #fff; }
      .products__slider-slide .card__img {
        width: 100%;
        height: 250px; }
        .products__slider-slide .card__img img {
          width: 100%;
          height: 100%;
          -o-object-fit: cover;
          object-fit: cover; }
      .products__slider-slide .card__title {
        flex-grow: 1;
        display: block; 
        padding: 5px;
        font-size: 14px;
        line-height: 1.3;
      }
  .products__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .products__bottom p {
      font-size: 12px;
      color: var(--color-gray); }
      .products__bottom p span {
        font-weight: 700; }

.news {
  position: relative; }
  .news__container {
    padding: 0;
    text-align: center; }
  .news h2.section-title {
    display: block;
    text-align: center;
    margin-bottom: 10px; }
  .news__list {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px; }
  .news__item {
    position: relative;
    width: 50%;
    height: 350px;
    display: block;
    overflow: hidden;
    margin: 10px;
    text-align: left;
    z-index: 20; }
    .news__item:nth-last-child(2), .news__item:nth-last-child(3) {
      width: 35%;
      text-align: left; }
    .news__item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--color-blue);
      opacity: 0.2;
      z-index: 2;
      transition: opacity 0.5s ease-in-out; }
    .news__item img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover;
      transition: transform 0.4s ease-in; }
    .news__item-info {
      position: relative;
      padding: 1.5rem;
      width: 100%;
      height: 100%;
      display: inline-flex;
      justify-content: center;
      align-items: flex-start;
      flex-direction: column;
      width: 100%;
      z-index: 10; }
      .news__item-info .date-info {
        display: inline-flex;
        align-items: center;
        margin-bottom: 5px;
        font-size: 12px;
        font-family: 'Oswald', sans-serif;
        padding: 5px;
        background: var(--color-blue);
        color: #fff; }
        .news__item-info .date-info svg {
          margin-right: 7px; }
      .news__item-info h4 {
        font-size: 22px;
        color: #fff;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.253);
        transition: all 0.2s ease-in-out; }
        .news__item-info h4:hover {
          opacity: 0.8; }
    .news__item:hover img {
      transform: scale(1.1); }
    .news__item:hover::before {
      opacity: 0.6; }

.partners {
  position: relative;
  overflow: hidden; }
  .partners::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 550px;
    height: 90%;
    opacity: 0.4;
    background: url(https://otarbiopharm.kz/wp-content/themes/OtarBioPharm/img/page-bg.png) center no-repeat;
    background-size: contain; }
  .partners__container {
    position: relative; }
  .partners__top {
    display: flex;
    align-items: center;
    margin-bottom: 40px; }
    .partners__top .section-title {
      display: inline-block;
      width: auto;
      text-transform: uppercase;
      margin-right: 40px; }
      .partners__list{
        position: relative;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
      }
      .partners__item{
        position: relative;
        width: 30%;
        height: auto;
        padding: 10px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        
      }
      .partners__item-img{
        position: relative;
        width: 100px;
        height: 100px;
        margin-bottom: 10px;
        margin: 0 auto;
      }
      .partners__item-img img{
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
      .partners__item-name{
        margin-top: 10px;
        flex-grow: 1;
      }
      .partners__item-name a{
        display: block;
        line-height: 130%;
        font-size: 14px;
        color: var(--color-blue);
        transition: color 0.2s ease-in-out;
      }
      .partners__item-name a:hover{
        color: var(--color-green);
      }
  /* .partners__slider {
    position: relative;
    padding: 10px 0px;
    width: 100%;
    height: 100px;
    overflow: hidden; }
    .partners__slider-slide {
      text-align: center; }
      .partners__slider-slide a {
        position: relative;
        display: block;
        text-align: center;
        transition: transform 0.2s ease-in-out; }
        .partners__slider-slide a:hover {
          transform: scale(1.1); }
        .partners__slider-slide a img {
          display: block;
          width: auto;
          height: 50px;
          -o-object-fit: cover;
          object-fit: cover; } */

.footer {
  position: relative;
  padding: 20px 0 0 0;
  background: var(--color-blue);
  color: #fff; }
  .footer__container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .footer__logo {
    width: auto; }
  .footer__nav {
    display: flex;
    align-items: center;
    justify-content: center; }
    .footer__nav li {
      display: inline-block; }
      .footer__nav li:not(:last-child) {
        margin-right: 15px; }
      .footer__nav li a {
        color: #fff;
        text-decoration: underline; }
        .footer__nav li a:hover {
          color: var(--color-green); }
  .footer__contacts {
    width: 20%; }
    .footer__contacts .phone {
      display: flex;
      align-items: center;
      margin-bottom: 10px; }
      .footer__contacts .phone svg {
        fill: #fff;
        margin-right: 7px;
        transition: fill 0.2s ease-in-out; }
      .footer__contacts .phone a.tel {
        font-size: 18px;
        font-weight: 700;
        transition: color 0.2s ease-in-out; }
      .footer__contacts .phone:hover svg {
        fill: var(--color-green); }
      .footer__contacts .phone:hover a.tel {
        color: var(--color-green); }
    .footer__contacts .email {
      display: flex;
      align-items: center;
      margin-bottom: 10px; }
      .footer__contacts .email svg {
        width: 14px;
        height: 14px;
        fill: #fff;
        margin-right: 7px;
        transition: fill 0.2s ease-in-out; }
      .footer__contacts .email a.email {
        font-size: 14px;
        font-weight: 400;
        transition: color 0.2s ease-in-out; }
      .footer__contacts .email:hover svg {
        fill: var(--color-green); }
      .footer__contacts .email:hover a.mail {
        color: var(--color-green); }
    .footer__contacts .footer__social li a {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 5px;
      border-radius: 50%;
      background: #fff; }
      .footer__contacts .footer__social li a svg {
        width: 12px;
        height: 12px;
        fill: var(--color-blue); }
      .footer__contacts .footer__social li a:hover {
        background: var(--color-green); }
        .footer__contacts .footer__social li a:hover svg {
          fill: #fff; }
  .footer__copy {
    text-align: center;
    font-size: 12px;
    color: var(--color-gray); }

@media (max-width: 1200px) {
   .header__spec {
    width: 40%; }
  .about::before,
  .about::after {
    content: none; }
  .about__top,
  .about__content {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px; }
  .about__list {
    display: none; }
  .about__right .about__content-text .about__content-list {
    list-style-type: none; }
  .about__left,
  .about__right {
    width: 100%;
    text-align: center;
    margin-top: 20px; }
  .about__left .about__content-img img {
    width: 60%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain; }
  .about__left .about__btns,
  .about__left .gmp {
    justify-content: center; }
  .products__bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center; }
    .products__bottom p {
      margin-bottom: 10px; } }

@media (max-width: 950px) {
  .hero {
    height: 100%; }
    .hero__container {
      flex-direction: column;
      justify-content: center;
      align-items: center; }
    .hero__title {
      padding: 20px 10px;
      width: 100%;
      height: 100%; }
  .hero__slider {
    width: 100%;
    height: 400px; }
  .text-slider-slide h2 {
    max-width: 80%;
    font-size: 20px; }
  .footer__container {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 15px; }
  .footer__nav {
    margin-bottom: 15px;
    font-size: 12px;
    width: 100%; }
  .footer__contacts {
    text-align: center;
    width: 100%; }
  .footer__logo svg {
    width: 310px;
    height: 100px; }
  .footer__contacts .phone,
  .footer__contacts .email {
    justify-content: center; }
  .page .page__container {
    flex-direction: column;
    justify-content: center; }
  .page__content {
    width: 100%; }
  .sidebar {
    width: 100%; }
  .sidebar .last-news li {
    margin-bottom: 25px; }
  .sidebar .last-news li img {
    width: 60%;
    margin: 0 auto;
    margin-bottom: 10px; } 
    .partners__item{
      width: 48%;
    }
  }

@media (max-width: 750px) {
  .p-100 {
    padding: 60px 0; }
  .header__top-container {
    flex-direction: column;
    justify-content: center; }
  .header__spec {
    position: relative;
    width: 100%; }
  .news__list {
    flex-direction: column;
    justify-content: center; }
  .news__item,
  .news__item:nth-last-child(2),
  .news__item:nth-last-child(3) {
    width: 100%; }
  .partners__top {
    flex-direction: column;
    justify-content: center; }
  .partners__top .section-title {
    margin-right: 0;
    margin-bottom: 10px; }
  .about__left .about__content-img img {
    width: 80%; }
  .sidebar .last-news li img {
    width: 90%; }
  .page-contacts .page__content::before {
    content: none; }
  .page-contacts__info {
    width: 100%;
    text-align: center;
    display: block;
    min-height: 100%;
    margin-top: 0;
    margin-bottom: 40px; }
    .page-contacts__info .phone,
    .page-contacts__info .email,
    .page-contacts__info .adress {
      flex-direction: column;
      justify-content: center; }
    .page-contacts__info-text {
      width: 100%; }
    .page-contacts__info img {
      display: none; } }

@media (max-width: 550px) {
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding-top: 20px;
    padding-left: 5px;
    padding-right: 5px;
    background: var(--color-blue);
    overflow: auto;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.2s ease-in, opacity 0.2s ease-in;
    z-index: 100; }
    .nav.active {
      transform: translateX(0);
      opacity: 1;
      visibility: visible; }
      .nav.active ul.nav-list {
        padding-top: 70px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        height: 100%;
        overflow: auto; }
        .nav.active ul.nav-list li.menu-item {
          display: block;
          text-align: center;
          margin-right: 0; }
          .nav.active ul.nav-list li.menu-item::before {
            content: none; }
          .nav.active ul.nav-list li.menu-item ul.sub-menu {
            position: relative;
            top: 0;
            left: 0;
            width: 100%;
            height: auto;
            padding: 10;
            padding-top: 0;
            margin-bottom: 10px;
            background: transparent;
            opacity: 1;
            visibility: visible; }
            .nav.active ul.nav-list li.menu-item ul.sub-menu li a {
              font-size: 12px; }
          .nav.active ul.nav-list li.menu-item a {
            display: block;
            margin: 0;
            padding: 0;
            margin-bottom: 10px;
            color: #fff; }
  .burger {
    display: block;
    z-index: 1000;
    padding: 15px; }
  .header a.bvi-open {
    display: none; }
  .hero__title svg.logo {
    width: 200px;
    height: auto;
    text-align: center;
    margin: 0 auto; }
  .hero__title p {
    font-size: 12px; }
  .hero__title-contacts {
    margin-top: 20px; }
  .hero__slider-controls .hero__slider-scrollbar {
    display: none; }
  .about__left .about__content-img img,
  .about__left .about__content-img {
    width: 100%;
    height: 200px; }
  .about__btns {
    flex-direction: column;
    justify-content: center;
    align-items: center; }
  .about__left .about__btns .film-btn {
    margin-right: 0;
    margin-bottom: 10px; }
  .section-title {
    font-size: 24px; }
  .about__left .gmp p {
    font-size: 12px; }
  .page {
    padding: 100px 0 50px 0; }
  .page__title {
    font-size: 18px; } 
    .partners__list{
      justify-content: center;
      align-items: center;
    }
    .partners__item{
      width: 80%;
    }
  }
