/*----------------------------------------------
	Preloader CSS
----------------------------------------------*/
#pre-load {
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  margin-top: 0px;
  top: 0px;
  z-index: 9999;
}
.loader .loader-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border: 3px solid #ebebec;
  border-radius: 50%;
}
.loader .loader-container:before {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border-top: 3px solid var(--pi-primary-color);
    border-radius: 50%;
    animation: loaderspin 1.8s infinite ease-in-out;
    -webkit-animation: loaderspin 1.8s infinite ease-in-out;
}
.loader .loader-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.loader .loader-icon img {
    animation: loaderpulse alternate 900ms infinite;
    width: 100px;
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
/********************* Header Sticky  ********************/
.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: .95s ease-in-out 0s normal none 1 running fadeInDown;
    z-index: 10000;
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
    background-color: var(--pi-secondary-color);
    padding: 25px 0 30px;
	background-color:#fff;
}
/********************* Header Search CSS ************************/
.header-src-btn {
  display: inline-block;
}
.search-popup{
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100%;
	z-index: 99999;
	margin-top: -540px;
	transform: translateY(-100%);
	background-color: rgba(0,0,0,0.90);
  -webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
  -moz-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
  -o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
  transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000); /* easeInOutQuint */
  -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
  -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
  -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
  transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000); /* easeInOutQuint */
}
.search-box-btn i {
    background: var(--pi-primary-color);
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: var(--pi-white-color);
    border-radius: 50%;
    cursor: pointer;
}
.search-popup{
	width: 100%;
}
.search-active .search-popup{
	transform: translateY(0%);
	margin-top: 0;
}
.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--pi-primary-color);
    width: 70px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    border-bottom: 3px solid #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
    height: 70px;
    line-height: 70px;
    text-align: center;
}
.search-popup .close-search i{
	position: relative;
	font-size: 30px;
	color: #ffffff;
}
.search-active .search-popup .close-search{
	visibility: visible;
	opacity: 1;
	top: 50%;
	-webkit-transition-delay: 1500ms;
	-moz-transition-delay: 1500ms;
	-ms-transition-delay: 1500ms;
	-o-transition-delay: 1500ms;
	transition-delay: 1500ms;
}
.search-popup form{
	position: absolute;
	max-width: 700px;
	top: 50%;
	left: 15px;
	right: 15px;
	margin:-35px auto 0;
	transform: scaleX(0);
	transform-origin: center;
	background-color: #111111;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.search-active .search-popup form{
	transform: scaleX(1);
	-webkit-transition-delay: 1200ms;
	-moz-transition-delay: 1200ms;
	-ms-transition-delay: 1200ms;
	-o-transition-delay: 1200ms;
	transition-delay: 1200ms;
}
.search-popup .form-group{
	position:relative;
	margin:0px;	
	overflow: hidden;
}
.search-popup .form-group input[type="text"], .search-popup .form-group input[type="search"] {
	position: relative;
	display: block;
	font-size: 18px;
	line-height: 50px;
	color: #000000;
	height: 70px;
	width: 100%;
	padding: 10px 30px;
	background-color: #ffffff;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	font-weight: 500;
	text-transform: capitalize;
	border: none;
}
.search-popup .form-group input[type="submit"], .search-popup .form-group button {
    position: absolute;
    right: 30px;
    top: 0px;
    height: 70px;
    line-height: 70px;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color: #000000;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none;
}
.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover{
	color: #000000;
}
.search-popup input::placeholder,
.search-popup textarea::placeholder{
	color:#000000;
}
.search-popup .close-search.style-two {
	position: absolute;
	right: 25px;
	left: auto;
	color: #ffffff;
	width: auto;
	height: auto;
	top: 25px;
	margin: 0px;
	border: none;
	background: none !important;
	box-shadow: none !important;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	transform: rotate(45deg);
}
.search-popup .close-search.style-two i {
	font-size: 20px;
	color: #ffffff;
}
/************************* Header Offcanvs CSS ***********************/
.sidebar {
    display: inline-block;
    position: relative;
    left: 3px;
    top: 8px;
    width: 40px;
    height: 40px;
    line-height: 53px;
    border-radius: 50%;
    text-align: right;
}
.nav-btn.navSidebar-button {
    display: inline-block;
    color: #fff;
    font-size: 25px;
    cursor: pointer;
}
  .sticky-nav .nav-btn.navSidebar-button {
    display: inline-block;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    position: relative;
    top: 6px;
  }
  span.icon.flaticon-menu-2 i {
    font-size: 20px;
    color: #000000;
  }

  .sidebar-title h2 {
	font-size: 20px;
	margin-top: 15px;
}
.sidebar-contact-info h2 {
	font-size: 20px;
	margin-bottom: 15px;
}
.sidebar-content-inner {
	margin-top: 40px;
}
.sidebar-contact-info ul li {
	list-style: none;
	margin-bottom: 15px;
	font-weight: 400;
	font-size: 15px;
}
.sidebar-contact-info ul li i {
	color: #fff;
	width: 32px;
	height: 32px;
	line-height: 32px;
	background: var(--pi-primary-color);
	display: inline-block;
	text-align: center;
	border-radius: 50%;
	margin-right: 10px;
}
.sidebar-social-icon {
	margin-top: 38px;
}
.sidebar-social-icon ul li {
	list-style: none;
	display: inline;
}
.sidebar-social-icon ul li a {
	color: #fff;
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: #0a0a0a;
	display: inline-block;
	text-align: center;
	border-radius: 50%;
	margin-right: 10px;
    position: relative;
    z-index: 1;
}
.sidebar-social-icon ul li a:hover{
    background:var(--pi-primary-color);
    color: #fff;
}
.navSidebar-button span {
    display: block;
    border-top: 2px solid #0a0a0a;
    margin: 6px 3px;
    width: 30px;
}
.navSidebar-button span.line3 {
    width: 20px;
    transition: .5s;
}
.sidebar:hover .navSidebar-button span.line3{
    width:30px;
}
.xs-sidebar-group .dt-overlay {
	top: 0;
	position: fixed;
	z-index: 9999;
	height: 100%;
	opacity: 0;
	width: 100%;
	visibility: hidden;
	-webkit-transition: all 0.4s ease-in 0.8s;
	-o-transition: all 0.4s ease-in 0.8s;
	transition: all 0.4s ease-in 0.8s;
	right: 0;
	left: 0;
}
.sidebar-logo .main_sticky_l {
  display: none;
}
.sidebar-info-contents {
	margin-top: 40px;
}
.xs-sidebar-group .widget-top {
	position: absolute;
	top: 20px;
	right: 25px;
    color: #181818;
	opacity: 1;
	font-size: 20px;
	background: var(--pi-primary-color);
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
}
.widget-top:hover .bar-close {
	transform: rotate(180deg);
    color: #181818;
}
.xs-sidebar-group .widget-top .bar-close {
    display: inline-block;
    transition: .5s;
    color: #fff;
}
.dt-sidebar-widget {
  position: fixed;
  right: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  z-index: 999999;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  background-color: #272727;
  -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  -o-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  visibility: hidden;
  opacity: 0;
}
.xs-sidebar-group.isActive .dt-overlay {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.8s ease-out 0s;
  -o-transition: all 0.8s ease-out 0s;
  transition: all 0.8s ease-out 0s;
}
.xs-sidebar-group.isActive .dt-sidebar-widget {
  opacity: 1;
  visibility: visible;
  right: 0;
  -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  -o-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  background: #fff;
}
.sidebar-textwidget {
  padding: 40px;
}
  .close-side-widget {
    color: var(--pi-primary-color);
    font-size: rem(15px);
    display: block;
  }
  .sidebar-container {
    position: relative;
    top: 150px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in 0.3s;
    -o-transition: all 0.3s ease-in 0.3s;
    transition: all 0.3s ease-in 0.3s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
}
  .xs-sidebar-group.isActive .sidebar-container {
    top: 0px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 1s ease-out 1.2s;
    -o-transition: all 1s ease-out 1.2s;
    transition: all 1s ease-out 1.2s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .dt-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    z-index: 0;
}
/***************** Portfolio Details CSS ***********************/
.portfolio-details-area {
  padding: 100px 0 100px;
}
.gitem img {
  width: 100%;
  object-fit: cover;
  height: 600px;
}
.single_gallery .owl-prev {
  position: absolute;
  top: -320px;
  left: 0;
}
.single_gallery .owl-next {
  position: absolute;
  top: -320px;
  right: 0;
}
.single_gallery .owl-nav div i {
  color: #fff;
  font-size: 20px;
  display: inline-block;
  width: 65px;
  height: 65px;
  line-height: 65px;
  background: var(--pi-primary-color);
  text-align: center;
  margin-top: 570px;
}
.pimgs {
  margin-bottom: 50px;
}
.portfolio-detail {
  padding: 45px;
  background-color: #f4f4f4;
  margin-bottom: 30px;
}
.portfolio-detail .list--detail .item--detail {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.portfolio-detail h4 {
  margin-bottom: 20px;
}
.portfolio-title h1 {
  padding-bottom: 40px;
}
/***************** psymind BLOG DETAILS AREA CSS *****************/
.psymind-blog-area.psymind-blog-archive {
  padding: 100px 0;
}
.psymind-blog-thumb a img {
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}
.blog-content-area {
  padding: 25px 0 15px;
}
.psymind__blog__details__area {
  padding: 100px 0 100px;
}
.psymind-single-blog-details {
  overflow: hidden;
}
.psymind-single-blog-details {
  margin-bottom: 40px;
}
.blog__thumb2 img {
  width: 100%;
}
.psymind-single-blog--thumb img {
    width: 100%;
    border-radius: 30px;
}
.psymind-single-blog-details h2 {
  font-size: 30px;
  text-transform: capitalize;
  margin-bottom: 15px;
}
.psymind-blog-meta-left span i {
  margin-right: 5px;
  color: var(--pi-primary-color);
}
.meta_comments {
  margin-left: 10px;
}
.psymind-blog-meta-left a {
  text-transform: capitalize;
  margin-right: 10px;
}
.psymind-blog-meta-left a i{
  color: var(--pi-primary-color);
}
.psymind-blog-social {
  padding-top: 26px;
  text-align: left;
  border-top: 1px solid #ddd;
  margin-top: 40px;
}
.psymind-single-icon-inner a svg {
    width: 18px;
}
blockquote {
  padding: 29px 30px 12px;
  font-size: 21px;
  border-left: 4px solid var(--brand-color);
  background: 0 0;
  font-style: normal;
  color: #232;
  font-weight: 400;
  position: relative;
  line-height: 1.5;
  box-shadow: 0 0 30px 0 rgb(0 0 0 / 8%);
}
blockquote::before{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 3px;
  background: var(--pi-primary-color);
}
blockquote i {
  margin-right: 10px;
}
.post-text blockquote::before {
  content: "\f10d";
  left: 42px;
  top: 50px;
  position: absolute;
  color: #758799;
  font-family: "FontAwesome";
  font-weight: 700;
  font-size: 41px;
}
blockquote .small,
blockquote footer,
blockquote small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
}
.psymind-blog-social {
    padding-top: 40px;
    text-align: left;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: 40px;
}
.psymind-single-blog-details .inner-content h4 {
  padding-bottom: 20px;
  font-size: 24px;
}
.psymind-blog-meta.txp-meta {
    padding-bottom: 22px;
    padding-top: 40px;
    border-bottom: 1px solid #302E2E;
    padding: 40px 0 30px;
    margin-bottom: 30px;
}
.single-blog-content p span {
    color: #f5f5f8;
}
.blogs-thumb {
    display: flex;
    justify-content: space-between;
}
.blogs-thumb img {
  width: 48%;
}
.single-blog-content h2 {
  padding-top: 10px;
  padding-bottom: 10px;
}
.blog-tags h2 {
  margin-top: 0;
  font-size: 18px;
  font-weight: 500;
  padding-right: 10px;
  display: inline-block;
}
.psymind-single-icon {
    display: flex;
    justify-content: space-between;
}
.blog-tags {
    display: inline-block;
}
.psymind-single-icon-inner a {
  margin-left: 15px;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
.psymind-single-icon-inner a:hover{
  color: var(--pi-primary-color);
}

.blog-page-title {
    padding: 10px 0 10px;
}
.blog-grid-item {
    padding: 100px 0;
}
.em-blog-content-area  {
    padding: 30px 0;
}
.blog-meta-bottom-list.clearfix {
    display: flex;
    justify-content: space-between;
}
.psymind-single-icon span {
  font-size: 18px;
  font-weight: 500;
  padding-right: 6px;
  display: flex;
}
.psymind-single-blog .psymind-blog-meta-left {
    color: #000;
}
.meta-tag {
  display: inline-block;
}
.tag-links a {
  padding: 3px 15px;
  background: #121212;
  display: inline-block;
  border-radius: 0;
  margin-right: 8px;
  transition: .5s;
  font-size: 14px;
  color: #fff;
}
.tag-links a:hover {
  background: var(--pi-primary-color);
  color: #fff;
}
.cat-links {
  display:none;
}
.cat-links span a{
  padding: 5px 21px;
  background: #f5f5f8;
  color: #fff;
  border-radius: 0 17px 0 0;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
}
.psymind-blog-thumb_adn span {
  padding: 2px 21px;
  color: #181818;
  border-radius: 0 19px 0 0;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
}
/****************** psymind COMMENT AREA CSS ******************/
@media (max-width: 767px) {
  .comment_field .form-control {
    margin-bottom: 20px;
  }
  .comment-button {
    margin-bottom: 70px;
  }
  .psymind-single-icon {
    display: block;
  }
  .blog-tags {
    margin-bottom: 20px;
  }
  .psymind-single-blog-details h2 {
    font-size: 18px;
  }
}
.comments {
  padding-bottom: 50px;
  padding-top: 14px;
}
.post_comment {
  border-bottom: 1px solid #EAEAEA;
  margin: 20px 0;
  padding: 0 15px;
}
.commment_title h3 {
  font-size: 24px;
  margin-bottom: 30px;
  position: relative;
  margin-top: 0;
  position: relative;
  display:inline-block;
}
.commment_title h3::before {
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 88px;
  height: 3px;
  background: var(--pi-primary-color);
  content: "";
}
.post_replay_inner {
  word-wrap: break-word;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
.post_reply_thumb img {
  border-radius: 50%;
}
.post_replay {
  margin-top: 36px;
}
.post_reply {
  padding-left: 15px;
  width: 100%;
  position: relative;
}
.post_reply div.st {
  font-size: 18px;
  font-weight: 400;
}
.post_reply div.st a {
  color: #232323;
  font-size: 18px;
  display: inline-block;
  padding-bottom: 3px;
  font-weight: 700;
  text-transform: capitalize;
}
.reply_date {
  overflow: hidden;
  margin-bottom: 5px;
}
.reply_date span.span_left {
  display: block;
  color: var(--pi-dark-color);
}
.reply_date span.span_right {
  float: none;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 1px;
  position: absolute;
  top: 0;
  right: 0;
  background: #343842;
  padding: 3px 18px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  border-radius: 4px;
}
.reply_date span.span_right:hover{
  background:#343842;
}
.comments-area .children {
  margin-left: 90px;
}
.post_comment .post_comment {
  margin-left: 15px;
}
/***************** Comment Input CSS *****************/
.comment_field .form-control {
  padding: 15px 24px;
}
.comment_field .form-control::placeholder{
  font-size: 16px;
  font-weight: 500;
}
.comment_field .form-control:focus{
  border: 1px solid var(--pi-primary-color);
  outline: 0;
  box-shadow: none;
}
.commment_title h3 {
  margin-bottom: 70px;
}
.comment_field textarea {
  margin-top: 30px;
  margin-bottom: 40px;
}
.comment-button {
  background: var(--pi-primary-color);
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 42px;
  border-radius: 0;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  border: none;
}
.comment-button::before {
  content: "";
  background-color: var(--pi-dark-color);
  width: 0;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.psymind-blog-meta-left {
    color: #fff;
}
.comment-button::after {
  content: "";
  background-color: var(--pi-dark-color);
  width: 0;
  height: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.comment-button:hover {
    color: #fff;
    background: #000;
}
.comment-button:hover::before, .comment-button:hover::after {
  width: 100%;
}
/*************** Contact Page Form CSS ***************/
.form-area.home-form .form-control {
  padding: 15px 25px 15px;
  border: none;
  box-shadow: none;
  border: 1px solid transparent;
}
.form-area.home-form .form-control:focus{
  border: 1px solid var(--pi-primary-color);
  outline: 0;
  box-shadow: none;
}
.form-area.home-form .form-control::placeholder{
  font-size: 16px;
  font-weight: 500;
}
/* Scroll UP */
.scroll-top.show {
  visibility: visible;
  opacity: 1;
  bottom: 60px;
}
.scroll-top {
  position: fixed;
  right: 30px;
  bottom: -60px;
  z-index: 2;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.03);
  display: block;
  padding: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  background-color: var(--pi-primary-color);
  background-size: 200% auto;
  background-position: left center;
  color: #ffffff;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  overflow: hidden;
}
/*Portfolio Meta*/
.portfolio-meta-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.portfolio-meta-info h4 {
    margin-bottom: 0;
}

.portfolio-meta-info ul {
    margin-top: 30px;
    display: flex;
    gap: 50px;
}

.portfolio-meta-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.portfolio-meta-info li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.portfolio-meta-info i {
    font-size: 24px;
    color: var(--pi-primary-color);
    flex-shrink: 0;
    margin-right: 15px;
    line-height: 1;
}

.portfolio-meta-info .sub-title {
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
}

.portfolio-meta-info .title {
    font-weight: 600;
}













