/** Project
--------------------------------------------- */
/** Meta Box
--------------------------------------------- */
.meta-box {
  display: block;
  padding-bottom: 10px;
}
.meta-box span {
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  color: #666;
}
.meta-box span.spane {
  font-style: normal;
  padding-right: 10px;
  padding-left: 10px;
  color: var(--primary-Color);
}

/** Comment Box
--------------------------------------------- */
.comment-box {
  position: relative;
}
.comment-box .list-comment > h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 15px;
}
.comment-box .list-comment ul.list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.comment-box .list-comment ul.list > li {
  padding-bottom: 25px;
}
.comment-box .list-comment ul.list > li:last-child {
  padding-bottom: 10px;
}
.comment-box .form-comment > .row {
  margin-right: -10px;
  margin-left: -10px;
}
.comment-box .form-comment > .row > [class*=col-] {
  padding-left: 10px;
  padding-right: 10px;
}
.comment-box .form-comment .rating-box {
  padding-bottom: 10px;
  position: relative;
}
.comment-box .form-comment .rating-box h4 {
  font-size: 14px;
  font-weight: 400;
  color: #666;
}
.comment-box .form-comment .rating-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.comment-box .form-comment .rating-box ul > li {
  display: inline-block;
  padding-right: 10px;
}
.comment-box .form-comment .rating-box ul > li input {
  display: none;
}
.comment-box .form-comment .rating-box ul > li label {
  display: inline-block;
  margin: 0;
  position: relative;
  padding: 0;
}
.comment-box .form-comment .rating-box ul > li label span::before {
  display: inline-block;
  font-family: "Font Awesome 6 Free";
  font-size: 15px;
}
.comment-box .form-comment .rating-box ul > li label span.rg {
  display: block;
}
.comment-box .form-comment .rating-box ul > li label span.rg::before {
  font-weight: 400;
  color: #aaa;
}
.comment-box .form-comment .rating-box ul > li label span.at {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -3;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease 0s;
}
.comment-box .form-comment .rating-box ul > li label span.at::before {
  color: #e7ab2d;
  font-weight: 900;
}
.comment-box .form-comment .rating-box ul > li label:hover span.at {
  opacity: 1;
  visibility: visible;
  z-index: 3;
}
.comment-box .form-comment .rating-box ul > li input:checked ~ label span.at {
  opacity: 1;
  visibility: visible;
  z-index: 3;
}
.comment-box .form-comment .rating-box ul > li.rate-1 label span::before {
  content: "\f005";
}
.comment-box .form-comment .rating-box ul > li.rate-2 label span::before {
  content: "\f005\f005";
}
.comment-box .form-comment .rating-box ul > li.rate-3 label span::before {
  content: "\f005\f005\f005";
}
.comment-box .form-comment .rating-box ul > li.rate-4 label span::before {
  content: "\f005\f005\f005\f005";
}
.comment-box .form-comment .rating-box ul > li.rate-5 label span::before {
  content: "\f005\f005\f005\f005\f005";
}
.comment-box .form-comment .form-group {
  padding: 10px 0;
  position: relative;
}
.comment-box .form-comment .form-group input[type=text],
.comment-box .form-comment .form-group input[type=email],
.comment-box .form-comment .form-group input[type=tel],
.comment-box .form-comment .form-group select, .comment-box .form-comment .form-group textarea {
  padding: 8px 15px;
  border: 1px solid var(--primary-Color);
  background: rgba(0, 0, 0, 0.01);
  border-radius: 4px;
  outline: none;
  line-height: 20px;
  color: var(--primary-Color);
  width: 100%;
}
.comment-box .form-comment .form-group button {
  border: 0;
  background: var(--second-Color);
  color: #fff;
  outline: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/** Project Form
--------------------------------------------- */
.project-form {
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
}
.project-form .form-box {
  background: var(--second-Color);
  padding: 25px 30px;
  border-radius: 3px;
}
.project-form .form-box .head_box .title {
  color: #fff;
}
.project-form .form-box .head_box .divide::before {
  background: #fff;
}
.project-form .form-box .form-project > .row {
  align-items: center;
}
.project-form .form-box .form-project > .row > [class*=col-] {
  padding-top: 5px;
  padding-bottom: 5px;
}
.project-form .form-box .form-project .form_input input[type=text],
.project-form .form-box .form-project .form_input input[type=tel],
.project-form .form-box .form-project .form_input input[type=email],
.project-form .form-box .form-project .form_input input[type=date],
.project-form .form-box .form-project .form_input select, .project-form .form-box .form-project .form_input textarea {
  outline: none;
  width: 100%;
  border: 0;
  background: #fff;
  border-radius: 5px;
  padding: 13px 15px;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: 0.4px;
}
.project-form .form-box .form-project .form_input button {
  border: 0;
  outline: none;
  padding: 13px 15px;
  line-height: 20px;
  width: auto;
  background: #035289;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
}

/** Detail Box
--------------------------------------------- */
.detail-box {
  padding-bottom: 25px;
  position: relative;
}
.detail-box .detail-inner {
  position: relative;
  margin-bottom: 25px;
}
.detail-box .detail-inner .name {
  font-size: 16px;
  position: relative;
  margin-bottom: 2px;
}
.detail-box .detail-inner .name span {
  display: inline-block;
  font-weight: 600;
  background: var(--second-Color);
  padding: 10px 16px;
  border-radius: 8px 8px 0 0;
  line-height: 22px;
  letter-spacing: 0.4px;
  color: #fff;
}
.detail-box .detail-inner .entry-content {
  padding: 16px;
  border-radius: 0 0 8px 8px;
  background: #f6f6f6;
}
.detail-box .detail-inner:nth-child(even) .entry-content {
  background: #f0f0f0;
}
.detail-box .detail-inner:last-child {
  margin-bottom: 0;
}

/** Project Menu
--------------------------------------------- */
.project-menu {
  top: inherit;
  position: fixed;
  margin-top: 20px;
  margin-left: -64px;
  z-index: 11;
  color: #fff;
  transition: all 0.4s ease 0s;
  width: 50px;
  border-radius: 6px;
  overflow: hidden;
  padding-top: 51px;
}
.project-menu > button {
  width: 50px;
  height: 50px;
  background: #035289;
  transform: rotate(90deg);
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  border: 0;
  outline: none;
  padding: 0;
  transition: all 0.4s ease 0s;
}
.project-menu > button i {
  font-size: 20px;
}
.project-menu > ul.menu {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  background: var(--primary-Color);
}
.project-menu > ul.menu > li {
  display: block;
  position: relative;
}
.project-menu > ul.menu > li > a {
  font-size: 15px;
  padding: 10px 10px;
  display: block;
  color: #fff;
  letter-spacing: 0.5px;
  position: relative;
  border-bottom: 1px solid #fff;
  text-align: center;
}
.project-menu > ul.menu > li > a > i {
  font-size: 20px;
}
.project-menu > ul.menu > li > a > span {
  opacity: 0;
  visibility: hidden;
  z-index: -5;
  left: 100%;
  top: 50%;
  background: #ccc;
  color: var(--primary-Color);
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  margin-left: 10px;
  transform: translateY(-50%);
  white-space: nowrap;
  padding: 5px 12px;
  line-height: 20px;
}
.project-menu > ul.menu > li > a > span::before {
  content: "";
  height: 10px;
  width: 8px;
  left: -8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ccc;
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
          clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
.project-menu > ul.menu > li > a:hover > span {
  opacity: 1;
  visibility: visible;
  z-index: 3;
}

@media (max-width: 1023px) {
  .project-menu {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .project-menu {
    left: 0;
    top: 50%;
    margin-top: 0;
    margin-left: 0;
    transform: translateX(-100%) translateY(-50%);
  }
  .project-menu > button {
    left: 100%;
    transform: rotate(0deg);
  }
  .project-menu > button.active {
    transform: rotate(180deg);
    left: 0;
  }
  .project-menu.show {
    transform: translateX(0) translateY(-50%);
  }
}
/** Document Box
--------------------------------------------- */
.document-box {
  padding-bottom: 10px;
}
.document-box > .row > [class*=col-] {
  padding-bottom: 10px;
  padding-top: 10px;
}
.document-box .document ul.list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.document-box .document ul.list > li {
  display: block;
  padding-bottom: 15px;
}
.document-box .document ul.list > li > a {
  display: flex;
  background: #f9f9f9;
  border-radius: 7px;
  overflow: hidden;
  align-items: center;
  width: 100%;
  padding: 5px;
  transition: all 0.4s ease 0;
}
.document-box .document ul.list > li > a .icon {
  position: relative;
  display: block;
}
.document-box .document ul.list > li > a .icon span {
  display: inline-block;
  position: relative;
}
.document-box .document ul.list > li > a .icon span img {
  height: 50px;
  width: auto;
}
.document-box .document ul.list > li > a .icon span i {
  color: white;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4px;
  z-index: 2;
}
.document-box .document ul.list > li > a .name {
  flex: 1;
  padding-left: 15px;
  font-size: 15px;
  text-transform: uppercase;
  color: #333;
}
.document-box .document ul.list > li > a:hover {
  background: #bbb;
}
.document-box .library .owl-carousel .owl-stage-outer {
  border-radius: 10px;
}
.document-box .library .owl-carousel .owl-nav [class*=owl-] i {
  height: 30px;
  width: 22px;
}
.document-box .library .library-inner {
  position: relative;
  overflow: hidden;
}
.document-box .library .library-inner .box {
  display: block;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.document-box .library .library-inner .box .image span {
  padding-bottom: 64%;
  display: block;
  width: 100%;
  position: relative;
  background-position: center;
}
.document-box .library .library-inner .box .image span 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%;
}
.document-box .library .library-inner .box h4 {
  position: absolute;
  left: 10px;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.69);
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  padding: 10px 15px;
  margin: 0 0 10px;
  border-radius: 4px;
}

/** Gallery Box
--------------------------------------------- */
.gallery-box {
  position: relative;
}
.gallery-box .owl-carousel .owl-stage-outer {
  border-radius: 8px;
}
.gallery-box .owl-carousel .owl-nav > [class*=owl-] > [class*=icon-arrow-] {
  height: 36px;
  width: 24px;
  margin: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
}
.gallery-box .owl-carousel .owl-nav .owl-prev {
  left: 20px;
}
.gallery-box .owl-carousel .owl-nav .owl-next {
  right: 20px;
}
.gallery-box .gallery-inner a {
  position: relative;
  display: block;
  padding-bottom: 68%;
  background-position: center;
  width: 100%;
}
.gallery-box .gallery-inner 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%;
}
.gallery-box .gallery-item .image a {
  position: relative;
  padding-bottom: 60%;
  display: block;
  background-position: center;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
}
.gallery-box .gallery-item .image a img {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  position: absolute;
  width: 100%;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-box .gallery-item .image a::before {
  content: "";
  position: absolute;
  transition: all 0.45s ease 0s;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  background: #000;
  z-index: -3;
  opacity: 0;
}
.gallery-box .gallery-item .image a strong {
  display: block;
  font-weight: 500;
  padding: 10px 15px;
  line-height: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.gallery-box .gallery-item .image a span {
  display: flex;
  height: 44px;
  width: 44px;
  border: 2px solid #fff;
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  align-items: center;
  justify-content: center;
  z-index: 5;
  color: #fff;
}
.gallery-box .gallery-item .image a span i {
  font-size: 34px;
}
.gallery-box .gallery-item .image:hover a::before {
  opacity: 0.33;
  z-index: 1;
}
.gallery-box .gallery-item.last .image a::before {
  opacity: 0.88;
  z-index: 1;
}

/** Image Box
--------------------------------------------- */
.image-box > a {
  position: relative;
  display: block;
  padding-bottom: 68%;
  background-position: center;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.image-box > 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%;
}

/** Info Box
--------------------------------------------- */
.info-box {
  position: relative;
}
.info-box h2.name {
  position: relative;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #000;
  margin-bottom: 10px;
}
.info-box .price {
  position: relative;
  padding-bottom: 15px;
  font-size: 15px;
  font-weight: 500;
}
.info-box .price > p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}
.info-box .price span {
  color: var(--second-Color);
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
}
.info-box h4.title {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 10px;
}
.info-box .desc {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
}
.info-box .phone > a {
  display: inline-block;
  background: var(--second-Color);
  padding: 12px 20px;
  border-radius: 8px;
  color: #fff;
  line-height: 22px;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

/** Related Post
--------------------------------------------- */
.related-post .list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.related-post .list > li {
  padding: 10px 0;
  display: block;
  position: relative;
}
.related-post .list > li .inner {
  display: flex;
  align-items: center;
}
.related-post .list > li .inner .image {
  max-width: 58px;
  min-width: 58px;
}
.related-post .list > li .inner .image > a {
  position: relative;
  display: block;
}
.related-post .list > li .inner .image > a img {
  height: 58px;
  width: 58px;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.related-post .list > li .inner .info {
  flex: 1;
  width: 100%;
  padding-left: 12px;
}
.related-post .list > li .inner .info h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 4px;
}
.related-post .list > li .inner .info h3 a {
  color: #000;
}
.related-post .list > li .inner .info h3 a:hover {
  color: var(--primary-Color);
}
.related-post .list > li .inner .info .date {
  font-size: 14px;
  font-weight: 400;
  color: #888;
  font-style: italic;
}

/** Sumary Box
--------------------------------------------- */
.sumary-box {
  position: relative;
}
.sumary-box > .row [class*=col-] {
  padding-bottom: 20px;
}
.sumary-box .image {
  padding-bottom: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  background-position: center;
  border-radius: 8px;
}
.sumary-box .image img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.sumary-box .info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sumary-box .info ul > li {
  padding: 8px 0;
  position: relative;
}
.sumary-box .info ul > li p {
  margin: 0;
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #333;
}
.sumary-box .info ul > li p span.salary {
  color: red;
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 16px;
}
.sumary-box .info ul > li p span.duration {
  background: red;
  font-size: 14px;
  padding: 4px 10px;
  display: inline-block;
  border-radius: 3px;
  color: #fff;
  letter-spacing: 1px;
  font-weight: 400;
}

/** 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;
}

/** Contact Wrap
--------------------------------------------- */
.contact-wrap {
  position: relative;
  overflow: hidden;
}
.contact-wrap > .row {
  margin-left: 0;
  margin-right: 0;
}
.contact-wrap > .row > [class*=col-] {
  padding-left: 0;
  padding-right: 0;
}
.contact-wrap .contact {
  padding: 30px;
  position: relative;
}
.contact-wrap .contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-wrap .contact ul > li {
  padding-bottom: 40px;
  display: flex;
  align-items: center;
}
.contact-wrap .contact ul > li .icon span {
  height: 66px;
  min-width: 66px;
  max-width: 66px;
  border-radius: 10px;
  background: var(--primary-Color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-wrap .contact ul > li .icon span i {
  font-size: 25px;
}
.contact-wrap .contact ul > li .info {
  flex: 1;
  padding-left: 20px;
}
.contact-wrap .contact ul > li .info p {
  font-size: 15px;
  margin-bottom: 2px;
  color: #000;
}
.contact-wrap .contact ul > li .info b {
  font-size: 20px;
  color: #000;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
}
.contact-wrap .contact ul > li .info span {
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
}
.contact-wrap .contact ul > li:last-child {
  padding-bottom: 0;
}
.contact-wrap .form {
  background: #f1f1f1;
  padding: 30px;
}
.contact-wrap .form .form-box form > .row {
  align-items: center;
}
.contact-wrap .form .form-box form > .row > [class*=col-] {
  padding-bottom: 20px;
}
.contact-wrap .form .form-box form > .row > [class*=col-]:last-child {
  padding-bottom: 0;
}
.contact-wrap .form .form-box form .form_input input[type=text],
.contact-wrap .form .form-box form .form_input input[type=tel],
.contact-wrap .form .form-box form .form_input input[type=email],
.contact-wrap .form .form-box form .form_input input[type=date],
.contact-wrap .form .form-box form .form_input select, .contact-wrap .form .form-box form .form_input textarea {
  outline: none;
  width: 100%;
  border: 0;
  background: #fff;
  border-radius: 5px;
  padding: 13px 15px;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: 0.4px;
}
.contact-wrap .form .form-box form .form_input textarea {
  height: 80px;
}
.contact-wrap .form .form-box form .form_input button {
  border: 0;
  outline: none;
  padding: 13px 15px;
  line-height: 20px;
  width: auto;
  background: var(--second-Color);
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: 767px) {
  .contact-wrap .contact {
    padding: 30px 20px;
  }
  .contact-wrap .form {
    background: #f1f1f1;
    padding: 30px 20px;
  }
}
/** Leader Box
--------------------------------------------- */
.leader-box {
  position: relative;
  overflow: hidden;
}
.leader-box > .row {
  margin-left: 0;
  margin-right: 0;
  align-items: stretch;
}
.leader-box > .row > [class*=col-] {
  padding-left: 0;
  padding-right: 0;
  min-height: 100%;
}
.leader-box .info {
  background: #553010;
  padding: 30px 30px;
  height: 100%;
  color: #fff;
}
.leader-box .info .avatar {
  padding-bottom: 20px;
  display: flex;
  justify-content: center;
}
.leader-box .info .avatar span {
  height: 140px;
  width: 140px;
  display: block;
}
.leader-box .info .avatar span img {
  height: 100%;
  width: 100%;
  border-radius: 100%;
  box-shadow: 0px 0px 3px 0px #f1f1f1;
}
.leader-box .info .name {
  text-align: center;
  padding-bottom: 5px;
}
.leader-box .info .name h1 {
  font-size: 19px;
  font-weight: 500;
  margin: 0;
  color: #fff;
}
.leader-box .info .regency {
  font-size: 17px;
  font-weight: 400;
  text-align: center;
  padding-bottom: 20px;
}
.leader-box .info .desc {
  font-size: 15px;
  font-style: italic;
  line-height: 1.56;
}
.leader-box .content {
  padding: 30px 30px;
  position: relative;
}
@media (max-width: 767px) {
  .leader-box .info {
    padding: 30px 20px;
  }
  .leader-box .content {
    background: #f1f1f1;
    padding: 30px 20px;
  }
}
/** Children Box
--------------------------------------------- */
.children-box {
  position: relative;
  padding-bottom: 20px;
}
.children-box .child-item {
  position: relative;
}
.children-box .child-item .inner {
  padding: 15px 0;
}
.children-box .child-item .inner .box {
  position: relative;
}
.children-box .child-item .inner .box .image {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.children-box .child-item .inner .box .image span {
  padding-bottom: 68%;
  display: block;
  width: 100%;
  position: relative;
  background-position: center;
}
.children-box .child-item .inner .box .image span 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%;
}
.children-box .child-item .inner .box .name {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 15px;
}
.children-box .child-item .inner .box .name h3 {
  background: rgba(0, 50, 85, 0.82);
  color: #fff;
  text-align: center;
  font-size: 15px;
  margin: 0;
  display: block;
  padding: 15px 20px;
  border-radius: 4px;
  text-transform: uppercase;
  line-height: 20px;
}

/** Project Category
--------------------------------------------- */
.gv_project_category {
  position: relative;
  overflow: hidden;
}
.gv_project_category .category-box {
  position: relative;
}
.gv_project_category .category-box > .row {
  margin-right: -7px;
  margin-left: -7px;
  align-items: stretch;
}
.gv_project_category .category-box > .row > [class*=col-] {
  padding-left: 7px;
  padding-right: 7px;
  min-height: 100%;
}
.gv_project_category .category-box .project_item {
  padding-top: 20px;
  padding-bottom: 30px;
}
.gv_project_category .category-box .project_item .project_inner {
  height: 100%;
}

/** Post Taxonomy
--------------------------------------------- */
.gv_post_taxonomy {
  position: relative;
  overflow: hidden;
}
.gv_post_taxonomy .container > .row > [class*=col-] {
  padding-top: 10px;
  padding-bottom: 10px;
}
.gv_post_taxonomy .taxonomy-box .article_item .post_inner {
  margin-bottom: 35px;
}
.gv_post_taxonomy .taxonomy-box .article_item:last-child {
  margin-bottom: 20px;
}

/** Recruit Archive
--------------------------------------------- */
.gv_recruit_archive {
  position: relative;
  overflow: hidden;
}
.gv_recruit_archive .recruit-box > .row {
  align-items: stretch;
}
.gv_recruit_archive .recruit-box > .row [class*=col-] {
  min-height: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
}
.gv_recruit_archive .recruit-box .recruit_item .recruit_inner {
  height: 100%;
}

/** Post Single
--------------------------------------------- */
.gv_post_single {
  position: relative;
  overflow: hidden;
}
.gv_post_single .container > .row > [class*=col-] {
  padding-top: 10px;
  padding-bottom: 10px;
}

/** Page Single
--------------------------------------------- */
.gv_page_single {
  position: relative;
  overflow: hidden;
}
/** Project Single
--------------------------------------------- */
.gv_project_detail {
  position: relative;
  overflow: hidden;
}
.gv_project_detail .container > .row {
  padding-bottom: 10px;
  padding-top: 10px;
}
.gv_project_detail .container > .row > [class*=col-] {
  padding-top: 10px;
  padding-bottom: 10px;
}

/** Library Single
--------------------------------------------- */
.gv_library_single {
  position: relative;
  overflow: hidden;
}
.gv_library_single .gallery-box > .row {
  margin-right: -7px;
  margin-left: -7px;
}
.gv_library_single .gallery-box > .row [class*=col-] {
  padding-left: 7px;
  padding-right: 7px;
}
.gv_library_single .gallery-box .gallery-item .image {
  padding: 7px 0;
}

/** Library Archive
--------------------------------------------- */
.gv_library_archive {
  position: relative;
  overflow: hidden;
}
.gv_library_archive .library-nav {
  list-style: none;
  padding: 0 0 15px;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.gv_library_archive .library-nav > li {
  display: inline-block;
  padding: 5px 5px;
}
.gv_library_archive .library-nav > li span {
  cursor: pointer;
  padding: 10px 12px 10px;
  line-height: 20px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  display: block;
  background: var(--primary-Color);
  color: #fff;
  border-radius: 8px;
  width: 140px;
  text-align: center;
}
.gv_library_archive .library-nav > li span:hover {
  background: var(--second-Color);
}
.gv_library_archive .library-nav > li.active span {
  background: var(--second-Color);
}
.gv_library_archive .library-tab .gallery-item .inner {
  padding: 15px 0 15px;
}
.gv_library_archive .library-tab .gallery-item .inner .image {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.gv_library_archive .library-tab .gallery-item .inner .image a {
  position: relative;
  padding-bottom: 60%;
  display: block;
  background-position: center;
  width: 100%;
}
.gv_library_archive .library-tab .gallery-item .inner .image a img {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  position: absolute;
  width: 100%;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gv_library_archive .library-tab .gallery-item .inner .info {
  position: relative;
  padding-top: 2px;
}
.gv_library_archive .library-tab .gallery-item .inner .info h3 {
  background: var(--primary-Color);
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 0 0 8px 8px;
  z-index: 3;
  margin-bottom: 0;
}
.gv_library_archive .library-tab .gallery-item .inner .info h3 > a {
  color: #fff;
  text-align: center;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 38px;
  overflow: hidden;
}
.gv_library_archive .library-tab .video-item .inner {
  padding: 15px 0 15px;
}
.gv_library_archive .library-tab .video-item .inner .image {
  border-radius: 8px;
  overflow: hidden;
}
.gv_library_archive .library-tab .video-item .inner .image a {
  position: relative;
  padding-bottom: 60%;
  display: block;
  background-position: center;
  width: 100%;
  color: #fff;
}
.gv_library_archive .library-tab .video-item .inner .image a img {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  position: absolute;
  width: 100%;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gv_library_archive .library-tab .video-item .inner .image a span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 4;
}
.gv_library_archive .library-tab .video-item .inner .image a span i {
  font-size: 30px;
  color: #fff;
  opacity: 0.8;
  padding-left: 3px;
}
.gv_library_archive .library-tab .video-item .inner .image a h3 {
  position: absolute;
  bottom: 8px;
  left: 10px;
  right: 10px;
  background: rgba(161, 0, 0, 0.86);
  font-size: 16px;
  padding: 10px;
  border-radius: 6px;
  z-index: 3;
  margin-bottom: 0;
}
.gv_library_archive .library-tab .video-item .inner .image a h3 > a {
  color: #fff;
  text-align: center;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 38px;
  overflow: hidden;
}

@media (max-width: 575px) {
  .gv_library_archive .library-nav > li {
    display: inline-block;
    padding: 5px 5px;
    flex: 0 0 50%;
    max-width: 50%;
    text-align: center;
  }
  .gv_library_archive .library-nav > li span {
    padding: 11px 10px 9px;
    line-height: 20px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.3px;
  }
}
/** Project Archive
--------------------------------------------- */
.gv_project_archive {
  position: relative;
  overflow: hidden;
}
.gv_project_archive .project-nav {
  list-style: none;
  padding: 0 0 15px;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.gv_project_archive .project-nav > li {
  display: inline-block;
  padding: 5px 15px;
}
.gv_project_archive .project-nav > li span {
  cursor: pointer;
  padding: 10px 16px 10px;
  line-height: 20px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  display: block;
  background: var(--primary-Color);
  color: #fff;
  border-radius: 8px;
}
.gv_project_archive .project-nav > li span:hover {
  background: #035289;
}
.gv_project_archive .project-nav > li.active span {
  background: #035289;
}
.gv_project_archive .project-tab .tab_pane > .row {
  margin-right: -7px;
  margin-left: -7px;
  align-items: stretch;
}
.gv_project_archive .project-tab .tab_pane > .row > [class*=col-] {
  padding-left: 7px;
  padding-right: 7px;
  min-height: 100%;
}
.gv_project_archive .project-tab .project_item {
  padding-top: 20px;
  padding-bottom: 30px;
}
.gv_project_archive .project-tab .project_item .project_inner {
  height: 100%;
}

@media (max-width: 575px) {
  .gv_project_archive .project-nav > li {
    display: inline-block;
    padding: 5px 5px;
    flex: 0 0 50%;
    max-width: 50%;
    text-align: center;
  }
  .gv_project_archive .project-nav > li span {
    padding: 11px 10px 9px;
    line-height: 20px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.3px;
  }
}
/** Leader Single
--------------------------------------------- */
.gv_leader_single {
  position: relative;
  overflow: hidden;
}
/** Page Contact
--------------------------------------------- */
.gv_page_contact {
  position: relative;
  overflow: hidden;
}
/** 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 */