.pagination .page-numbers{
  font-size: 1.25rem;
  margin: 0 7px;
  padding: 0 7px;
  position: relative;
}
  .pagination .page-numbers:after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #c2292e;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    transition: .3s ease all;
    opacity: 0;
    visibility: hidden;
  }

  .pagination .page-numbers.current::after{
    opacity: 1;
    visibility: visible;
  }

.pag-arrow{
  position: relative;
  margin: 0 7px;
}
  .pag-arrow::before{
    content: '';
      position: absolute;
      top: 50%;
      right: 0;
      width: 12px;
      height: 12px;
      border-top: 2px solid #c2292e;
      border-right: 2px solid #c2292e;
  }
  .pag-arrow.pag-prev::before{
    transform: translateY(-50%) rotate(-135deg);
  }
  .pag-arrow.pag-next::before{
    transform: translateY(-50%) rotate(45deg);
  }






.gfield_label, .validation_message, .validation_error{
  display: none;
}

.gform_fields{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
  .gfield:nth-of-type(1){
    width: 100%;
  }
  .gfield:nth-of-type(2){
    width: calc(50% - 6px);
    margin-right: 12px;
  }
  .gfield:nth-of-type(3){
    width: calc(50% - 6px);
  }
  .gfield:nth-of-type(4){
    width: 100%;
  }

  .gfield input{
    outline: none;
    width: 100%;
    border-radius: 16px;
    border: 1px solid #d6d6d6;
    padding: 18px 24px;
    font-size: 1.25rem;
    margin-bottom: 12px;
  }
    .gfield.gfield_error input{
      border-color: #c2292e;
    }

  .gfield textarea{
    outline: none;
    width: calc(100% - 48px);
    font-family: 'Roboto Condensed';
    resize: none;
    border-radius: 16px;
    border: 1px solid #d6d6d6;
    padding: 18px 24px;
    font-size: 1.25rem;
    margin-bottom: 24px;
    height: 120px;
  }

  .gform_button{
    width: 100%;
    padding: 18px;
    text-align: center;
    border-radius: 16px;
    background-color: #c2292e;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    transition: .3s ease all;
  }
    .gform_button:hover{
      opacity: .7;
    }


@media screen and (max-width:1000px) {
  .gfield:nth-of-type(2){
    width: 100%;
    margin-right: 0;
  }
  .gfield:nth-of-type(3){
    width: 100%;
  }
  .gfield input, .gfield textarea{
    font-size: 18px;
  }
}

.vacancy .content p{
  margin: 20px 0;
}
@media screen and (max-width: 800px){
  .vacancy .content p{
    margin: 12px 0;
  }
  ul:not(.menu, .slick-dots, .gform_fields) li::after{
    top: 3px;
  }
}

.parthners .section__body{
  position: relative;
}
.parthners__slider{
  padding: 0 30px;
}
.slick-arrow{
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
  .slick-arrow svg{
    width: 24px;
    height: 24px;
  }
  .slick-arrow.slick-prev{
    left: -10px;
  }
  .slick-arrow.slick-next{
    right: 0;
  }


  .news_card .title{
    margin-bottom: 15px;
  }
  .news_card p{
    font-size: 1rem;
  }
