@charset "UTF-8";
.archive_project .archive_content {
  display: grid;
  grid-gap: 30px;
}
.archive_project .archive_content.four_column {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 1200px) {
  .archive_project .archive_content.four_column {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .archive_project .archive_content.four_column {
    grid-template-columns: auto;
  }
}
.archive_project .archive_content.three_column {
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1200px) {
  .archive_project .archive_content.three_column {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .archive_project .archive_content.three_column {
    grid-template-columns: auto;
  }
}
.archive_project .archive_content.two_column {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  .archive_project .archive_content.two_column {
    grid-template-columns: auto;
  }
}
.archive_project .archive_content .ova-media {
  position: relative;
  overflow: hidden;
}
.archive_project .archive_content .ova-media:hover .project-img:before {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg) scale(1);
  transform: perspective(400px) rotateX(0deg) scale(1);
}
.archive_project .archive_content .ova-media:hover .project-img img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
  transform: scale(1.05);
}
.archive_project .archive_content .ova-media:hover .icon {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.archive_project .archive_content .ova-media .mask {
  content: "";
  background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0.2) 65%);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.archive_project .archive_content .ova-media .project-img {
  position: relative;
  overflow: hidden;
}
.archive_project .archive_content .ova-media .project-img:before {
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, #b882fc 0%, rgba(184, 130, 252, 0) 65%);
  -webkit-transform: perspective(400px) rotateX(-90deg) scale(0.2);
  transform: perspective(400px) rotateX(-90deg) scale(0.2);
  -webkit-transform-origin: top;
  transform-origin: top;
  z-index: 1;
}
.archive_project .archive_content .ova-media .project-img img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transform: scale(1);
  width: 100%;
  height: 500px;
  display: block;
  object-fit: cover;
}
.archive_project .archive_content .ova-media .content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 3;
}
.archive_project .archive_content .ova-media .content .title {
  margin: 0;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.4;
  color: #fff;
  padding-bottom: 5px;
}
.archive_project .archive_content .ova-media .content .sub_title {
  margin: 0;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.4;
  text-transform: uppercase;
  color: #fff;
}
.archive_project .archive_content .ova-media .icon {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  background-color: transparent;
  -webkit-transform: scale(0);
  transform: scale(0);
  z-index: 2;
}
.archive_project .archive_content .ova-media .icon:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.archive_project .archive_content .ova-media .icon:hover i {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.archive_project .archive_content .ova-media .icon a {
  display: inline-flex;
}
.archive_project .archive_content .ova-media .icon i {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
  font-size: 16px;
  display: inline-flex;
}

.ova_project_single {
  width: 100%;
  margin-bottom: 120px;
}
@media (max-width: 1024px) {
  .ova_project_single {
    grid-template-columns: 90px;
  }
}
.ova_project_single .info {
  display: grid;
  grid-template-columns: 75% 25%;
  grid-gap: 30px;
  margin-bottom: 45px;
}
@media (max-width: 1024px) {
  .ova_project_single .info {
    grid-template-columns: auto;
  }
}
.ova_project_single .info.fullwidth {
  grid-template-columns: auto;
}
.ova_project_single .info .project-img img {
  display: block;
  width: 100%;
}
.ova_project_single .info .main_content {
  background-color: #f2f4f9;
  padding: 35px;
}
.ova_project_single .info .main_content .item {
  padding: 13px 0;
  border-bottom: 1px solid #fff;
}
.ova_project_single .info .main_content .item .label {
  display: block;
  font-weight: 500;
}
.ova_project_single .info .main_content .item .value {
  display: block;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary);
}
.ova_project_single .info .main_content .social {
  margin: 30px 0 0 0;
  padding: 0;
  list-style-type: none;
}
.ova_project_single .info .main_content .social li {
  transition: all 0.3s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 6px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fff;
}
.ova_project_single .info .main_content .social li:hover {
  transition: all 0.3s ease;
  background-color: var(--primary);
}
.ova_project_single .info .main_content .social li:hover i {
  transition: all 0.3s ease;
  color: #fff;
}
.ova_project_single .info .main_content .social li a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.ova_project_single .info .main_content .social li i {
  transition: all 0.3s ease;
  display: inline-flex;
  font-size: 16px;
  color: var(--heading);
}
.ova_project_single .description {
  padding-bottom: 80px;
  margin: 0 auto;
  max-width: 80%;
}
@media (max-width: 1024px) {
  .ova_project_single .description {
    max-width: 100%;
    padding-bottom: 50px;
  }
}
.ova_project_single .description ul {
  margin: 25px 0;
  list-style-type: none;
}
.ova_project_single .description ul li {
  font-weight: 700;
  color: var(--heading);
  line-height: 1.5;
}
.ova_project_single .description ul li:before {
  content: "";
  color: var(--secondary);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  width: 1.3em;
  margin: 0 5px;
}
.ova_project_single .ova-next-pre-post {
  direction: ltr;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid #e4e0ee;
  border-top: 1px solid #e4e0ee;
  margin-bottom: 110px;
}
@media (max-width: 1024px) {
  .ova_project_single .ova-next-pre-post {
    margin-bottom: 80px;
  }
}
.ova_project_single .ova-next-pre-post a {
  color: var(--text);
}
.ova_project_single .ova-next-pre-post .num-pre {
  margin-left: 15px;
}
.ova_project_single .ova-next-pre-post .num-next {
  margin-right: 15px;
}
.ova_project_single .ova-next-pre-post .icon {
  transition: all 0.3s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background-color: #f2f4f9;
  border-radius: 50%;
}
.ova_project_single .ova-next-pre-post .icon:hover {
  transition: all 0.3s ease;
  background-color: var(--secondary);
}
.ova_project_single .ova-next-pre-post .icon:hover i {
  transition: all 0.3s ease;
  color: #fff;
}
.ova_project_single .ova-next-pre-post .icon i {
  transition: all 0.3s ease;
  display: inline-flex;
  color: var(--text);
}
.ova_project_single .project-similar-heading {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  padding-bottom: 40px;
}
.ova_project_single .project-similar-heading .sub-title {
  margin: 0 0 15px;
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  color: var(--primary);
  position: relative;
  padding-left: 30px;
}
.ova_project_single .project-similar-heading .sub-title .underlined {
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
  bottom: 50%;
  transform: translateY(-50%);
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
  width: 16px;
  height: 2px;
  background-color: var(--primary);
}
.ova_project_single .project-similar-heading .title {
  margin: 0;
  font-weight: 800;
  font-size: 45px;
  line-height: 1.2;
}
.ova_project_single .project-related {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1200px) {
  .ova_project_single .project-related {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .ova_project_single .project-related {
    grid-template-columns: auto;
  }
}
.ova_project_single .project-related .item:hover .ova-media .project-img img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.ova_project_single .project-related .item:hover .ova-media .content .title {
  color: var(--secondary);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ova_project_single .project-related .item:hover .ova-media .content .sub_title {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ova_project_single .project-related .item .ova-media {
  position: relative;
}
.ova_project_single .project-related .item .ova-media .mask {
  content: "";
  background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0.2) 65%);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.ova_project_single .project-related .item .ova-media .project-img {
  overflow: hidden;
}
.ova_project_single .project-related .item .ova-media .project-img img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: scale(1);
  transform: scale(1);
  height: 520px;
  object-fit: cover;
  display: block;
  width: 100%;
}
.ova_project_single .project-related .item .ova-media .content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
}
.ova_project_single .project-related .item .ova-media .content .title {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.4;
  color: #fff;
  padding-bottom: 5px;
}
.ova_project_single .project-related .item .ova-media .content .sub_title {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.4;
  text-transform: uppercase;
  color: #fff;
}