/********** Template CSS **********/
:root {
    --primary: #da6f27;
    --secondary: #E93C05;
    --tertiary: #555555;
    --light: #DFE4FD;
    --dark: #101010;
    --orange:#da6f27;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.whats-button {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 90px;
    z-index: 99;
}

@font-face {
    font-family: 'mada-regular';
    src: url(../fonts/Mada-Regular.ttf);
}
@font-face {
    font-family: 'mada-bold';
    src: url(../fonts/Mada-Bold.ttf);
}
body {
    overflow-x: hidden;
}
p {
    font-family: 'mada-regular';
}
a {
    font-family: 'mada-regular';
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
    font-family:'mada-bold';
     color:#101010;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
    font-family:'mada-bold';
    color:#101010;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
    font-family: 'mada-regular';
    color:#101010;
}

section,
.section{
  padding: 2rem 0;   
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(53, 94, 252, .07);
}
.btn-primary{
    background-color:#da6f27;
    border:none;
}
.btn-primary:hover{
    background-color:#101010;
    border-color:#da6f27;
}
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}


.navbar .navbar-nav .nav-link {
    padding: 0px 15px;
    color: var(--tertiary);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}
a {
    color: #da6f27;
    text-decoration: none;
}
@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 0px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
    .navbar-toggler:focus{
        box-shadow: none;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
    
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

.carousel-control-prev-icon {
    border-radius: 0 3rem 3rem 0;
}

.carousel-control-next-icon {
    border-radius: 3rem 0 0 3rem;
}
.other_images{
    max-width: 400px;
    height: 400px;
    padding-bottom: 25px;
}
.single_p_image{
    max-height: 500px;
    width: 100%;
}
.back_btn{
    border: 1px solid var(--primary);
    padding: 10px 15px;
}
.back_btn:hover{
    border: 1px solid var(--primary);
    padding: 10px 15px;
    color:#da6f27
}

@media (max-width: 768px) {
    body {
    overflow-x: hidden;
}
.about_logo_style{
 padding-bottom: 25px;
}
.project-title{
    padding-top: 10px;
   }
.other_images {
    max-width: 100%;
    height: 100%;
    padding-bottom: 25px;
}
.owl-prev {
    float: left;
    border: 1px solid var(--primary);
    /* padding-top: 0px; */
    padding: 0px 5px;
    margin-top: 15px;
}
.owl-next {
    float: right;
    border: 1px solid var(--primary);
    /* padding-top: 0px; */
    padding: 0px 5px;
    margin-top: 15px;
}
.filters ul li {
    display: inline-block;
    margin: 10px 10px!important;
    padding: 5px 30px!important;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}
.padd-bot-10px{
padding-top: 10px;
padding-bottom:10px ;    
}
.navbar {
    position: relative;
    display:contents;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.overlay-text {
    position: absolute;
    top: 65px!important;
    right: 0;
    left: 0;
    /* transform: translate(-50%, -50%); */
    color: white;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    /* padding: 10px; */
    /* border-radius: 5px; */
    bottom: 0px;
}

    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .use_image_size{
        max-width: 380px;
    }
    .mob_logo_fix{
padding-top: 40px;
    }
    .slider-track {
        width: calc(200%)!important; /* Adjust if necessary based on the new number of slides */
    }

    .slide {
        min-width: calc(100% / 2)!important; /* 2 slides visible */
    }

    .slide img {
        max-width: 100px; /* Adjust logo size for mobile */
    }

    .after_logo3 {
        position: relative;
        font-weight: bold;
        padding-top: 20px;
        padding-left: 40px;
        padding-left: -50px;
    }
    .after_logo3::before {
        content: "";
        position: absolute;
        top: 65%;
        left: -10px!important;
        transform: translateY(-50%);
        width: 45px;
        height: 45px;
        background: url(../img/text-icon.png) no-repeat center center;
        background-size: contain;
    }
    .after_logo5::before {
        content: "";
        position: absolute;
        top: 65%;
        left: -10px!important;
        transform: translateY(-50%);
        width: 45px;
        height: 45px;
        background: url(../img/text-icon.png) no-repeat center center;
        background-size: contain;
    }
    .after_logo5 {
        position: relative;
        font-weight: bold;
        padding-top: 40px;
        /* padding-left: 350px; */
        padding-left: 40px;
    }
    #elementContainer1,
    #elementContainer2 {
        display: flex;
        flex-direction: column;
    }

    #elementContainer1 {
        flex-direction: column-reverse;
    }
     #elementContainer3 {
        flex-direction: row-reverse;
    }
    .navbar-light .navbar-toggler {
        position: relative;
        right: -75px;
        color: rgba(0,0,0,0.55);
        border-color: rgba(0,0,0,0.1);
    }
    .navbar .navbar-nav {
        margin-top: 0px;
        display: flex;
        text-align: center;
        background: #FFFFFF;
    }
    
}
.carousel-control-next-icon {
    border-radius: 0rem 0rem 0rem 0;
}
.carousel-control-prev-icon {
    border-radius: 0 0 0 0;
}
.border_image{
    border: 1px solid var(--orange);
}

.call_us_btn{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 30px;
    text-transform: uppercase;
}
.product_image_height {
    min-height: 458px;
}
.page-header {
    padding-top: 6rem;
    padding-bottom: 7rem;
    background: url(../img/bread.jpg)center center no-repeat;
    background-size: cover;
}
.project_cadre{
    border:1px solid var(--primary);
 }
.read_more_proj_btn{
    border: 1px solid var(--primary);
    padding: 5px 10px;
    
}
.project_content a:hover {
    color: white;
    background: var(--primary);
}
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--tertiary);
}
.custom-bpost-wrapper .form-control {
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 60px 13px 20px;
    border: 1px solid #e2e6f5;
    border-radius: 5px;
}

/*** Facts ***/
.bg_slider1 {
    background: url(../img/brands.jpg) center no-repeat;
    background-size: cover;
    min-height:200px
}

.bg_slider2{
    /*background: url(../img/clients.jpg) center center no-repeat;*/
    background: #7e7e7e;
    background-size:cover;
    min-height:200px
}
/*** Callback ***/
.callback {
    position: relative;
}
.logos_slide{
    max-height:50px;
}
.callback::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/clients.jpg) center center no-repeat;
    background-size:cover;
    z-index: -1;
}
.read_more_cards{
    font-size:19px;
}
.slider_captionnn{
    padding-left: 125px;
}
.after_logo {
    position: relative;
    font-weight: bold;
  }
  
  .after_logo::before {
    content: "";
    position: absolute;
    top: 15%; /* Center vertically */
    left: -100px;/* Align the logo with the left side of the text */
    transform: translateY(-50%); /* Center vertically within the container */
    width: 95px;
    height: 95px;
    background: url('../img/text-icon.png') no-repeat center center; /* Fixed the file path and name */
    background-size: contain;
  }

  .after_logo2 {
    position: relative;
    font-weight: bold;
    padding-left:50px;
}

.after_logo2::before {
    content: "";
    position: absolute;
    top: 33%; /* Changed to 50% for better centering */
    left: 0;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: url('../img/text-icon.png') no-repeat center center; /* Fixed the image path */
    background-size: contain;
}

.after_logo3 {
    position: relative;
    font-weight: bold;
    padding-top: 40px;
    padding-left:-50px;
}

.after_logo3::before {
    content: "";
    position: absolute;
    top: 65%;
    left: -50px;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: url(../img/text-icon.png) no-repeat center center;
    background-size: contain;
}
.text-primary{
    color:var(--orange)!important;
}
.border{
    border:1px solid #da6f27 !important;
}
.nav-pills .nav-link {
    background: none;
    border: 0;
    border-radius: 0;
}
/*** Feature ***/
.feature .feature-box,
.feature .feature-box * {
    transition: .5s;
}

.feature .feature-box:hover {
    background: var(--primary);
    border-color: var(--primary) !important;
}

.feature .feature-box:hover * {
    color: #FFFFFF !important;
}


/*** Service ***/
.service .nav .nav-link {
    transition: .5s;
}

.service .nav .nav-link.active {
    border-color: var(--primary) !important;
    background: var(--primary);
}

.service .nav .nav-link.active h5 {
    color: #FFFFFF !important;
}

.service .nav .nav-link.active h5 i {
    color: #FFFFFF !important;
}


/*** Project ***/
.project-item,
.project-item .project-img {
    position: relative;
}
.bg_about{
    background: url(../img/background-about.jpg) center center no-repeat;
    background-size: cover;
}
.project-item .project-img a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .5);
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover .project-img a {
    opacity: 1;
}

.project-item .project-title {
    position: absolute;
    top: 5rem;
    right: 0;
    bottom: 0;
    left: 5rem;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    z-index: -1;
    transition: .5s;
}

.project-item:hover .project-title {
    background: var(--primary);
    border-color: var(--primary);
}

.project-item .project-title h4 {
    transition: .5s;
}

.project-item:hover .project-title h4 {
    color: #FFFFFF;
}

.project-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#e9e7e7;
    background: var(--primary);
    border-radius: 0;
    font-size: 22px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}
.btn-social{
    border-radius: 50%;
}
.product_image{
    min-height:350px;
}
/*** Team ***/
.team-item {
    position: relative;
    padding: 4rem 0;
}

.team-item img {
    position: relative;
    z-index: 2;
}
.team-item2 {
    position: relative;
    padding: 4rem 0;
}

.team-item2 img {
    position: relative;
    z-index: 2;
}

.team-item .team-text {
    position: absolute;
    top: 0;
    right: 5rem;
    clip-path: polygon(0 0, 100% 3%, 100% 15%, 100% 100%, 0 100%);
    bottom: 0px;
    left: 5rem;
    padding: 15px;
    border: 1px solid var(--orange);
    /* border-radius: 8px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
    z-index: 1;
    background: var(--orange);
    border-color: var(--orange);
}
.team-item2 .team-text {
    position: absolute;
    top: 0;
    right: 5rem;
    clip-path: polygon(0% 3%, 100% 0%, 100% 0%, 100% 100%, 0 100%);
    bottom: 0;
    left: 5rem;
    padding: 15px;
    border: 1px solid var(--dark);
    /* border-radius: 8px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
    z-index: 1;
    background: var(--dark);
    border-color: var(--dark);
}
.card_size {
    width: 95%;
    height: 100%;
}
.team-itemp .team-text {
    position: absolute;
    top: 0;
    right: 5rem;
    clip-path: polygon(0 0, 100% 3%, 100% 15%, 100% 100%, 0 100%);
    bottom: 0;
    left: 5rem;
    padding: 15px;
    border: 1px solid var(--orange);
    /* border-radius: 8px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
    z-index: 1;
    background: var(--orange);
    border-color: var(--orange);
}
.team-item2p .team-text {
    position: absolute;
    top: 0;
    right: 5rem;
    clip-path: polygon(0% 3%, 100% 0%, 100% 0%, 100% 100%, 0 100%);
    bottom: 70px;
    left: 5rem;
    padding: 15px;
    border: 1px solid var(--dark);
    /* border-radius: 8px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
    z-index: 1;
    background: var(--dark);
    border-color: var(--dark);
}

/*** Team ***/
.team-itemp {
    position: relative;
    padding: 4rem 0;
}

.team-itemp img {
    position: relative;
    z-index: 2;
}
.team-item2p {
    position: relative;
    padding: 4rem 0;
}

.team-item2p img {
    position: relative;
    z-index: 2;
}

/* .team-item:hover .team-text {
    background: var(--orange);
    border-color: var(--orange);
} */

.team-item .team-text h4 {
    transition: .5s;
    color:white;
}

.team-item:hover .team-text h4 {
    color: #FFFFFF;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item:hover .team-social .btn {
    background: #FFFFFF;
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}

.team-item .team-text h4 {
    transition: .5s;
    color:white;
}

.team-item2:hover .team-text h4 {
    color: #FFFFFF;
}

.team-item2 .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item2:hover .team-social .btn {
    background: #FFFFFF;
}

.team-item2 .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}


.team-itemp .team-textp h4 {
    transition: .5s;
    color:white;
}

.team-itemp:hover .team-textp h4 {
    color: #FFFFFF;
}

.team-itemp .team-socialp .btn {
    background: var(--light);
    color: var(--primary);
}

.team-itemp:hover .team-socialp .btn {
    background: #FFFFFF;
}

.team-itemp .team-socialp .btn:hover {
    background: var(--primary);
    color: var(--light);
}

.team-itemp .team-textp h4 {
    transition: .5s;
    color:white;
}

.team-item2:hoverp .team-textp h4 {
    color: #FFFFFF;
}

.team-item2p .team-socialp .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item2p:hover .team-socialp .btn {
    background: #FFFFFF;
}

.team-item2p .team-socialp .btn:hover {
    background: var(--primary);
    color: var(--light);
}
.after_logo4 {
    position: relative;
    font-weight: bold;
    padding-left:50px;
}

.after_logo4::before {
    content: "";
    position: absolute;
    top: 30%; /* Center the icon vertically */
    left: 0; /* Position the icon 50px to the left of the parent */
    transform: translateY(-50%); /* Adjust to center vertically */
    width: 45px;
    height: 45px;
    background: url(../img/text-icon.png) no-repeat center center;
    background-size: contain;
}
/*** Testimonial ***/
.testimonial-item {
    position: relative;
    text-align: center;
    padding-top: 30px;
}

.testimonial-item .testimonial-text {
    position: relative;
    text-align: center;
}

.testimonial-item .testimonial-text .btn-square {
    position: absolute;
    width: 60px;
    height: 60px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-item .testimonial-text::before {
    position: absolute;
    content: "";
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: var(--light) transparent transparent transparent;
}

.testimonial-item .testimonial-text::after {
    position: absolute;
    content: "";
    bottom: -59px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: #FFFFFF transparent transparent transparent;
}

.testimonial-carousel .owl-item img {
    margin: 0 auto;
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots {
    margin-top: 25px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--light);
    border-radius: 30px;
    transition: .5s;
}

.testimonial-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 6px;
    left: 6px;
    border-radius: 16px;
    background: var(--light);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    border-color: var(--primary);
}

.testimonial-carousel .owl-dot.active::after {
    background: var(--primary);
}
.bg-footer{
    background: url(../img/footer.jpg)center no-repeat;
    background-size: cover;
}

/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: white;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: white;
    /* background: #000B1C; */
}

.copyright a {
    color: var(--orange);
}

/* .copyright a:hover {
    color: var(--dark);
} */
.btn-primary, .btn-outline-primary:hover{
    color:white;
}


.logo-slider {
  overflow: hidden;
  width: 100%;
  padding:30px;
}

.slider-track {
  display: flex;
  width: max-content;
  animation: scroll 35s linear infinite;
}

.slide {
  flex: 0 0 auto;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  max-width: 150px;
  height: auto;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

  .about_logos{
    display:flex;
    flex-direction:row;
    justify-content: start;
  }
  .about_logos2{
    display:flex;
    flex-direction:row;
    justify-content: start;
  }
  .form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #555;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #DFE4FD;
    appearance: none;
    border-radius: 0;
    transition: border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
}
.owl-carousel .owl-item img {
      display: block;
    min-height: 180px;
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    
}
.owl-next , .owl-prev {display:none;}
.btn-outline-light:hover {
    color: #000;
    background-color:var(--orange);
    border-color: var(--orange);
}
.after_logo5 {
    position: relative;
    font-weight: bold;
    padding-top: 40px;
    /* padding-left:350px; */
}
.after_logo5::before {
    content: "";
    position: absolute;
    top: 65%;
    left: -50px;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: url(../img/text-icon.png) no-repeat center center;
    background-size: contain;
}
.about_icon{
    max-height:50px;
}
.PL_PR{
    padding-left:10px;
    padding-right:10px;
}
.title_logo_services{
    display: flex;
    flex-direction: column;

}
.PLab_PRab{
    padding-left: 50px;
    padding-right: 50px;
}
.use_image{
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.btn-outline-light {
    color: white;
    border-color: white;
}
.product_image{
    width:400px;
    height:400px
}
.position-relative {
    position: relative;
}

.image-overlay {
    position: relative;
    display: inline-block;
}

.image-overlay img {
    display: block;
    width: 100%;
    height: 85%;
}
.overlay-text {
    position: absolute;
    top: 85px;
    right: 0;
    left: 0;
    /* transform: translate(-50%, -50%); */
    color: white;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    /* padding: 10px; */
    /* border-radius: 5px; */
    bottom: 233px;
}
@media (min-width: 1200px) and (max-width: 1400px) {
    .position-relative {
        position: relative;
    }

    .image-overlay {
        position: relative;
        display: inline-block;
    }

    .image-overlay img {
        display: block;
        width: 100%;
        height: 75%;
    }

    .overlay-text {
        position: absolute;
        top: 97px!important;
        right: 0;
        left: 0;
        /* transform: translate(-50%, -50%); */
        color: white;
        text-align: center;
        background-color: rgba(0, 0, 0, 0.5);
        /* padding: 10px; */
        /* border-radius: 5px; */
        bottom: 0px;
    }
}
@media (min-width: 1000px) and (max-width: 1200px) {
    .overlay-text {
        position: absolute;
        top: 61px!important;
        right: 0;
        left: 0;
        /* transform: translate(-50%, -50%); */
        color: white;
        text-align: center;
        background-color: rgba(0, 0, 0, 0.5);
        /* padding: 10px; */
        /* border-radius: 5px; */
        bottom: 167px;
    }
}
@media (min-width: 800px) and (max-width: 1000px) {
    .overlay-text {
        position: absolute;
        top: 45px!important;
        right: 0;
        left: 0;
        /* transform: translate(-50%, -50%); */
        color: white;
        text-align: center;
        background-color: rgba(0, 0, 0, 0.5);
        /* padding: 10px; */
        /* border-radius: 5px; */
        bottom: 123px!important;
    }
}
.team-item3 {
    overflow: hidden; /* Ensures the image stays within the container when zoomed */
    position: relative; /* Keeps the text and other elements in place */
}

.team-item3 img {
    transition: transform 0.3s ease; /* Smooth transition effect for the zoom */
}

.team-item3:hover img {
    transform: scale(0.9); /* Zooms in the image by 10% on hover */
}

.team-text3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transition: background 0.3s ease;
}

.filters {
    text-align: center;
    margin-bottom: 30px;
}

.filters ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
}

.filters ul li {
    display: inline-block;
    margin: 0 10px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.filters ul li.active, .filters ul li:hover {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 6px 0 rgba(218, 111, 39, 0.3);

}

.navBorder{
    border: 1px solid #dbdbdb;
}

.navPhone {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 3rem;
  border-radius: 0;
  padding: 1rem;
  /*margin: 0 auto;*/
}

@media only screen and (max-width: 769px) {
    .navPhone {
        margin: 0 auto;
        justify-content: center;
        width: 100%;
    }
}

.mobile-show{
    display: none;
}

@media only screen and (max-width: 769px) {
  .mobile-show {
    display: block;
  }
  .mobile-hide{
    display: none;
  }
}


.swiper {
    padding: 0.5rem 0 !important;
}