.ova-project-template {
  margin-bottom: 90px;
}
@media (max-width: 1024px) {
  .ova-project-template {
    margin-bottom: 70px;
  }
}

.data-project {
  border-top: 5px solid var(--primary);
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1), inset 0px 4px 0px 0px rgba(227, 178, 90, 0.004);
  padding: 60px;
  padding-top: 49px;
}
.data-project .item {
  margin-bottom: 23px;
}
.data-project .item .sub-title {
  font-size: 14px;
  font-weight: 500;
}
.data-project .item .title {
  margin: 0px;
  font-size: 14px;
  font-weight: bold;
}
.data-project .item li {
  margin: 0px;
  padding: 0px;
  line-height: none;
}
.data-project .item li i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 14px;
  background-color: #f5f5f5;
  border-radius: 50%;
  color: var(--secondary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.data-project .item li i:hover {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: var(--primary);
}
.data-project ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 10px;
}
.data-project ul.share-social-icons {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
}
.data-project ul.share-social-icons li {
  display: inline-block;
}
.data-project ul.share-social-icons li a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  font-feature-settings: "pnum" on, "lnum" on, "ordn" on;
  color: var(--heading);
  transition: all 500ms ease;
}
.data-project ul.share-social-icons li a:hover {
  transition: all 500ms ease;
  background-color: var(--primary);
  color: #fff;
}

.ova-project-gallery .content {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
}
.ova-project-gallery .content .item {
  overflow: hidden;
  flex: 0 0 calc(33.33% - 20px);
  height: 353px;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .ova-project-gallery .content .item {
    height: auto;
  }
}
@media (max-width: 767px) {
  .ova-project-gallery .content .item {
    flex: 0 0 calc(50% - 20px);
  }
}
@media (max-width: 479px) {
  .ova-project-gallery .content .item {
    flex: 0 0 100%;
  }
}
.ova-project-gallery .content .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.ova-project-gallery .content .item img:hover {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  transform: scale(1.05);
}

.photo-null {
  text-align: center;
  color: var(--text);
}

.home-page .ova-project .content-pro.masonry-project.four_column .ovapro-item:nth-child(3) {
  width: 25%;
}
@media (max-width: 1024px) {
  .home-page .ova-project .content-pro.masonry-project.four_column .ovapro-item:nth-child(3) {
    width: 25%;
  }
}
@media (max-width: 767px) {
  .home-page .ova-project .content-pro.masonry-project.four_column .ovapro-item:nth-child(3) {
    width: 100%;
  }
}
.home-page .ova-project .content-pro.masonry-project.four_column .ovapro-item:nth-child(4) {
  width: 25%;
}
@media (max-width: 1024px) {
  .home-page .ova-project .content-pro.masonry-project.four_column .ovapro-item:nth-child(4) {
    width: 25%;
  }
}
@media (max-width: 767px) {
  .home-page .ova-project .content-pro.masonry-project.four_column .ovapro-item:nth-child(4) {
    width: 100%;
  }
}

.ova-project-template nav.pagination {
  margin: 30px 0px 110px 0px;
}
@media (max-width: 1024px) {
  .ova-project-template nav.pagination {
    margin: 30px 0px 87px 0px;
  }
}
@media (max-width: 767px) {
  .ova-project-template nav.pagination {
    margin-bottom: 60px;
    margin-top: 30px;
  }
}

.ova-project .project-filter-button-wrapper {
  list-style-type: none;
  margin: 0 0 55px;
  padding: 0;
  text-align: center;
}
.ova-project .project-filter-button-wrapper li.project-filter-button {
  font-size: var(--font-size);
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  display: inline-block;
  padding: 0px;
  margin: 0px 15px;
  border: 1px solid transparent;
  border-radius: 30px;
  text-transform: capitalize;
}
.ova-project .project-filter-button-wrapper li.project-filter-button:before {
  transition: all 0.3s ease;
  content: "";
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 4px;
  background-color: var(--primary);
  opacity: 0;
}
.ova-project .project-filter-button-wrapper li.project-filter-button.active-category {
  transition: all 0.3s ease;
  color: var(--secondary);
}
.ova-project .project-filter-button-wrapper li.project-filter-button.active-category:before {
  transition: all 0.3s ease;
  bottom: 7;
  opacity: 1;
  z-index: -1;
}
.ova-project .content-pro.masonry-project.four_column .ovapro-item:nth-child(3) {
  width: 50%;
}
@media (max-width: 1024px) {
  .ova-project .content-pro.masonry-project.four_column .ovapro-item:nth-child(3) {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .ova-project .content-pro.masonry-project.four_column .ovapro-item:nth-child(3) {
    width: 100%;
  }
}
.ova-project .content-pro.masonry-project.four_column .ovapro-item:nth-child(4) {
  width: 50%;
}
@media (max-width: 1024px) {
  .ova-project .content-pro.masonry-project.four_column .ovapro-item:nth-child(4) {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .ova-project .content-pro.masonry-project.four_column .ovapro-item:nth-child(4) {
    width: 100%;
  }
}
.ova-project .content-pro .ovapro-item {
  margin-bottom: 0px;
}
.ova-project .content-pro.two_column .ovapro-item {
  width: calc(50% - 15px);
}
@media (max-width: 767px) {
  .ova-project .content-pro.two_column .ovapro-item {
    width: 100%;
  }
}
.ova-project .content-pro.three_column .ovapro-item {
  width: calc(33.33% - 0px);
}
@media (max-width: 767px) {
  .ova-project .content-pro.three_column .ovapro-item {
    width: calc(50% - 0px);
  }
}
@media (max-width: 580px) {
  .ova-project .content-pro.three_column .ovapro-item {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .ova-project .content-pro.three_column .ovapro-item.item-project-6 {
    width: calc(50% - 0px);
  }
}
@media (max-width: 767px) {
  .ova-project .content-pro.three_column .ovapro-item.item-project-6 {
    width: 100%;
  }
}
.ova-project .content-pro.four_column .ovapro-item {
  width: calc(25% - 0px);
}
@media (max-width: 1024px) {
  .ova-project .content-pro.four_column .ovapro-item {
    width: calc(33.33% - 0px);
  }
}
@media (max-width: 991px) {
  .ova-project .content-pro.four_column .ovapro-item {
    width: calc(50% - 0px);
  }
}
@media (max-width: 767px) {
  .ova-project .content-pro.four_column .ovapro-item {
    width: 100%;
  }
}
.ova-project .ova-nodata {
  display: none;
  margin: 20px;
  width: 100%;
}
.ova-project .ova-nodata h4 {
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 18px 40px;
  color: var(--heading);
  border: 1px solid var(--light);
  border-radius: 100px;
  margin: 0;
  text-transform: capitalize;
  font-size: 21px;
  font-weight: 800;
  width: 200px;
  margin: 0 auto;
}
.ova-project .ova-nodata h4:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
  border: 1px solid var(--primary);
  background: var(--primary);
}
.ova-project .ova-nodata h4:hover .ova-loader {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
}

@media (max-width: 1024px) {
  .ova-project .masonry-project.four_column .item-project-5 {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .ova-project .masonry-project.four_column .item-project-5 {
    width: 100%;
  }
}

.item-project-5 {
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .item-project-5 {
    width: 50%;
  }
}
.item-project-5:hover .img-project img {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  transform: scale(1.05);
}
.item-project-5:hover .info {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 0.9;
}
.item-project-5 .img-project img {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  vertical-align: middle;
  width: 100%;
  height: 480px;
  object-fit: cover;
  transform: scale(1);
}
@media (max-width: 767px) {
  .item-project-5 .img-project img {
    height: auto;
  }
}
.item-project-5 .img-project a .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: black;
  opacity: 0.3;
}
.item-project-5 .info {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 70%;
  padding-top: 31px;
  padding-bottom: 35px;
  padding-left: 50px;
  padding-right: 50px;
  background-color: var(--secondary);
  opacity: 0;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transform-origin: bottom top;
  transform-origin: bottom top;
}
@media (max-width: 1400px) {
  .item-project-5 .info {
    padding: 30px;
  }
}
@media (max-width: 1024px) {
  .item-project-5 .info {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0.9;
  }
}
.item-project-5 .info .portfolio-img {
  opacity: 0.8;
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  padding-bottom: 10px;
}
.item-project-5 .info .portfolio-img a {
  color: #fff;
}
.item-project-5 .info .project-category a {
  color: #9d9d9d;
}
.item-project-5 .info .name {
  font-size: 24px;
  margin: 0;
  color: #fff;
}
.item-project-5 .info .name a {
  color: #fff;
}

.item-project-6 {
  position: relative;
  overflow: hidden;
}
.item-project-6:hover .img-project img {
  transition: transform 0.5s ease-in-out;
  transform: scale(1.2);
}
.item-project-6:hover .info {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 0.9;
}
.item-project-6 .img-project img {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  vertical-align: middle;
  width: 100%;
  min-height: 480px;
  max-height: 480px;
  object-fit: cover;
  transform: scale(1);
}
.item-project-6 .info {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 70%;
  padding-top: 31px;
  padding-bottom: 35px;
  padding-left: 50px;
  padding-right: 50px;
  background-color: var(--secondary);
  opacity: 0;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transform-origin: bottom top;
  transform-origin: bottom top;
}
.item-project-6 .info .portfolio-img {
  opacity: 0.8;
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  padding-bottom: 10px;
}
.item-project-6 .info .portfolio-img a {
  color: #fff;
}
.item-project-6 .info .project-category a {
  color: #9d9d9d;
}
.item-project-6 .info .name {
  font-size: 24px;
  margin: 0;
  color: #fff;
}
.item-project-6 .info .name a {
  color: #fff;
}
@media (max-width: 1024px) {
  .item-project-6 .info {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0.9;
  }
}
@media (max-width: 1400px) {
  .item-project-6 .info {
    padding: 30px;
  }
}

.ova-project-slider {
  display: flex;
  position: relative;
}
@media (max-width: 1024px) {
  .ova-project-slider {
    flex-flow: column;
  }
}
.ova-project-slider ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  min-width: 300px;
}
@media (max-width: 1024px) {
  .ova-project-slider ul {
    display: inline-flex;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .ova-project-slider ul {
    width: 100%;
    margin-bottom: 60px;
    flex-wrap: wrap;
  }
  .ova-project-slider ul li {
    margin-bottom: 10px;
  }
}
.ova-project-slider ul li {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  padding-left: 40px;
  padding-top: 11px;
  padding-bottom: 11px;
}
@media (max-width: 1024px) {
  .ova-project-slider ul li {
    padding: 0px 15px;
  }
}
.ova-project-slider ul li.active-category {
  font-weight: 800;
  color: var(--heading);
  position: relative;
  z-index: 2;
  display: inline-block;
}
@media (max-width: 1024px) {
  .ova-project-slider ul li.active-category {
    font-weight: 400;
  }
  .ova-project-slider ul li.active-category .category {
    font-weight: 400;
  }
  .ova-project-slider ul li.active-category .category-total {
    font-weight: 400;
  }
}
.ova-project-slider ul li.active-category .line-1 {
  background-color: var(--heading);
  transition: all 500ms ease;
}
.ova-project-slider ul li.active-category .line-2 {
  transition: all 500ms ease;
  height: 4px;
  background-color: var(--primary);
  position: absolute;
  top: calc(100% - 22px);
  left: 40px;
  z-index: -1;
  width: calc(100% - 40px);
}
@media (max-width: 1024px) {
  .ova-project-slider ul li.active-category .line-2 {
    left: 15px;
    top: calc(100% - 10px);
  }
}
.ova-project-slider ul li:hover {
  cursor: pointer;
}
.ova-project-slider ul li:hover .category {
  color: var(--heading);
  font-weight: 800;
  transition: all 100ms ease;
}
.ova-project-slider ul li:hover .category-total {
  color: var(--heading);
  font-weight: 800;
  transition: all 100ms ease;
}
@media (max-width: 1024px) {
  .ova-project-slider ul li:hover .category {
    font-weight: 400;
  }
  .ova-project-slider ul li:hover .category-total {
    font-weight: 400;
  }
}
.ova-project-slider ul li .category-total {
  font-size: 12px;
  vertical-align: super;
}
.ova-project-slider ul li .line-1 {
  height: 100%;
  width: 4px;
  background-color: #e5e5e5;
  position: absolute;
  right: calc(100% - 4px);
  top: 0;
}
.ova-project-slider ul li .line-2 {
  width: 10%;
}
.ova-project-slider .content-item {
  width: 100%;
}
.ova-project-slider .content-item .owl-stage-outer .owl-stage .owl-item.active .info {
  transition: all 0.3s linear;
  opacity: 1;
}
.ova-project-slider .content-item .owl-stage-outer .owl-stage .owl-item img {
  min-height: 500px;
  object-fit: cover;
}
.ova-project-slider .content-item .owl-stage-outer .owl-stage.resize_gallery {
  margin-left: -154px !important;
}
@media (max-width: 1024px) {
  .ova-project-slider .content-item {
    width: 100%;
  }
}
.ova-project-slider .content-item .project-slider {
  max-height: 500px;
  position: relative;
}
.ova-project-slider .content-item .project-slider .img-project {
  position: relative;
}
.ova-project-slider .content-item .project-slider .img-project .button-gallery {
  position: absolute;
  top: 50px;
  right: 50px;
  display: block;
  padding: 22px 9px 18px 9px;
  border: 1px solid var(--text);
  transition: all 0.3s linear;
}
.ova-project-slider .content-item .project-slider .img-project .button-gallery .photo-project {
  display: none;
}
.ova-project-slider .content-item .project-slider .img-project .button-gallery .photo-project.active_photo {
  display: block;
}
.ova-project-slider .content-item .project-slider .img-project .button-gallery i:before {
  padding: 18px;
  background: #ffffff;
}
.ova-project-slider .content-item .project-slider .img-project .button-gallery:hover {
  cursor: pointer;
  transform: rotate(90deg);
  transition: all 500ms ease;
}
.ova-project-slider .content-item .project-slider .img-project a {
  display: flex;
}
.ova-project-slider .content-item .project-slider .info {
  transition: all 0.8s linear;
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding-bottom: 50px;
  padding-left: 50px;
  padding-top: 150px;
}
.ova-project-slider .content-item .project-slider .info .project-category {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
}
.ova-project-slider .content-item .project-slider .info .project-category a {
  color: rgba(255, 255, 255, 0.5019607843);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 2.2px;
}
.ova-project-slider .content-item .project-slider .info .project-category a:hover {
  color: var(--primary);
}
.ova-project-slider .content-item .project-slider .info .project-category .line {
  width: 27px;
  height: 2px;
  background-color: var(--primary);
  display: inline-block;
  margin-left: 8px;
}
.ova-project-slider .content-item .project-slider .info .name {
  position: relative;
  z-index: 3;
  margin-bottom: 0px;
  margin-top: 5px;
}
.ova-project-slider .content-item .project-slider .info .name a {
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
}
.ova-project-slider .content-item .project-slider .info .name a:hover {
  color: var(--primary);
}
.ova-project-slider .content-item .project-slider .info .mask {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -moz-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: -webkit-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: -ms-linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
.ova-project-slider .content-item .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 0px;
}
.ova-project-slider .content-item .owl-dots button {
  width: 6px;
  height: 6px;
  background-color: var(--text);
  margin: 0 3px;
  border-radius: 100px;
}
.ova-project-slider .content-item .owl-dots button.active {
  width: 12px;
  background-color: var(--primary);
}
.ova-project-slider .owl-carousel .owl-nav {
  position: absolute;
  bottom: 0;
  right: calc(100% + 55px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.ova-project-slider .owl-carousel .owl-nav button {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: unset;
}
.ova-project-slider .owl-carousel .owl-nav button i {
  margin-right: 10px;
  margin-left: 10px;
  display: flex;
  font-size: 8px;
}
.ova-project-slider .owl-carousel .owl-nav button:hover.owl-prev {
  background-color: var(--primary);
}
.ova-project-slider .owl-carousel .owl-nav button:hover.owl-next {
  background-color: var(--primary);
}
.ova-project-slider .owl-carousel .owl-nav button.owl-prev {
  padding: 9px 30px 9px 19px !important;
  background-color: var(--secondary);
  margin-right: 10px;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
}
.ova-project-slider .owl-carousel .owl-nav button.owl-next {
  padding: 9px 19px 9px 30px !important;
  background-color: var(--secondary);
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
}

.fancybox-caption__body {
  font-size: 18px;
}

.ova-project .project-item-filter-2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 15px;
}
.ova-project .project-item-filter-2 .ovapro-item {
  position: relative;
  flex: 0 0 calc(20% - 12px);
  margin-bottom: 15px;
}
@media (max-width: 1300px) {
  .ova-project .project-item-filter-2 .ovapro-item {
    flex: 0 0 calc(33.33% - 10px);
  }
}
@media (max-width: 1024px) {
  .ova-project .project-item-filter-2 .ovapro-item {
    flex: 0 0 calc(50% - 12px);
  }
}
@media (max-width: 767px) {
  .ova-project .project-item-filter-2 .ovapro-item {
    flex: 0 0 100%;
  }
}
.ova-project .project-item-filter-2 .ovapro-item .img-project a {
  display: flex;
}
.ova-project .project-item-filter-2 .ovapro-item.item-project-5 .info {
  width: calc(100% - 40px);
  left: 20px;
  right: 20px;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 1400px) {
  .ova-project .project-item-filter-2 .ovapro-item.item-project-5 .info {
    padding: 30px;
  }
}
.ova-project .project-item-filter-2 .ovapro-item.item-project-5 .info .post-date .date-left {
  display: inline-block;
  border-top: 2px solid var(--primary);
  padding-top: 11px;
}
@media (max-width: 479px) {
  .ova-project .project-item-filter-2 .ovapro-item.item-project-5 .info {
    padding-top: 26px;
    padding-bottom: 20px;
  }
}
.ova-project .wrap_loader {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}
.ova-project .wrap_loader .loader {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translate(-50%);
  stroke-linecap: round;
}
.ova-project .wrap_loader .loader circle {
  fill: none;
  stroke-width: 1.5;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transform-origin: 25px 25px;
  will-change: transform;
  stroke: var(--primary);
}
.ova-project .wrap_loader .loader circle:nth-of-type(1) {
  stroke-dasharray: 40px;
  animation-name: preloader_1;
}
.ova-project .wrap_loader .loader circle:nth-of-type(2) {
  stroke-dasharray: 80px;
  animation-name: preloader_2;
}
@keyframes preloader_1 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes preloader_2 {
  100% {
    transform: rotate(-360deg);
  }
}

@media (max-width: 1400px) {
  .ova-project .info .name {
    font-size: 21px;
  }
  .ova-project .info .name a {
    font-size: 21px;
  }
}
.ova-project .info .project-category a {
  font-size: 15px;
}
.ova-project .content-project {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
}
.ova-project .content-project.four_column .project-item {
  position: relative;
  flex: 0 0 calc(25% - 23px);
  margin-bottom: 30px;
}
@media (max-width: 1300px) {
  .ova-project .content-project.four_column .project-item {
    flex: 0 0 calc(33.33% - 20px);
  }
}
@media (max-width: 1024px) {
  .ova-project .content-project.four_column .project-item {
    flex: 0 0 calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  .ova-project .content-project.four_column .project-item {
    flex: 0 0 100%;
  }
}
.ova-project .content-project.four_column .project-item .img-project img {
  min-height: 483px;
}
@media (max-width: 767px) {
  .ova-project .content-project.four_column .project-item .img-project img {
    min-height: auto;
  }
}
.ova-project .content-project.two_column .project-item {
  flex: 0 0 calc(50% - 20px);
}
@media (max-width: 767px) {
  .ova-project .content-project.two_column .project-item {
    flex: 0 0 100%;
  }
}
.ova-project .content-project.two_column .project-item .img-project img {
  min-height: 483px;
}
@media (max-width: 767px) {
  .ova-project .content-project.two_column .project-item .img-project img {
    min-height: auto;
  }
}
.ova-project .content-project .project-item {
  position: relative;
  flex: 0 0 calc(33.33% - 20px);
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .ova-project .content-project .project-item {
    grid-template-columns: 1fr 1fr;
    flex: 0 0 calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  .ova-project .content-project .project-item {
    flex: 0 0 100%;
  }
}
.ova-project .content-project .project-item .img-project img {
  width: 100%;
  height: 483px;
  object-fit: cover;
}
.ova-project.template_1 .content-project .project-item {
  height: 483px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .ova-project.template_1 .content-project .project-item {
    height: auto;
  }
}
.ova-project.template_1 .content-project .project-item:hover .img-project img {
  -webkit-transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transform: scale(1.2);
}
.ova-project.template_1 .content-project .project-item .img-project img {
  -webkit-transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transform: scale(1);
}
.ova-project.template_1 .content-project .project-item .project-category a {
  font-size: 14px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  position: relative;
}
.ova-project.template_1 .content-project .project-item .project-category a:after {
  position: absolute;
  z-index: -1;
  content: "";
  height: 6px;
  bottom: 0px;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--primary);
  /* optional animation */
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.ova-project.template_1 .content-project .project-item .info {
  position: absolute;
  bottom: 30px;
  left: 30px;
  top: 30px;
  right: 30px;
  background-color: #2d2e30;
  opacity: 0;
  display: flex;
  flex-flow: column;
  justify-content: end;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 50px;
  padding-top: 50px;
  transition: all 0.5s ease;
}
@media (max-width: 1400px) {
  .ova-project.template_1 .content-project .project-item .info {
    padding: 30px;
  }
}
.ova-project.template_1 .content-project .project-item .info .name {
  margin: 0px;
}
.ova-project.template_1 .content-project .project-item .info .name a {
  margin: 0px;
  color: #ffffff;
  font-size: 30px;
}
@media (max-width: 1400px) {
  .ova-project.template_1 .content-project .project-item .info .name a {
    font-size: 21px;
  }
}
@media (max-width: 1024px) {
  .ova-project.template_1 .content-project .project-item .info {
    opacity: 0.7;
  }
}
.ova-project.template_1 .content-project .project-item:hover .info {
  opacity: 0.9;
}
.ova-project.template_2.fix_height_item .content-project {
  display: block;
  height: 100%;
}
.ova-project.template_2.fix_height_item .content-project div:nth-child(2) {
  height: 407px;
}
.ova-project.template_2.fix_height_item_last_page .content-project {
  display: block;
  height: 100%;
}
.ova-project.template_2.fix_height_item_last_page .content-project div:nth-child(2) {
  height: 407px;
}
.ova-project.template_2 .content-project {
  display: block;
  height: 100%;
}
.ova-project.template_2 .content-project div:nth-child(2) {
  height: 814px;
}
@media (max-width: 767px) {
  .ova-project.template_2 .content-project div:nth-child(2) {
    height: 407px;
  }
}
.ova-project.template_2 .content-project .project-item {
  float: left;
  width: 25%;
  position: relative;
  height: 407px;
  padding: 5px;
  margin-bottom: 0px;
}
@media (max-width: 1024px) {
  .ova-project.template_2 .content-project .project-item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .ova-project.template_2 .content-project .project-item {
    width: 100%;
  }
}
.ova-project.template_2 .content-project .project-item .img-project {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.ova-project.template_2 .content-project .project-item .img-project:hover img {
  transform: rotate(9deg) scale(1.2, 1.2);
}
.ova-project.template_2 .content-project .project-item .img-project img {
  transition: transform 0.5s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: auto;
}
.ova-project.template_2 .content-project .project-item .img-project .info {
  position: absolute;
  bottom: 0px;
  left: 0px;
  top: 0px;
  right: 0px;
  padding: 30px;
  background-color: var(--primary);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  transition: all 0.5s ease;
  width: auto;
  height: auto;
  transform: scaleY(0);
}
.ova-project.template_2 .content-project .project-item .img-project .info .name {
  text-align: center;
  margin: 0px;
}
.ova-project.template_2 .content-project .project-item .img-project .info .name a {
  margin: 0px;
  color: #ffffff;
  font-size: 30px;
}
@media (max-width: 1400px) {
  .ova-project.template_2 .content-project .project-item .img-project .info .name a {
    font-size: 21px;
  }
}
.ova-project.template_2 .content-project .project-item .img-project:hover .info {
  transform: scaleY(1);
  opacity: 0.9;
}
.ova-project.template_2 .content-project .project-item .project-category {
  height: auto;
}
.ova-project.template_2 .content-project .project-item .project-category a {
  font-size: 14px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  position: relative;
}
@media (max-width: 1400px) {
  .ova-project.template_2 .content-project .project-item .project-category a {
    font-size: 13px;
  }
}
.ova-project.template_3 .content-project .project-item {
  height: 483px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .ova-project.template_3 .content-project .project-item {
    height: auto;
  }
}
.ova-project.template_3 .content-project .project-item:hover .img-project img {
  transform: rotate(9deg) scale(1.2, 1.2);
}
.ova-project.template_3 .content-project .project-item .img-project a {
  display: flex;
}
.ova-project.template_3 .content-project .project-item .img-project a img {
  transition: transform 0.5s ease-in-out;
}
.ova-project.template_3 .content-project .project-item .project-category a {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  position: relative;
}
@media (max-width: 1400px) {
  .ova-project.template_3 .content-project .project-item .project-category a {
    font-size: 13px;
  }
}
.ova-project.template_3 .content-project .project-item .info {
  position: absolute;
  bottom: -70px;
  left: 20px;
  opacity: 0;
  right: 20px;
  background-color: #2d2e30;
  display: flex;
  flex-flow: column;
  justify-content: end;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 50px;
  padding-top: 50px;
  transition: all 0.5s ease;
}
.ova-project.template_3 .content-project .project-item .info .post-date .date-left {
  display: inline-block;
  border-top: 2px solid var(--primary);
  padding-top: 11px;
}
.ova-project.template_3 .content-project .project-item .info .name {
  margin: 0px;
}
.ova-project.template_3 .content-project .project-item .info .name a {
  margin: 0px;
  color: #ffffff;
  font-size: 30px;
}
@media (max-width: 1400px) {
  .ova-project.template_3 .content-project .project-item .info .name a {
    font-size: 21px;
  }
}
@media (max-width: 1400px) {
  .ova-project.template_3 .content-project .project-item .info {
    padding: 30px;
  }
}
.ova-project.template_3 .content-project .project-item:hover .info {
  opacity: 1;
  bottom: 0px;
}
@media (max-width: 767px) {
  .ova-project.template_3 .content-project .project-item .info {
    bottom: 0px;
    opacity: 0.7;
  }
}

.ova-project.template_4 .content-project.two_column .project-item {
  width: 50%;
}
@media (max-width: 767px) {
  .ova-project.template_4 .content-project.two_column .project-item {
    width: 100%;
  }
}
.ova-project.template_4 .content-project.three_column .project-item {
  width: 33.33%;
}
@media (max-width: 1024px) {
  .ova-project.template_4 .content-project.three_column .project-item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .ova-project.template_4 .content-project.three_column .project-item {
    width: 100%;
  }
}
.ova-project.template_4 .content-project.four_column .project-item {
  width: 25%;
}
@media (max-width: 1300px) {
  .ova-project.template_4 .content-project.four_column .project-item {
    width: 33.33%;
  }
}
@media (max-width: 1024px) {
  .ova-project.template_4 .content-project.four_column .project-item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .ova-project.template_4 .content-project.four_column .project-item {
    width: 100%;
  }
}
.ova-project.template_4 .content-project .project-item {
  width: 33.33%;
  padding: 15px;
  box-sizing: border-box;
  display: inline;
  margin-bottom: 0;
}
.ova-project.template_4 .content-project .project-item .img-project {
  position: relative;
  overflow: hidden;
  margin-bottom: 13px;
}
.ova-project.template_4 .content-project .project-item .img-project img {
  max-width: 100%;
  display: block;
  height: auto;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.ova-project.template_4 .content-project .project-item .img-project:hover img {
  -webkit-transform: scale3d(1.2, 1.2, 1);
  transform: scale3d(1.1, 1.1, 1);
}
.ova-project.template_4 .content-project .project-item .project-category a {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  position: relative;
  font-weight: 500;
  letter-spacing: 2px;
}
@media (max-width: 1400px) {
  .ova-project.template_4 .content-project .project-item .project-category a {
    font-size: 13px;
  }
}
.ova-project.template_4 .content-project .project-item .info {
  text-align: center;
}
.ova-project.template_4 .content-project .project-item .info .name {
  margin: 0px;
}
.ova-project.template_4 .content-project .project-item .info .name a {
  margin: 0px;
  color: var(--heading);
  font-size: 24px;
}
@media (max-width: 1400px) {
  .ova-project.template_4 .content-project .project-item .info .name a {
    font-size: 21px;
  }
}