@charset "utf-8";

/* Проект */
main {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  background-color: #232323;
  padding-top: 60px;
  padding-bottom: 80px;
}
main::before {
  content: '';
  display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
  display: inline-flex;
  width: 687px;
  height: 613px;
  position: absolute;
  z-index: 1;
  top: 60px;
  left: 0;
  background-image: url(../img/project/bg.png);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: bottom;
  background-size: contain;
  opacity: 0.03;
}
main::after {
  content: '';
  display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
  display: inline-flex;
  width: 687px;
  height: 613px;
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  background-image: url(../img/project/bg.png);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: bottom;
  background-size: contain;
  opacity: 0.03;
}
.proj__single {
  color: #ffffff;
  position: relative;
}
.proj__single h1 {
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  margin-top: 0;
  margin-bottom: 30px;
}
.proj__single h1 span {
  color: #F1B72F;
}

.single__carousel {
  overflow: hidden;
  position: relative;
  margin-bottom: 15px;
}
.single__carousel img {
  width: auto;
  height: 490px;
}
.owl-carousel .owl-item {
  text-align: center;
}
.single__carousel.owl-carousel .owl-nav .owl-prev,
.single__carousel.owl-carousel .owl-nav .owl-next {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: none;
  background-color: rgba(197, 197, 197, .4);
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.single__carousel.owl-carousel .owl-nav .owl-prev {
  left: 0;
}
.single__carousel.owl-carousel .owl-nav .owl-next {
  right: 0;
}
.single__carousel.owl-carousel .owl-nav .owl-prev svg,
.single__carousel.owl-carousel .owl-nav .owl-next svg {
  fill: #ffffff;
}
.single__carousel.owl-carousel .owl-nav .owl-prev:hover,
.single__carousel.owl-carousel .owl-nav .owl-next:hover {
  background-color: rgba(197, 197, 197, .6);
}

.single__content {
  display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: flex-start;
  align-items: flex-start;
  width: 100%;
}
.single__content b {
  font-weight: 500;
  color: #232323;
}
.single__content p {
  margin-bottom: 20px;
  text-align: justify;
}

.single__content ul li {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #5E5E5E;
  text-align: justify;
}
.single__content h2,
.single__content h3,
.single__content h4,
.single__content h5,
.single__content h6 {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .single__carousel img {
    max-width: 100% !important;
    height: 200px !important;
  }
}