

.projects__heading {
  padding-top:35px;
}
.projects__heading h1 {
  font-size: 32px;
  line-height: 1.24em;
  text-transform: uppercase;
  color: #000000;
}
.projects__heading_text {
  color: #eeeeee;
  text-shadow:-1px 0px 0 #000000, 1px 0px 0 #000000, 0px -1px 0 #000000, 0px 1px 0 #000000; ;
}

.projects__filters_main, .projects__filters {
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  padding-top: 118px;
}
.projects__filters {
  font-size: 14px;
  padding-top: 38px;
}

.projects__tags__radio {
  line-height: 1em;
  position: relative;
  margin-bottom: 8px;
  margin-right: 8px;
}
.projects__filters .projects__tags__radio{
  margin-bottom: 6px;
  margin-right: 6px;
}

.projects__tags__radio input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.projects__tags__radio label {
  position: relative;
  border-radius: 999px;
  border: 2px solid #000000;
  padding: 8px 20px 8px 20px;
  cursor: pointer;
  display: inline-flex;
  color: #000;
}


.projects__tags__radio input:checked + label {
  background: #000;
  color: #fff;
}

.projects__sizer,
.projects__item {
  width: calc(50vw - 10px);
  height: calc(50vw - 10px);
}
.projects__item_size_2x2 {
  width: calc(100vw - 20px);
  height: calc(100vw - 20px);
}
.projects__item_size_2x1 {
  width: calc(100vw - 20px);
  height: calc(50vw - 10px);
}
.projects__item_size_1x2 {
  width: calc(50vw - 10px);
  height: calc(100vw - 20px);
}
.projects__item {
  float: left;
  padding:10px;
  overflow: hidden;
}

.projects__item img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.projects__list {
  margin: 0 -10px;
  padding-top: 98px;
}
@media (min-width: 768px) {
  .projects__item {
    padding:15px;
  }
  .projects__list {
    margin: 0 -15px;
  }
  .projects__sizer,
  .projects__item {
    width: calc(33.33vw - 3px);
    height: calc(33.33vw - 3px);
  }
  .projects__item_size_2x2 {
    width: calc(66.66vw - 6px);
    height: calc(66.66vw - 6px);
  }
  .projects__item_size_2x1 {
    width: calc(66.66vw - 6px);
    height: calc(33.33vw - 3px);
  }
  .projects__item_size_1x2 {
    width: calc(33.33vw - 3px);
    height: calc(66.66vw - 6px);
  }
}
@media (min-width: 992px) {
 .projects__heading h1 {
    font-size: 52px;
  }
  .projects__sizer,
  .projects__item {
    width: calc(20vw - 2px);
    height: calc(20vw - 2px);
  }
  .projects__item_size_2x2 {
    width: calc(40vw - 6px);
    height: calc(40vw - 6px);
  }
  .projects__item_size_2x1 {
    width: calc(40vw - 6px);
    height: calc(20vw - 2px);
  }
  .projects__item_size_1x2 {
    width: calc(20vw - 2px);
    height: calc(40vw - 6px);
  }
}
@media (min-width: 1280px) {
  .projects__sizer,
  .projects__item {
    width: 250px;
    height: 250px;
  }
  .projects__item_size_2x2 {
    width: 500px;
    height: 500px;
  }
  .projects__item_size_2x1 {
    width: 500px;
    height: 250px;
  }
  .projects__item_size_1x2 {
    width: 250px;
    height: 500px;
  }
}

/*banner_popup*/
.banner_popup {
  position: fixed;
  left:0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: rgba(23,23,23,0.79);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  overflow: auto;
}
.banner_popup.banner_popup__open {
  visibility: visible;
  opacity: 1;
}
.banner_popup__wrap1 {
  padding: 33px 24px 70px 24px;
  position: relative;
  background: #343434;
  max-width: 100%;
  box-sizing: border-box;
  top: 5%;
}
.banner_popup__wrap {
  position: relative;
  max-width: 100%;
  min-width: 300px;
}

.banner_popup__content {
  position: relative;
  border: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: none;
}
.banner_popup__content img,
.banner_popup__content video {
  width: 100%;
  height: auto;
}
.banner_popup__content_wrap {
  position: relative;
  min-width: 300px;
  margin-top: 17px;
  background: #1B1B1B;
  min-height: 50px;
  display: flex;
    align-items: center;
    justify-content: center;
}
.banner_popup__external {
  position: absolute;
  right: 0;
  bottom: 10%;
  width: 225px;
  height: 59px;
  background: #E65B2F;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  letter-spacing: -0.5px;
  transition: all 0.3s ease
}
.banner_popup__external:hover {
  background: #c54e28;
}
.banner_popup__close {
  position: absolute;
  right: 24px;
  right: 0;
  top: 0;
  cursor: pointer;
}
.banner_popup__title {
  color: #E65B2F;
    font-size: 30px;
    letter-spacing: -1px;
    line-height: 1.25em;
    margin-right: 80px;
    margin-right: 50px;
}
.banner_popup__descr {
  color: #E1E3E7;
    font-size: 20px;
    letter-spacing: -1px;
    line-height: 1.25em;
    margin-right: 80px;
    margin-right: 50px;
    margin-top: -5px;
}

.projects__item-icon {
  position: absolute;
  width: 36.77px;
  height: 39.5px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='38.774' height='41.521' viewBox='0 0 38.774 41.521'%3E%3Cg transform='translate(-210.411 -320.626)'%3E%3Cpath d='M47.185,28.812A18.4,18.4,0,0,1,21.212,45.552a.43.43,0,0,0-.371.006l-8.583,4.307a.429.429,0,0,1-.6-.517L14.5,40.67a.431.431,0,0,0-.074-.4A18.387,18.387,0,1,1,47.185,28.812Z' transform='translate(201 311.214)' fill='none' stroke='%231b1b1b' stroke-miterlimit='10' stroke-width='2'/%3E%3Cpath d='M172.47,60.893a3.146,3.146,0,1,1-3.146-3.146,3.146,3.146,0,0,1,3.146,3.146' transform='translate(60.466 268.507)' fill='%231b1b1b'/%3E%3Cpath d='M148.315,146.8a.366.366,0,0,1-.366-.366v-12.5a.143.143,0,0,0-.143-.143h-7.2a.143.143,0,0,0-.143.138l-.144,4.115a.143.143,0,0,0,.143.148h2a.366.366,0,0,1,.366.366v7.873a.366.366,0,0,1-.366.366h-2.644a.143.143,0,0,0-.143.143v4.18a.143.143,0,0,0,.143.143h11.209a.143.143,0,0,0,.143-.143v-4.18a.143.143,0,0,0-.143-.143Z' transform='translate(84.379 199.892)' fill='%231b1b1b'/%3E%3C/g%3E%3C/svg%3E%0A") center no-repeat;
  background-size: contain;
  right: 18px;
  top: 32px;
  pointer-events: auto;
}
.banner_popup__buttons {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.banner_popup__button {
  width: 59px;
  min-width: 59px;
  height: 59px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 0!important;
  border: none;
  background: #E65B2F!important;
  outline: none!important;
  transition: all 0.3s ease;
}
.banner_popup__button:hover {
  background: #c54e28!important;
}
.banner_popup__button_next svg {
      transform: rotate(180deg);
}
.banner_popup__adname {
  color: #E1E3E7;
  text-align: center;
  font-size: 20px;
  letter-spacing: -0.6px;
  line-height: 1.25em;
  padding: 19px 15px 10px 15px;
  box-sizing: border-box;
  width: calc(100% - 59px - 59px);
}
.banner_popup__reload {
  position: absolute;
  left: 15px ;
  top: 15px;
  cursor: pointer;
  z-index: 3;
}
.banner_popup__iframe {
  position: relative;
  max-width: 100%;
}
.banner_popup__info {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
}


.banner_popup__adname_little {
  text-align: left;
  font-size: 0.85em;
  padding-top: 30px;
  color: #fff;
}
.banner_popup__close_all {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  outline: none;
  border: none!important;
  background: none!important;
}