.search-form .input-holder {
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 24px;
  width: 24px;
}

.search-form .input-holder .search-input {
  width: 100%;
  height: 50px;
  padding: 0 70px 0 20px;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  outline: none;
  font-family: "Open Sans", sans;
  font-size: 20px;
  line-height: 20px;
  color: #fff;
  -webkit-transform: translate(0, 60px);
          transform: translate(0, 60px);
  -webkit-transition: all 0.3s cubic-bezier(0, 0.105, 0.035, 1.57);
  transition: all 0.3s cubic-bezier(0, 0.105, 0.035, 1.57);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.search-form .input-holder .search-icon {
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 7px;
  background: #ffbb04;
  padding: 0;
  outline: none;
  position: relative;
  z-index: 2;
  float: right;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.search-form .input-holder .search-icon span {
  width: 28px;
  height: 35px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  -webkit-transform: rotate(320deg);
          transform: rotate(320deg);
  -webkit-transition: all 0.4s cubic-bezier(0.65, -0.6, 0.24, 1.65);
  transition: all 0.4s cubic-bezier(0.65, -0.6, 0.24, 1.65);
}

.search-form .input-holder .search-icon span::before {
  position: absolute;
  content: '';
  width: 5px;
  height: 15px;
  left: 12px;
  top: 25px;
  border-radius: 2px;
  background: #141416;
  width: 2px;
  height: 6px;
  left: 15px;
  top: 14px;
}

.search-form .input-holder .search-icon span::after {
  position: absolute;
  content: '';
  left: 0;
  top: 4px;
  border-radius: 15px;
  border: 2px solid #141416;
  width: 6px;
  height: 6px;
  left: 11px;
  border-radius: 10px;
}

.search-form .close {
  position: absolute;
  z-index: 1;
  top: 24px;
  right: 20px;
  width: 25px;
  height: 25px;
  cursor: pointer;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  -webkit-transition: all 0.3s cubic-bezier(0.285, -0.45, 0.935, 0.11);
  transition: all 0.3s cubic-bezier(0.285, -0.45, 0.935, 0.11);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.search-form .close::before {
  position: absolute;
  content: '';
  background: #fff;
  border-radius: 2px;
  width: 3px;
  height: 15px;
  left: 12px;
  top: 1px;
}

.search-form .close::after {
  position: absolute;
  content: '';
  background: #fff;
  border-radius: 2px;
  width: 15px;
  height: 3px;
  left: 6px;
  top: 7px;
}

.search-form.active .input-holder {
  width: 450px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.7);
  -webkit-transition: all 0.5s cubic-bezier(0, 0.105, 0.035, 1.57);
  transition: all 0.5s cubic-bezier(0, 0.105, 0.035, 1.57);
}

.search-form.active .input-holder .search-input {
  opacity: 1;
  -webkit-transform: translate(0, 10px);
          transform: translate(0, 10px);
}

.search-form.active .input-holder .search-icon {
  width: 50px;
  height: 50px;
  margin: 10px;
  border-radius: 30px;
}

.search-form.active .input-holder .search-icon span {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.search-form.active .close {
  right: -30px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.6s cubic-bezier(0, 0.105, 0.035, 1.57);
  transition: all 0.6s cubic-bezier(0, 0.105, 0.035, 1.57);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.search-input::-webkit-input-placeholder {
  color: #f5f5f5;
}

.search-input:-ms-input-placeholder {
  color: #f5f5f5;
}

.search-input::-ms-input-placeholder {
  color: #f5f5f5;
}

.search-input::placeholder {
  color: #f5f5f5;
}

.block-news__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .block-news__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.block-news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(50% - 10px);
  background: #0D0D0D;
  border: 1px solid #444444;
  border-radius: 10px;
  padding: 20px;
}

@media screen and (max-width: 992px) {
  .block-news__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: calc(50% - (30px / 2));
  }
  .block-news__item:nth-of-type(2n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .block-news__item {
    width: calc(100%);
  }
  .block-news__item:nth-of-type(n) {
    margin-right: 0;
  }
  .block-news__item:not(:last-of-type) {
    margin-bottom: 30px;
  }
}

.block-news__link {
  display: inline-block;
  width: 100%;
  height: 205px;
  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;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

@media screen and (max-width: 992px) {
  .block-news__link {
    max-width: 100%;
    min-width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .block-news__link {
    height: auto;
    max-height: 250px;
  }
}

@media screen and (max-width: 544px) {
  .block-news__link {
    max-height: 200px;
  }
}

.block-news__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 992px) {
  .block-news__content {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

@media screen and (max-width: 992px) {
  .block-news__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 20px;
  }
}

.block-news__text {
  font-weight: normal;
  line-height: 1.5;
  font-size: 1rem;
  text-transform: initial;
  color: #BABABA;
  padding-bottom: 30px;
}

.block-news__text p {
  max-height: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 992px) {
  .block-news__text {
    padding-right: 0;
    padding-bottom: 20px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.block-news__date {
  font-weight: normal;
  line-height: 1.5;
  font-size: 1rem;
  text-transform: initial;
  color: #BABABA;
  padding-left: 0px;
}

@media screen and (max-width: 992px) {
  .block-news__date {
    padding-left: 0;
  }
}

.block-news__button {
  min-width: 100%;
}

@media screen and (max-width: 992px) {
  .block-news__button {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}

.block-news__thumbnail {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.block-news__img {
  max-width: 100%;
  max-height: 450px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 100px;
}

@media screen and (max-width: 992px) {
  .block-news__img {
    margin-top: 10px;
    margin-bottom: 80px;
    max-height: 350px;
  }
}

@media screen and (max-width: 768px) {
  .block-news__img {
    margin-top: 0;
    margin-bottom: 50px;
    max-height: 200px;
    -o-object-position: right;
       object-position: right;
  }
}

@media screen and (max-width: 544px) {
  .block-news__img {
    max-height: 150px;
  }
}

.footer__menu {
  display: none;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  padding-left: 0;
  padding-right: 0;
}

@media screen and (max-width: 992px) {
  .footer__menu {
    display: block;
  }
}

.footer__license {
  margin-left: 20px;
  width: 40px;
  height: 60px;
}

.footer__license-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
/*# sourceMappingURL=custumstyle.css.map */