/** PROJECT
--------------------------------------------- */
/** Page Project
--------------------------------------------- */
.gv_page_project {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}
.gv_page_project .container > .row {
  margin-left: -10px;
  margin-right: -10px;
  align-items: stretch;
}
.gv_page_project .container > .row > [class*=col-] {
  padding-left: 10px;
  padding-right: 10px;
  min-height: 100%;
}
.gv_page_project .project-item {
  padding-top: 10px;
  padding-bottom: 10px;
}

/** Project Category
--------------------------------------------- */
.gv_project_category {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}
.gv_project_category .container > .row {
  margin-left: -10px;
  margin-right: -10px;
  align-items: stretch;
}
.gv_project_category .container > .row > [class*=col-] {
  padding-left: 10px;
  padding-right: 10px;
  min-height: 100%;
}
.gv_project_category .project-item {
  padding-top: 10px;
  padding-bottom: 10px;
}

/** Project Single
--------------------------------------------- */
.gv_project_single {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}
/** Project Gallery
--------------------------------------------- */
.project-gallery {
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
}
.project-gallery .owl-carousel .owl-nav [class*=owl-] {
  height: 40px;
  width: 40px;
  margin: 0;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mainColor);
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
}
.project-gallery .owl-carousel .owl-nav [class*=owl-] i {
  font-size: 16px;
}
.project-gallery .owl-carousel .owl-nav .owl-prev {
  left: 10px;
}
.project-gallery .owl-carousel .owl-nav .owl-next {
  right: 10px;
}
.project-gallery .owl-carousel .owl-dots {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}
.project-gallery .owl-carousel .owl-dots .owl-dot span {
  height: 10px;
  width: 10px;
  background: #888;
  border-radius: 20px;
  transition: all 0.4s ease 0s;
}
.project-gallery .owl-carousel .owl-dots .owl-dot.active span {
  background: var(--secondColor);
  width: 14px;
}
.project-gallery .gallery-item a {
  position: relative;
  padding-bottom: 56%;
  display: block;
  width: 100%;
  background-position: center;
}
.project-gallery .gallery-item a img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

/** Project Info
--------------------------------------------- */
.project-info {
  position: relative;
  padding-bottom: 30px;
}
.project-info .name {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.project-info .name h1 {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--mainColor);
  margin-bottom: 0;
  margin-right: 15px;
}
@media (max-width: 991px) {
  .project-info .name h1 {
    font-size: 26px;
  }
}
.project-info .name span {
  display: inline-block;
  padding: 3px 12px;
  line-height: 20px;
  background: var(--thirdColor);
  color: #fff;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 400;
}
.project-info .place {
  padding-top: 5px;
  position: relative;
}
.project-info .place p {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  font-weight: 400;
  display: block;
  line-height: 1.55;
}
.project-info .place p i {
  background-image: url(../images/icon-location.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  left: 0px;
  top: 3px;
  width: 13px;
  height: 17px;
}

/** Project Detail
--------------------------------------------- */
.project-detail {
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
}
.project-detail .toc-wrap {
  width: 100%;
  max-width: 400px;
  border-radius: 0.375rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  background-color: #f9fafb;
  border-width: 1px;
  border-color: #d2d6dc;
  margin-bottom: 16px;
}
.project-detail .toc-wrap ::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}
.project-detail .toc-wrap ::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #cccccc;
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
.project-detail .toc-wrap .toc-title {
  font-family: "Montserrat", sans-serif;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid #ccc;
}
.project-detail .toc-wrap #toc {
  max-height: 200px;
  padding: 1rem;
  overflow-y: scroll;
}
.project-detail .toc-wrap #toc a:hover {
  text-decoration: underline;
}
.project-detail .toc-wrap #toc ul {
  padding-left: 15px;
  margin-bottom: 0;
}
.project-detail .toc-wrap #toc ul > .toc-item {
  padding: 0.1em 0;
}
.project-detail .toc-wrap #toc ul > .toc-item > a {
  color: #333;
  font-size: 15px;
  padding: 0.25em 0.5em;
  font-weight: 400;
}
.project-detail .toc-wrap #toc ul > .toc-h2 > a {
  font-weight: 500;
}
.project-detail .toc-wrap #toc ul .toc-active {
  font-weight: bold;
  color: #2563eb;
}
.project-detail .toc-wrap #toc ul .toc-h2 {
  margin-left: 0.5em;
  font-weight: 500;
}
.project-detail .toc-wrap #toc ul .toc-h3 {
  margin-left: 1.75em;
}
.project-detail .toc-wrap #toc ul .toc-h4 {
  margin-left: 3em;
}
.project-detail .toc-wrap #toc ul .toc-h5 {
  margin-left: 4.25em;
}
.project-detail .toc-wrap #toc ul .toc-h6 {
  margin-left: 5.5em;
}
/** Project Rating
--------------------------------------------- */
.project-rating {
  position: relative;
  padding-bottom: 30px;
}

/** Project Related
--------------------------------------------- */
.project-related {
  position: relative;
  padding-bottom: 30px;
}
.project-related .owl-carousel .owl-nav [class*=owl-] {
  height: 36px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondColor);
  color: #fff;
  border-radius: 100%;
  margin: 0;
}
.project-related .owl-carousel .owl-nav [class*=owl-] i {
  font-size: 16px;
}
.project-related .owl-carousel .owl-nav .owl-prev {
  left: -15px;
}
@media (max-width: 575px) {
  .project-related .owl-carousel .owl-nav .owl-prev {
    left: -10px;
  }
}
.project-related .owl-carousel .owl-nav .owl-prev:hover {
  background: var(--secondColor);
}
.project-related .owl-carousel .owl-nav .owl-next {
  right: -15px;
}
@media (max-width: 575px) {
  .project-related .owl-carousel .owl-nav .owl-next {
    right: -10px;
  }
}
.project-related .owl-carousel .owl-nav .owl-next:hover {
  background: var(--secondColor);
}
.project-related .project-item .inner .image {
  position: relative;
}
.project-related .project-item .inner .image a {
  padding-bottom: 80%;
  display: block;
  position: relative;
  width: 100%;
  background-position: center;
  overflow: hidden;
}
.project-related .project-item .inner .image a::after {
  content: "";
  position: absolute;
  height: 50%;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(rgba(13, 33, 70, 0) 10%, rgba(13, 33, 70, 0.45) 45%, rgba(13, 33, 70, 0.85) 65%, rgb(13, 33, 70) 80%);
}
.project-related .project-item .inner .image a img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  height: 100%;
  width: 100%;
  transition: all 0.4s ease 0s;
}
.project-related .project-item .inner .name {
  position: absolute;
  z-index: 3;
  padding: 15px;
  left: 0;
  bottom: 0;
  width: 100%;
  display: block;
}
.project-related .project-item .inner .name h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.4px;
}
.project-related .project-item .inner .name h3 a {
  color: #fff;
}

/** Post Related
--------------------------------------------- */
.post-related .owl-carousel .owl-nav [class*=owl-] {
  height: 36px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondColor);
  color: #fff;
  border-radius: 100%;
  margin: 0;
}
.post-related .owl-carousel .owl-nav [class*=owl-] i {
  font-size: 16px;
}
.post-related .owl-carousel .owl-nav .owl-prev {
  left: -15px;
}
@media (max-width: 575px) {
  .post-related .owl-carousel .owl-nav .owl-prev {
    left: -10px;
  }
}
.post-related .owl-carousel .owl-nav .owl-prev:hover {
  background: var(--secondColor);
}
.post-related .owl-carousel .owl-nav .owl-next {
  right: -15px;
}
@media (max-width: 575px) {
  .post-related .owl-carousel .owl-nav .owl-next {
    right: -10px;
  }
}
.post-related .owl-carousel .owl-nav .owl-next:hover {
  background: var(--secondColor);
}
/** Contact Box
--------------------------------------------- */
.contact-box {
  background: #f3f3f3;
  padding: 15px;
  border-radius: 6px;
  font-size: 15px;
  letter-spacing: 0.4px;
  margin-bottom: 25px;
  font-weight: 500;
  line-height: 1.6;
}
.contact-box .duration, .contact-box .phone, .contact-box .email, .contact-box .address {
  line-height: 1.8;
}
.contact-box .duration span {
  background: red;
  font-size: 14px;
  padding: 1px 6px;
  display: inline-block;
  border-radius: 3px;
  color: #fff;
  letter-spacing: 1px;
  font-weight: 400;
}

/** Search Blog
--------------------------------------------- */
.gv_search_blog {
  position: relative;
  overflow: hidden;
}
.gv_search_blog .search-box .search_item {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px dotted #f4f4f4;
}
.gv_search_blog .search-box .search_item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}/*# sourceMappingURL=project.css.map */