:root 
{
    --primary-color: #1B2936;
    --secondery-color: #3BB292;
    --black-color: #000000;
    --white-color: #ffffff;
    --body-bg: #F9F8F5;
    --border-raduis:20px ;
}
body
{
    font-family: "Prima Sans", sans-serif;
    font-weight: 400;
    box-sizing: border-box;
    background-color: var(--body-bg);
    color: var(--primary-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}
::-webkit-scrollbar 
{
    width: 8px;
    height: 0;
}
::-webkit-scrollbar-track {
    background: var(--white-color); 
    border-radius: 5px;
}
::-webkit-scrollbar-track-piece{
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 5px;
}
*,*::before,*::after
{
    box-sizing: border-box;
}
*:focus
{
    outline: none !important;
}
a 
{
    transition: 0.5s ease;
    color: var(--primary-color);
}
a:hover
{
    color: var(--secondery-color);
}
button
{
  transition: 0.5s ease;
}
img 
{
    max-width: 100%;
}
ul,ul > li
{
    margin: 0;
    list-style: none;
    padding: 0;
}
.fixall
{
    text-decoration: none;
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
}
.slide_in
{
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: transparent;
}
.slide_in:before,.slide_in:after
{
    content: "";
    position: absolute;
    display: inline-block;
    height: 100%;
    top: 0;
    bottom: 0;
    z-index: -1;
    left: 0;
}
.slide_in:before
{
    width: 100%;
    background-color: var(--primary-color);
}
.slide_in:after
{
    inset-inline-start: 0;
    width: 0;
    transition: 0.3s ease;
    background-color: var(--secondery-color);
}
.slide_in:hover:after
{
    width: 100%;
}
.sec-head {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 35px;
    color: var(--primary-color);
    text-align: center;
    text-transform: capitalize;
}
/*lazyload*/
.lazy-img 
{
    transition: 0.3s;
}
.loading-img 
{
    background-color: #ddd !important;
    position: relative;
    overflow: hidden;
}
.loading-img img 
{
    opacity: 0 !important;
    -webkit-filter: blur(40px);
    filter: blur(40px);
} 
.loaded-img img 
{
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}
.header
{
    padding: 15px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 99;
    background-color: rgba(255, 255, 255, 0.25);
}
.nav-bar
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-list
{
    display: flex;
    align-items: center;
}
.nav-list > li
{
    padding: 5px 25px;
}
.nav-list > li:last-child
{
    padding-inline-end: 0;
}
.nav-list > li > a
{
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 700;
}
.nav-list > li > a:hover
{
    color: var(--secondery-color);
}
/***************main slider *******************/
.main-slide
{
    position: relative;
}
.main-slide::after
{
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.4;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.main-slide .slide-img
{
    display: flex;
    width: 100%;
    aspect-ratio: 1400 / 768;
}
.main-slide .slide-img img 
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@keyframes slidezoom {
    from {
        transform: scale(1.3);
    }

    to {
        transform: scale(1);
    }
}
.swiper-slide-active .slide-img > img
{
    animation-name: slidezoom;
    animation-duration: 4s;
    animation-fill-mode: forwards;
}
.main-slide .slide-txt
{
    position: absolute;
    font-weight: 700;
    font-size: 36px;
    color: var(--white-color);
    margin: 0 150px;
    top: 50%;
    transform: translateY(-50%);
    width: 70%;
    line-height: 1.6;
    z-index: 2;
}
.main-slider .swiper-pagination
{
    bottom: 21px;
}
.main-slider .swiper-pagination .swiper-pagination-bullet
{
    width: 10px;
    height: 10px;
    background-color: var(--white-color);
    opacity: 0.7;
    margin: 0 3px;
    border-radius: 5px;
}
.main-slider .swiper-pagination .swiper-pagination-bullet-active
{
    background-color: var(--secondery-color);
    opacity: 1;
}
.about-us
{
    margin-top: 60px;
}
.about-img
{
  border-radius: calc(var(--border-raduis) / 2 );
  aspect-ratio: 356 / 356;
  overflow: hidden;
}
.about-img > img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-title
{
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}
.about-text
{
    font-size: 16px;
    margin-bottom: 44px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}
.read-more
{
  display: flex;
}
.about-us .read-more
{
    justify-content: end;
}
.projects-sec .read-more
{
    justify-content: center;
    margin-top: 40px;
}
.read-more .read-anc
{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: var(--white-color);
  font-weight: var(--font-medium);
  width: 180px;
  height: 40px;
  border-radius: calc(var(--border-raduis) / 2 );
}
.services-sec
{
    padding: 60px 0;
    margin: 60px 0;
    background-color: var(--primary-color);
}
.services-sec .sec-head
{
    color: var(--white-color);
}
.item-content
{
    background-color: #dbdcf1;
    border-radius: var(--border-raduis);
    overflow: hidden;
    padding: 27px 44px 60px;
}
.item-content .img-cont
{
    display: flex;
    aspect-ratio: 187 / 290;
    overflow: hidden;
    border-radius: var(--border-raduis);
}
.img-cont > img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease;
}
.item-content:hover .img-cont > img
{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.item-content .item-detail
{
    text-align: center;
    margin-bottom: 10px;
}
.item-content .item-name
{
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 4px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    padding: 0 5px;
}
.item-content .item-desc 
{
    font-size: 12px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    height: 20px;
}
.default-slider
{
    position: relative;
}
.default-swiper.swiper-button-prev::after,.default-swiper.swiper-button-next::after
{
    display: none;
}
.default-slider .default-swiper.swiper-button-next,.default-slider .default-swiper.swiper-button-prev
{
    font-size: 24px;
    color: var(--primary-color);
    width: auto;
    height: auto;
    transition: 0.5s ease;
}
.default-slider .default-swiper.swiper-button-next
{
    right: -48px;
}
.default-slider .default-swiper.swiper-button-next
{
    right: -48px;
}
.default-slider .default-swiper.swiper-button-prev
{
    left: -48px;
    
}
.default-slider .default-swiper.swiper-button-next:hover,.default-slider .default-swiper.swiper-button-prev:hover
{
    color: var(--secondery-color)
}
.proj-tab-head {
    padding-top: 0;
    margin-bottom: 40px;
}
.proj-tab-list {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}
.proj-tab-list .proj-tab-btn {
    font-size: 17px;
    font-weight: 400;
    color: var(--primary-color);
    transition: 0.3s ease;
    margin: 0 10px;
    padding-bottom: 10px;
    text-transform: capitalize;
}
.proj-tab-list .proj-tab-btn:hover
{
    color: var(--secondery-color);
}
.proj-tab-list .proj-tab-btn.active {
    color: var(--secondery-color);
    font-weight: 700;
}
.projects-row::after,.projects-content-row::after,.project-gallery-content:after
{
    content: "";
    display: block;
    clear: both;
}
.project-item
{
    margin-bottom: 20px;
    position: relative;
    border-radius: var(--border-raduis);
    overflow: hidden;
}
.project-item:nth-child(odd)
{
    float: left;
    margin-inline-end: 10px;
    width: calc(50% - 10px);
}
.project-item:nth-child(even)
{
    float: right;
    margin-inline-start: 10px;
    width: calc(50% - 10px);
}
.project-item .proj-img
{
    display: flex;
    aspect-ratio: 548 / 600;
    position: relative;
    overflow: hidden;
}
.project-item:first-child .proj-img,.project-item:last-child .proj-img
{
    aspect-ratio: 548 / 450;
}
.project-item .proj-img::after
{
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.35;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.proj-img > img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease;
}
.project-item:hover .proj-img > img
{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.project-name
{
    display: inline-block;
    position: absolute;
    padding: 15px 30px;
    transition: 0.3s ease;
    width: 100%;
    background-color: var(--secondery-color);
    text-align: center;
}
.project-name .project-anc
{
    font-size: 24px;
    text-transform: capitalize;
    color: var(--white-color);
}
.testmonials-sec,.clients-sec
{
    margin-top: 120px;
}
.testmoial-item
{
    background-color: var(--secondery-color);
    border-radius: calc(var(--border-raduis) / 2 );
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.testmoial-item .testmoial-icon
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 75 / 75;
    position: relative;
}
.testmoial-item .testmoial-icon > img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testmoial-item .testmoial-icon::before
{
    content: "\f007";
    font-family: 'Line Awesome Free';
    font-weight: 900;
    position: absolute;
    font-size: 50px;
    /* z-index: -1; */
    color: var(--primary-color);
}
.testmoial-item .testmoial-name
{
    font-size: 16px;
    font-weight: 700;
    color: var(--white-color);
    margin-top: 10px;
}
.testmoial-item .job-title
{
    font-size: 15px;
    color: var(--primary-color);
    margin-top: 6px;
}
.testmoial-item .testmoial-text
{
    font-size: 15px;
    color: var(--white-color);
    text-align: justify;
    margin-top: 10px;
}
.default-slider .swiper-pagination
{
    bottom: -60px;
    width: 100%;
}
.default-slider .swiper-pagination .swiper-pagination-bullet
{
    width: 10px;
    height: 10px;
    background-color: #D9D9D9;
    margin: 0 3px;
    border-radius: 5px;
}
.default-slider .swiper-pagination .swiper-pagination-bullet-active
{
    background-color: var(--primary-color);
}
.client-item
{
    padding: 10px 0;
}
.client-item .client-img
{
    aspect-ratio: 149 / 141;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    /* padding: 30px; */
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-raduis);
    overflow: hidden;
}
.client-img > img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease;
}
.project-item:hover .proj-img > img
{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.contact-sec
{
    margin-top: 120px;
    margin-bottom: 30px;
}
.inner-page .contact-sec
{
    margin-top: 30px;
}
.contact-row
{
    display: -ms-grid;
    display: grid;
  -ms-grid-template-columns: repeat(2,1fr);
    grid-template-columns: repeat(2,1fr);
    column-gap: 30px;
}
.contact-li
{
    display: flex;
    align-items: center;
    width: fit-content;
    transition: 0.5s ease;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.contact-icon
{
    font-size: 24px;
    width: 24px;
    margin-inline-end: 20px;
    line-height: 24px;
}
.contact-anc
{
    font-size: 18px;
}
.contact-li:hover
{
    color: var(--secondery-color);
}
.socials
{
    margin-top: 30px;
}
.socials .social-anc
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 22px;
    color: var(--white-color);
    background-color: var(--primary-color);
    margin-inline-end: 5px;
    border-radius: 50%;
}
.socials .social-anc:hover
{
    background-color: var(--secondery-color);
}
.contact-sec .contact-form
{
    background-color: var(--white-color);
}
.contact-form
{
    padding: 28px 35px;
}
.contact-form .first-row
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contact-form .form-group
{
    margin: 0 5px 10px;
}
.contact-form .form-label
{
    font-size: 12px;
    font-weight: 700;
    position: relative;
}
.contact-form .form-label::after {
    content: "*";
    font-size: 14px;
    color: #f00;
    font-weight: 700;
    position: absolute;
    top: 20px;
    inset-inline-end: -10px;
}
.contact-form .form-input
{
    -webkit-text-fill-color: #a7a7a7;
    border: 2px solid #f2f2f2;
    width: 100%;
    background-color: #f2f2f2;
    padding: 0 30px;
    -webkit-box-shadow: none;
    box-shadow: none;
    transition: 0.3s ease;
    border-radius: var(--border-raduis);
    min-height: 40px;
}
.contact-form .form-input:focus
{
    border-color: var(--secondery-color);
}
.contact-form .checkbox-accept .wpcf7-list-item > label
{
    font-size: 12px;
    display: flex;
    align-items: center;
}
.checkbox-accept .wpcf7-list-item > label .wpcf7-list-item-label
{
    margin-inline-start: 5px;
}
.submit_btn
{
    /* background-color: var(--primary-color); */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--white-color);
    width: 100%;
    height: 50px;
    border-radius: calc(var(--border-raduis) / 2);
    text-transform: capitalize;
}
footer
{
    background-color: var(--primary-color);
    color: var(--white-color);
    padding-top: 80px;
}
.footer-content .footer-row
{
    text-align: center;
}
.footer-row .foot-links
{
    margin-top: 40px;
}
.footer-content .foot-desc
{
    font-size: 16px;
    /* text-align: justify; */
    margin-top: 15px;
    margin-inline-end: 40px;
}
.footer-content .foot-head
{
    font-size: 22px;
    font-weight: 700;
    margin-top: 70px;
    margin-bottom: 30px;
}
.foot-links .foot-list
{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}
.foot-list > li
{
    margin: 0 10px;
}
.foot-list > li > a
{
    font-size: 16px;
    color: var(--white-color);
    text-decoration: none;
}
.foot-list > li > a:hover
{
    color: var(--secondery-color);
}
#map
{
    border-radius: var(--border-raduis);
    overflow: hidden;
    background-color: #ddd;
}
.copy-rights
{
    padding: 25px 0;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    border-top: 1px solid var(--white-color);
    margin-top: 25px;
}
.whatsapp-fixed
{
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    font-size: 36px;
    color: var(--white-color);
    border-radius: 50%;
    bottom: 10px;
    inset-inline-start: 10px;
    z-index: 10;
    box-shadow: 0 0 0 5px transparent;
    animation: lightOnOff 2s infinite;
}
@keyframes lightOnOff {
    0% {
        box-shadow: 0 0 0 0 var(--secondery-color);
    }
    100% {
        box-shadow: 0 0 0 12px transparent;
    }
  }  
.arrow-top
{
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 40px;
    height: 40px;
    background-color: var(--secondery-color);
    font-size: 22px;
    color: var(--white-color);
    border-radius: 50%;
    bottom: 80px;
    inset-inline-start: 20px;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}
.whatsapp-fixed:hover,.arrow-top:hover
{
    color: var(--white-color);
}








@media (min-width:992px)
{
    .menu-bar,.close-nav	
    {
        display: none;
    }
    .services-row.default-slider .swiper-pagination
    {
        display: none;
    }
    .project-name
    {
        top: 100%;
    }
    .project-item:hover .project-name
    {
        transform: translateY(-100%);
    }

}
@media (max-width:991px)	
{
    .logo
    {
    max-width: 150px;
    }
    .menu-bar .nav-btn
    {
        font-size: 20px;
        color: var(--primary-color);
        background-color: transparent;
    }
    .nav-overlay
    {
      position: fixed;
      width: 100%;
      height: 100%;
      overflow: hidden;
      background-color: rgba(0,0,0,0.8);
      top: 0;
      bottom: 0;
      inset-inline-start: 0;
      inset-inline-end: 0;
      z-index: 99;
      visibility: hidden;
    }
    .on
    {
      visibility: visible;
    }
    .main-nav
    {
        height: 100%;
        width: 0px;
        position: fixed;
        z-index: 999;
        top: 0;
        inset-inline-start: 0;
        background-color: #ffffff;
        overflow: hidden;
        -webkit-transition: 0.5s ease;
        -o-transition: 0.5s ease;
        transition: 0.3s ease;
        padding-top: 60px;
        opacity: 0;
        visibility: hidden;
        overflow-y: auto;
    }
    .main-nav.open-nav
    {
        width: 300px;
        opacity: 1;
        visibility: visible;
    }
    .nav-list
    {
      flex-direction: column;
      align-items: flex-start;
    }
    .nav-list > li
    {
      padding: 7px 20px;
    }
    .close-nav
    {
      background-color: transparent;
      position: absolute;
      top: 20px;
      inset-inline-end: 20px;
      font-size: 20px;
      color: var(--primary-color);
    }
    .main-slide .slide-txt
    {
        font-size: 14px;
        margin: 0 20px;
    }
    .main-slide .slide-img
    {
        height: 300px;
    }
    .sec-head
    {
        font-size: 20px;
    }
    .contact-row
    {
        -ms-grid-template-columns: repeat(1, 1fr);
        grid-template-columns: repeat(1, 1fr);
    }
    .about-title
    {
        text-align: center;
        margin-top: 30px;
    }
    .read-more
    {
        justify-content: center;
    }
    .default-slider .default-swiper.swiper-button-next, .default-slider .default-swiper.swiper-button-prev
    {
        display: none;
    }
    .item-content {
        padding: 27px 20px 30px;
    }
    .proj-tab-list {
        gap: 7px;
    }
    .proj-tab-list .proj-tab-btn
    {
       margin: 0;
       font-size: 12px;
    }
    .project-item:nth-child(odd) {
        margin-inline-end: 5px;
        width: calc(50% - 5px);
    }
    .project-item:nth-child(even) {
        margin-inline-start: 5px;
        width: calc(50% - 5px);
    }
    .project-item
    {
        margin-bottom: 10px;
    }
    .project-name
    {
        bottom: 0;
        padding: 7px 10px;
    }
    .project-name .project-anc
    {
        font-size: 14px;
    }
    .contact-li
    {
        justify-content: center;
    }
    .socials
    {
        text-align: center;
    }
    .socials .social-anc
    {
        margin-inline-end: 2px;
        margin-inline-start: 2px;
    }
    .contact-form {
        padding: 28px 10px;
    }
    .contact-form .first-row
    {
        flex-direction: column;
        align-items: normal;
    }
    .foot-about,.foot-links
    {
        text-align: center;
    }
    .footer-content .foot-desc
    {
        margin-inline-end: 0;
    }
    .footer-content .foot-head
    {
        font-size: 18px;
    }
    .copy-rights
    {
        font-size: 13px;
    }
}
@media (max-width:767px)
{
    
}


/*****************Inner Pgaes***********************/
#content
{
    padding-top: 60px;
    padding-bottom: 60px;
}
/*************about us page********************/
.img-banner
{
    aspect-ratio: 1400 / 768;
    position: relative;
}
.img-banner > img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img-banner::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.4;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    display: none;
}
.banner-txt
{
    position: absolute;
    font-weight: 700;
    font-size: 36px;
    color: var(--white-color);
    margin: 0 150px;
    top: 50%;
    transform: translateY(-50%);
    width: 70%;
    line-height: 1.6;
    z-index: 2;
}
.page-title
{
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 35px;
    margin-top: 30px;
    color: var(--primary-color);
    text-transform: capitalize;
}
.page-content p
{
    font-size: 16px;
    margin-bottom: 30px;
}
/*****************blogs page*****************/
.blogs-page .page-wrapper
{
    margin-top: 50px;
}
.blog_item
{
    border: 1px solid var(--primary-color);
    border-radius: calc(var(--border-raduis) / 2 );
    padding: 10px;
}
.blog-img
{
    aspect-ratio: 334 / 200;
    display: flex;
    border-radius: calc(var(--border-raduis) / 2 );
    overflow: hidden;
}
.blog-img > img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-name
{
    display: inline-flex;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 700;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.blog-desc
{
    font-size: 14px;
    color: var(--primary-color);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.blog_item:hover .blog-img > img
{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
/*******************single service page ********************/
.about-text,.about-info > p,.about-info
{
    font-size: 16px;
}
/************************project single*****************/
.proj-video
{
    position: relative;
}
.proj-video::before
{
    content: "\f144";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    inset-inline-start: 20px;
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%,-50%);
    color: var(--white-color);
    font-size: 50px;
    z-index: 2;
    transition: 0.5s ease;
}
.project-item:hover .proj-video::before
{
    color: var(--secondery-color);
}
.about-owner
{
    display: flex;
    align-items: flex-start;
    margin-top: 50px;
}
.about-owner .owner-info
{
    display: flex;
    flex-direction: column;
    margin-inline-end: 50px;
    font-size: 16px;
    color: var(--primary-color);
    opacity: 0.8;
    flex-wrap: wrap;
}
.owner-info .head-info
{
    text-decoration: underline;
    margin-bottom: 10px;
}
.owner-info .data-info
{
    font-size: 14px;
}
.project-gallery
{
    margin-top: 120px;
}
.project-gallery .project-item .proj-img::after
{
    display: none;
}
.inner-page .projects-sec
{
    margin-top: 120px;
}
.projects-sec .proj-img-cont > .proj-img,.projects-content-row .proj-img-cont > .proj-img
{
    display: none;
}
.projects-sec .proj-img-cont > .proj-img:first-child,.projects-content-row .proj-img-cont > .proj-img:first-child
{
    display: block;
}
.about-careers
{
    margin-top: 120px;
}
.carrer-item
{
    background-color: rgba(155, 162, 234, 0.32);
    border-radius: var(--border-raduis);
    overflow: hidden;
    padding: 27px 20px;
}
.carrer-item .img-cont
{
    display: flex;
    aspect-ratio: 187 / 350;
    overflow: hidden;
    border-radius: var(--border-raduis);
}
.carrer-item .img-cont > img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease;
}
.carrer-item:hover .img-cont > img
{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.carrer-item .item-name
{
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 4px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    padding: 0 5px;
    text-align: center;
    margin-top: 15px;
}
.latest-posts
{
    margin-top: 120px;
}
/***********************************/
.share-cont
{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 80px 0;
}
.share-cont .share-with
{
    margin-inline-end: 10px;
    font-size: 20px;
    font-weight: 700;
}
.share-cont .share-with > i
{
    color: var(--secondery-color);
}
.share_buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    direction: ltr;
  }
  
  .share_buttons > a {
    width: max-content;
    padding: 0 12px;
    height: 42px;
    color: var(--white-color);
    background-color: var(--black-color);
    margin: 0 2px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
  }
  
  .share_buttons > a:hover {
    transform: translateY(-3px);
  }
  
  .share_buttons > a > i {
    font-size: 16px;
    margin-inline-end: 3px;
  }
  .share_buttons > a.facebook-share {
    background-color: #3b5998;
  }
  
  .share_buttons > a.twitter-share {
    background-color: #1da1f2;
  }
  
  .share_buttons > a.whatsapp-share {
    background-color: #25d366;
  }
  
  .share_buttons > a.telegram-share {
    background-color: #0088cc;
  }
  
  .share_buttons > a.email-share {
    background-color: #333;
  }

.post-Navigate .nav-links
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
}
.post-Navigate .nav-links a
{
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
    background-color: transparent;
    color: #b2b2b2;
    text-decoration: none;
}
.post-Navigate .nav-links .nav-previous a:before
{
    content: "\f323";
    font-family: "FontAwesome";
    font-weight: 900;
    font-size: 13px;
    transition: all 0.5s ease-out;
    padding-inline-end: 5px;
}
.post-Navigate .nav-links .nav-next a:after
{
    content: "\f324";
    font-family: "FontAwesome";
    font-weight: 900;
    font-size: 13px;
    transition: all 0.5s ease-out;
    padding-inline-start: 5px;
}
.post-Navigate .nav-links a:hover
{
    color: var(--secondery-color);
}
.not-found-content
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.not-found-content .error-icon
{
    font-size: 100px;
    color: var(--secondery-color);
}
.not-found-content .error-text
{
    font-size: 28px;
    font-weight: 700;
}
/****************************pagination numbring style ********************************/
.pagination-cont
{
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.pagination-cont .page-numbers
{
  font-size: 14px;
  background-color: var(--white-color);
  color: var(--black-color);
  border: 1px solid #ddd;
  padding: 2px 10px;
  text-decoration: none;
}
.page-numbers.current
{
  background-color: var(--secondery-color);
  color: var(--white-color);
  border: 1px solid var(--secondery-color);
}
.related-projects
{
    margin-top: 60px;
}


@media (max-width: 991px) {
    .banner-txt {
        font-size: 14px;
        margin: 0 20px;
    }
    .owner-info .data-info
    {
        font-size: 10px;
    }
    .share-cont
    {
        flex-direction: column;
    }
    .share-cont .share-with
    {
        margin-inline-start: 0;
        margin-bottom: 20px;
    }
    .share_buttons > a {
        width: 42px;
        padding: 0 0;
      }
    
      .share_buttons > a > span {
        display: none;
      }
    
      .share_buttons > a > i {
        font-size: 20px;
      }
      .not-found-content .error-text
        {
            font-size: 18px;
            font-weight: 700;
        }
}

  
  #particles-js {
    position: absolute;
    width: 100%;
    height: calc(100% + 120px);
    
  }
  