.select-content {
  position: relative;
}
.select-content::after {
  content: "\f107";
  font-family: "Line Awesome Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  inset-inline-end: 20px;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--primary-color);
  opacity: 0.502;
}

.form-group {
  margin: 0 0;
}

.form-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 26px;
}
@media (max-width: 991px) {
  .form-label {
    margin-bottom: 5px;
  }
}

.form-control {
  width: 100%;
  height: 52px;
  border-radius: 5px;
  background-color: #fff;
  padding: 0 20px;
  color: var(--text-color);
  font-weight: 500;
  font-size: 16px;
  border: 1px solid rgba(4, 71, 63, 0.5019607843);
}
.form-control:focus {
  outline: none !important;
  box-shadow: none !important;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 44px;
}
.pagination a {
  position: relative;
  font-size: 21px;
  font-weight: 500;
  color: #a4a4a4;
  transition: all 0.3s ease-in-out;
}
.pagination a::after {
  content: "";
  position: absolute;
  top: 100%;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--primary-color);
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
.pagination a:hover {
  color: var(--primary-color);
}
.pagination a.active {
  color: var(--text-color);
}
.pagination a.active::after {
  display: block;
}
.pagination i {
  width: 54px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  font-size: 24px;
  transition: all 0.3s ease-in-out;
}
.pagination i:hover {
  background-color: var(--secondary-color);
  color: #fff;
}
.pagination .disabled {
  pointer-events: none;
}
.pagination .disabled i {
  border-color: #d8d8d8;
  color: #d8d8d8;
}
@media (max-width: 767px) {
  .pagination a:has(i) {
    display: none;
  }
}

.inner-page .header-section {
  box-shadow: 0px 3px 15px rgba(4, 71, 63, 0.1019607843);
}

.breadcrumb-section {
  padding: 55px 0 0;
}
@media (max-width: 767px) {
  .breadcrumb-section {
    display: none;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: start;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #707070;
  font-weight: 500;
}
.breadcrumb li:after {
  content: "/";
  margin: 0 11px;
}
.breadcrumb li:last-child {
  font-weight: 700;
}
.breadcrumb li:last-child:after {
  display: none;
}
.breadcrumb a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}
.breadcrumb a:hover {
  color: var(--primary-color);
}

.page-content {
  padding: 50px 0 90px;
  position: relative;
  transform: perspective(1px);
}
.page-content .pattern {
  position: absolute;
  top: -130px;
  inset-inline-start: -30px;
  opacity: 0.05;
  z-index: -1;
}
@media (max-width: 767px) {
  .page-content {
    padding: 50px 0;
  }
}

.page-head {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 27px;
  margin-bottom: 45px;
}
.page-head .page-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary-color);
  margin: 0;
}
.page-head .page-desc {
  font-size: 16px;
  font-weight: 500;
  color: #565656;
  line-height: 1;
  margin: 0;
}

.details-btn {
  position: absolute;
  bottom: 20px;
  inset-inline-end: 20px;
  min-width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 31px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .details-btn {
    min-width: 40px;
    height: 40px;
    border-radius: 20px;
  }
}
.details-btn i {
  font-size: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .details-btn i {
    font-size: 24px;
  }
}
.details-btn .text {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  width: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.details-btn:hover {
  background-color: var(--primary-color);
}
.details-btn:hover i {
  visibility: hidden;
  opacity: 0;
}
.details-btn:hover .text {
  width: 110px;
}
@media (max-width: 767px) {
  .details-btn:hover .text {
    width: 90px;
  }
}

.projects_page-content {
  width: 100%;
  max-width: 1342px;
  margin: 0 auto;
  background-color: #f9f9f9;
  border-radius: 15px 15px 0px 0px;
  padding: 45px 50px 50px;
  position: relative;
  transform: perspective(1px);
}
.projects_page-content .dots {
  position: absolute;
  top: -95px;
  inset-inline-end: -50px;
  z-index: -1;
}
@media (max-width: 1199px) {
  .projects_page-content {
    padding: 25px 30px 30px;
  }
}
@media (max-width: 767px) {
  .projects_page-content {
    padding: 20px 15px;
  }
  .projects_page-content .project-item .project-info {
    padding-inline: 0;
  }
}

.filter-content {
  margin-bottom: 40px;
}

.filter-btn {
  width: 64px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-color);
  background-color: #fff;
  font-size: 30px;
  color: var(--primary-color);
}
.filter-btn:hover {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}
.filter-btn.active {
  background-color: var(--primary-color);
  color: #fff;
}

.filter-body {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  display: none;
}

.filter-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  padding: 47px 0 25px;
}
@media (max-width: 991px) {
  .filter-form {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .filter-form {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px 0 0;
  }
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 41px;
}
@media (min-width: 1200px) {
  .projects-grid {
    gap: 30px 25px;
  }
}
@media (max-width: 1199px) {
  .projects-grid {
    gap: 30px 10px;
  }
}
@media (max-width: 991px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}
@media (max-width: 767px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.project_page-content {
  width: 100%;
  max-width: 1225px;
  margin: 0 auto;
  position: relative;
  transform: perspective(1px);
}
.project_page-content .dots {
  position: absolute;
  top: -95px;
  inset-inline-end: -50px;
  z-index: -1;
}

.project_desc-img {
  position: relative;
  width: 100%;
  height: 375px;
  background-color: #f7f7f7;
  border: 1px solid rgba(4, 71, 63, 0.3490196078);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .project_desc-img {
    height: 250px;
  }
}

.project_desc-info {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 991px) {
  .project_desc-info {
    flex-direction: column;
  }
}

.project_info-main {
  width: calc(50% - 20px);
  max-width: 445px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px 10px;
}
.project_info-main .full-w {
  width: 100%;
}
@media (max-width: 991px) {
  .project_info-main {
    width: 100%;
    max-width: none;
  }
}

.project_info-item {
  display: flex;
  flex-direction: column;
}
.project_info-item .title {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
  margin: 0 0 10px;
}
.project_info-item .text {
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: var(--primary-color);
}
.project_info-item .text.price {
  font-size: 30px;
}
@media (max-width: 767px) {
  .project_info-item .text.price {
    font-size: 21px;
  }
}
.project_info-item .project-progress {
  display: flex;
  align-items: center;
  gap: 10px;
}
.project_info-item .bar-contet {
  width: 386px;
  height: 20px;
  border-radius: 10px;
  background-color: #d8d8d8;
  overflow: hidden;
}
@media (max-width: 991px) {
  .project_info-item .bar-contet {
    width: 100%;
  }
}
.project_info-item .bar {
  background-color: var(--primary-color);
  height: 100%;
}
.project_info-item .percent {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
}

.project_info-form {
  background-color: #f7f7f7;
  border-radius: 10px;
  padding: 30px 25px 25px;
  width: calc(50% - 20px);
  max-width: 512px;
}
@media (max-width: 991px) {
  .project_info-form {
    width: 100%;
    max-width: none;
  }
}
@media (max-width: 767px) {
  .project_info-form {
    padding: 25px 20px;
  }
}
.project_info-form .form-label {
  font-size: 21px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .project_info-form .form-label {
    margin-bottom: 20px;
  }
}
.project_info-form .project-form {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px 15px;
}
@media (max-width: 767px) {
  .project_info-form .project-form {
    flex-direction: column;
  }
}
.project_info-form .input-content {
  position: relative;
  width: 100%;
}
.project_info-form .suffix {
  position: absolute;
  top: 50%;
  inset-inline-end: 20px;
  transform: translateY(-50%);
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
  opacity: 0.5;
  pointer-events: none;
}
.project_info-form .form-control {
  width: 100%;
  height: 62px;
  border-radius: 31px;
  border-color: #fff;
  box-shadow: 0px 5px 10px rgba(4, 71, 63, 0.1019607843);
}
html[dir=rtl] .project_info-form .form-control {
  direction: rtl;
}
.project_info-form .form-control:focus {
  border-color: var(--primary-color);
}
.project_info-form .sumbit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color);
  font-size: 21px;
  font-weight: 500;
  color: #fff;
  width: 134px;
  height: 62px;
  border-radius: 31px;
  flex-shrink: 0;
  transition: all 0.3s ease-in-out;
}
.project_info-form .sumbit-btn:hover {
  background-color: var(--primary-color);
  color: #fff;
}
@media (max-width: 767px) {
  .project_info-form .sumbit-btn {
    width: 100%;
  }
}

.blog_page-head {
  display: flex;
  gap: 29px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 120px;
}
@media (max-width: 991px) {
  .blog_page-head {
    flex-direction: column;
    margin-bottom: 40px;
  }
}
.blog_page-head .page-head {
  width: 58%;
  gap: 30px;
  margin: 0;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .blog_page-head .page-head {
    width: 100%;
  }
}
.blog_page-head .page-title {
  font-size: 36px;
}
@media (max-width: 991px) {
  .blog_page-head .page-title {
    font-size: 30px;
  }
}
.blog_page-head .page-desc {
  font-size: 16px;
  color: var(--primary-color);
  line-height: 1.4;
}
@media (min-width: 1500px) {
  .blog_page-head .page-desc {
    font-size: 21px;
  }
}

.blog-search {
  width: 100%;
}
.blog-search .search-input {
  background-color: #f7f7f7;
  border-color: #f7f7f7;
  border-radius: 10px;
  width: 100%;
  height: 60px;
  padding-inline-start: 70px;
  font-size: 22px;
  font-weight: 500;
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}
.blog-search .search-input::-moz-placeholder {
  opacity: 0.5;
  font-weight: 400;
}
.blog-search .search-input::placeholder {
  opacity: 0.5;
  font-weight: 400;
}
.blog-search .search-input:focus {
  border-color: var(--primary-color);
}
.blog-search .search-btn {
  inset-inline: unset;
  inset-inline-start: 18px;
  color: #164478;
  opacity: 0.5;
  height: 60px;
}
.blog-search .search-btn:hover {
  opacity: 1;
  color: var(--hover-color);
}

.blog_page-content {
  width: 100%;
  max-width: 1225px;
  margin: 0 auto;
}

.blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
@media (max-width: 767px) {
  .blog-list {
    gap: 30px;
  }
}

.blog-item.list-item {
  position: relative;
  width: 100%;
  height: 375px;
  background-color: #f7f7f7;
  border: 1px solid rgba(4, 71, 63, 0.3490196078);
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .blog-item.list-item {
    height: 250px;
  }
}

.post_page-head {
  display: flex;
  gap: 29px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .post_page-head {
    flex-direction: column;
    margin-bottom: 40px;
  }
}
.post_page-head .page-head {
  gap: 32px;
  margin: 0;
}
@media (max-width: 991px) {
  .post_page-head .page-head {
    width: 100%;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .post_page-head .page-title {
    font-size: 24px;
  }
}
.post_page-head .post-title {
  font-size: 50px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}
@media (max-width: 991px) {
  .post_page-head .post-title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .post_page-head .post-title {
    font-size: 30px;
  }
}

.post-share {
  display: flex;
  align-items: center;
  gap: 18px;
}
@media (max-width: 991px) {
  .post-share {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .post-share {
    width: 100%;
    justify-content: center;
  }
}

.share-method {
  width: 48px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1500px) {
  .share-method {
    width: 58px;
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .share-method {
    width: 40px;
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .share-method {
    width: 35px;
  }
}
.share-method.linkedin {
  background-color: #0077b5;
}
.share-method.facebook {
  background-color: #3b5998;
}
.share-method.twitter {
  background-color: #14171a;
}
.share-method.twitter i::before {
  filter: brightness(0) invert(1);
}
.share-method.whatsapp {
  background-color: #0dbb42;
}
.share-method:hover {
  color: #fff;
  background-color: var(--primary-color);
}

.post_page-content {
  width: 100%;
  max-width: 1250px;
}

.post-img {
  width: 100%;
  max-width: 950px;
  aspect-ratio: 950/400;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .post-img {
    margin-bottom: 30px;
  }
}

.post-desc {
  font-size: 21px;
  font-weight: 500;
  color: var(--primary-color);
  line-height: 1.4;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .post-desc {
    margin-bottom: 40px;
  }
}
.post-desc p {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .post-desc p {
    margin-bottom: 25px;
  }
}
.post-desc strong {
  font-weight: 700;
}
.post-desc :last-child {
  margin: 0;
}
@media (max-width: 1199px) {
  .post-desc {
    font-size: 16px;
  }
}

.post-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}
@media (min-width: 1500px) {
  .post-tags {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .post-tags {
    gap: 10px;
    margin-bottom: 40px;
  }
}
.post-tags .tag {
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-color);
  border-inline-start-width: 20px;
  padding: 0 25px;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  transform: perspective(1px);
  transition: all 0.3s ease-in-out;
}
.post-tags .tag::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  bottom: 0;
  inset-inline-start: 0;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
html[dir=ltr] .post-tags .tag::before {
  transform-origin: left;
}
.post-tags .tag:hover {
  color: #fff;
}
.post-tags .tag:hover::before {
  transform: scaleX(1);
}
@media (min-width: 1500px) {
  .post-tags .tag {
    padding: 0 57px;
  }
}
@media (max-width: 767px) {
  .post-tags .tag {
    border-inline-start-width: 1px;
    padding: 0 15px;
  }
}

.post-related {
  padding-top: 90px;
}
@media (max-width: 767px) {
  .post-related {
    padding-top: 50px;
  }
}
.post-related .related-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .post-related .related-title {
    margin-bottom: 25px;
  }
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (min-width: 1500px) {
  .related-grid {
    gap: 54px;
  }
}
@media (max-width: 991px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
}

.related-grid .blog-item {
  display: flex;
  background-color: #f2f2f2;
  align-items: center;
}
@media (max-width: 767px) {
  .related-grid .blog-item {
    flex-direction: column;
  }
}
.related-grid .blog-item .blog-img {
  border-radius: 0;
  aspect-ratio: 1;
  width: 175px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .related-grid .blog-item .blog-img {
    width: 100%;
    aspect-ratio: 385/239;
  }
}
.related-grid .blog-item .blog-info {
  padding: 10px 35px;
  border: none;
}
@media (max-width: 767px) {
  .related-grid .blog-item .blog-info {
    padding: 30px 20px;
  }
}
.related-grid .blog-item .blog-summary {
  font-size: 16px;
  -webkit-line-clamp: 3;
  height: 72px;
}/*# sourceMappingURL=inner.css.map */