@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
:root{
    --blue: #133756;
    --yellow: #ffa600;
    --green: #408732;
    --bg: #eee;
    --bg2:#eff8ff;
    --white: #ffffff;
    --black: #000000;
    --black2: #242423;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Space Grotesk", sans-serif;
    /* font-family: "Inter Tight", sans-serif; */
    /* font-family: "Montserrat", sans-serif; */
    scroll-behavior: smooth;
}
body{
    overflow-x: hidden;
}
#inner-banner{
    position: relative;
    height: 550px;
    overflow: hidden;
    /* margin-top: 135px; */
}
#inner-banner .inner-ban-text{
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 200px;
    transform: translateY(-50%);
}
#inner-banner .inner-ban-text h1{
    font-size: 60px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    color: var(--white);
    font-weight: 700;
}
#inner-banner .inner-ban-text .bread{
    font-size: 18px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    color: var(--white);
    font-weight: 500;
}
#inner-banner .inner-ban-text a{
    color: var(--yellow);
    font-weight: 700;
    text-decoration: none;
}
#inner-banner .inner-ban-text i{
    font-size: 14px;
}
#inner-banner .inner-ban-text a:hover{
    text-decoration: underline;
}
#inner-banner .inner-ban-text span{
    opacity: 0.8;
}

/********* Banner Section Start *********/

#banner{
    height: 820px;
    width: 100%;
    position: relative;
    overflow: hidden;
}
#banner .over{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.45);
}
#banner .ban-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 4;
    color: var(--white);
}
#banner .ban-text h4{
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 1);
}
#banner .ban-text h1{
    font-size: 55px;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
}
.spa{
    display: inline-block;
    color: var(--blue);
    position: relative;
}
.spa::after{
    content: "";
    position: absolute;
    left: -10%;
    top: -10%;
    width: 120%;
    height: 120%;
    background-color: var(--white);
    z-index: -1;
}
#banner .b-btn a{
    background-color: var(--yellow);
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
    transition: .4s ease-in-out;
}
#banner .b-btn a:hover{
    background-color: var(--blue);
    color: var(--white);
}


/********* Banner Section End *********/


#verticals h2{
    font-size: 44px;
    text-transform: uppercase;
}
#verticals .ver-wrap{
    background-color: var(--yellow);
    border: 2px solid var(--blue);
    padding: 15px;
    margin: 0 5px;
    height: 100%;
}
#verticals h3{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.4;
    color: #000;
}
#verticals h3 span{
    color: var(--blue);
    font-weight: 800;
}

/********* About Section Start *********/

#about{
    /* background-color: var(--yellow); */
    background-image: url(./img/about-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
}
#about .a-btn a{
    font-size: 15px;
    text-decoration: none;
    color: var(--blue);
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    transition: .4s ease-in-out;
}
#about .a-btn a:hover{
    color: var(--black);
}
#about .a-btn a::after{
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0px;
    height: 2px;
    background-color: var(--yellow);
    transition: .4s ease-in-out;
}
#about .a-btn a:hover::after{
    width: 80%;
}
#about .a-btn a i{
    transition: .3s ease-in-out;
}
#about .a-icon i{
    font-size: 45px;
    color: var(--white);
    margin-right: 30px;
}
#about .a-text{
    line-height: 1.4;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 600;
}
#about .a-wrap{
    background-color: var(--white);
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.07);
    transition: .3s ease-in-out;
}
#about .a-wrap:hover{
    transform: translateY(-4px);
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.2);
}
#about h4{
    color: var(--black);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 40px;
}
#about p{
    font-size: 16px;
    font-weight: 500;
}
#about h1{
    margin-top: 30px;
    color: rgba(0, 0, 0, 0);
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: #000;
    stroke: #000;
    font-size: 80px;
    font-weight: 800;
    /* font-family: "Inter Tight", sans-serif; */
    text-transform: uppercase;
}
#about .line{
    width: 100%;
    height: 2px;
    background-color: var(--blue);
}
#about .a-s{
    font-weight: 600;

}

/********* About Section End *********/

/********* Miss Section Start *********/

#miss{
    background-color: var(--bg2);
}
#miss button{
    border-bottom: 3px solid transparent;
    background-color: var(--bg);
    color: var(--blue);
    border-radius: 0;
}
#miss button:hover{
    background-color: var(--bg2);
}
#miss button .m-icon{
    font-size: 20px;
    margin-right: 10px;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    background-color: var(--blue) !important;
    color: var(--yellow) !important;
    border-color: var(--yellow) !important;
}
#miss button .m-head{
    font-weight: 600;
    text-transform: uppercase;
    font-size: 20px;
}
#miss h1{
    color: var(--blue);
    font-size: 35px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 30px;
}
#miss h5{
    line-height: 1.6;
}
#miss h2{
    font-weight: 700;
    font-size: 44px;
}
#miss .miss-bg{
    padding: 30px;
    background-color: var(--white);
}
#miss .nav-link{
    display: flex;
    align-items: center;
}

/********* Miss Section End *********/

/********* Services Section Start *********/

#services{
    position: relative;
   /* background-color: var(--blue);  */
}
#services .bg{
    position: absolute;
    top: 0;
    left: 50px;
}
#services .home{
    position: absolute;
    bottom: 0;
    right: 0;
}
#services .home2{
    position: absolute;
    bottom: 0;
    left: 0;
}
#services h2{
    font-weight: 600;
    color: var(--black);
    font-size: 44px;
    margin-bottom: 20px;
}
#services .s-wrap{
    position: relative;
    height: 100%;
    /* background-color: var(--white); */
    border-bottom: 2px solid var(--blue);
    transition: .3s ease-in-out;
}
#services .s-icon{
    display: flex;
    align-items: center;
    justify-content: center;
}
#services .s-icon img{
    transform: scale(1) !important;
    filter: brightness(0) saturate(100%) invert(98%) sepia(93%) saturate(1%) hue-rotate(189deg) brightness(107%) contrast(100%);
}
#services .s-wrap h5{
    color: var(--blue);
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    padding: 5px 0;
    transition: .3s ease-in-out;
}
#services .s-wrap p{
    opacity: 1;
    padding: 5px 0;
    font-size: 14px;
}
#services .s-wrap p span{
    color: var(--yellow);
    margin-left: 1px;
}
#services .s-btn a{
    text-decoration: none;
    font-weight: 600;
    font-size: 22px;
    color: var(--blue);
    transform: translateX(-50px);
    transition: .3s ease-in-out;
}
#services .s-btn a:hover{
    color: var(--yellow);
}
#services .s-btn a i{
    transition: .3s ease-in-out;
}
#services .all-link:hover .s-wrap{
    border-color: var(--yellow);
}
#services .all-link:hover h5{
    color: var(--yellow);
}
#services .all-link:hover a{
    transform: translateX(0);
    opacity: 1;
}
#services .all-link:hover .s-icon{
    background-color: var(--yellow);
}
#services .s-img{
    width: 100%;
    height: 250px;
    overflow: hidden;
}
#services .s-img img{
    object-fit: cover;
    height: 100% !important;
    transition: .3s ease-in-out;
}
#services .all-link:hover img{
    transform: scale(1.1);
}
/* #services .s-wrap:hover h5{
    color: var(--yellow);
} */
#services .s-icon{
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 1;
    width: 60px;
    height: 60px;
    font-size: 45px;
    color: var(--white);
    background-color: var(--blue);
    transition: .3s ease-in-out;
}
#services .sa-btn a{
    text-decoration: none;
    font-weight: 600;
    font-size: 19px;
    color: var(--blue);
    padding: 14px 25px;
    text-transform: uppercase;
    background-color: var(--yellow);
    transform: translateX(-50px);
    transition: .3s ease-in-out;
}
#services .sa-btn a:hover{
   background-color: var(--black);
   color: var(--white);
}
#services .all-link{
    text-decoration: none;
}

/********* Services Section End *********/

/********* Projects Section Start *********/

#projects{
    background-color: var(--blue);
}
#projects h2{
    font-weight: 600;
    text-transform: uppercase;
    font-size: 44px;
    color: var(--white);
}
#projects .pro{
    border-left: 1px solid var(--yellow);
    transition: .3s ease-in-out;
}
#projects .pro a{
    text-decoration: none;
}
#projects2 .pro{
    position: relative;
}
#projects2 .p-text{
    text-align: center;
    position: absolute !important;
    bottom: 40%;
    left: 50%;
    width: 80%;
    opacity: 0;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
    transform: translateX(-50%);
    transition: .4s ease-in-out;
}
#projects2 .p-text i{
    width: 70px;
    height: 70px;
    background-color: var(--yellow);
    display: flex;
    align-items: center;
    font-size: 40px;
    color: var(--black);
    justify-content: center;

}
#projects2 .p-text h4{
    color: var(--blue);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
}
#projects2 .p-text p{
    margin-bottom: 7px;
    font-size: 15px;
    color: var(--yellow);
}
#projects2 .over{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: 0.1;
    transition: .3s ease-in-out;
}
#projects2 .pro:hover .p-text{
    opacity: 1;
}
#projects2 .pro:hover .over{
    opacity: 0.6;
}
#projects .pro:hover img{
    transform: scale(1.04);
}
#projects .p-btn a{
    text-decoration: none;
    color: var(--yellow);
    font-weight: 500;
}
#projects2 .pa-btn a{
    text-decoration: none;
    color: var(--black);
    background-color: var(--yellow);
    padding: 14px 25px;
    font-weight: 500;
    text-transform: uppercase;
    transition: .3s ease-in-out;
}
#projects2 .pa-btn a:hover{
    color: var(--white);
    background-color: var(--black);
}
#projects .heading p{
    margin-top: 25px;
    margin-bottom: 0;
    font-size: 17px;
    font-weight: 500 !important;
}
.custom-buttons {
      margin-top: 10px;
    }

    .custom-buttons button {
      width: 60px;
      height: 60px;
      background: var(--white);
      color: var(--blue);
      border: none;
      margin-right: 7px;
      font-size: 20px;
      cursor: pointer;
      transition: .3s ease-in-out;
    }

    .custom-buttons button:hover {
      background: var(--yellow);
    }

/********* Projects Section End *********/

/********* Clients Section Start *********/

#clients{
    background-color: var(--bg2);
}
#clients h2{
    font-size: 44px;
    text-transform: uppercase;
}
#clients .c-btn a{
    text-decoration: none;
    color: var(--white);
    background-color: var(--blue);
    padding: 14px 25px;
    font-weight: 500;
    text-transform: uppercase;
    transition: .3s ease-in-out;
}
#clients .c-btn a:hover{
    color: var(--white);
    background-color: var(--black);
}


/********* Clients Section End *********/

/********* Cap Section Start *********/

#cap{
    background-color: var(--bg2);
}
#cap h3{
    font-weight: 500;
    font-size: 25px;
    line-height: 1.5;
    color: var(--black);
    margin: 10px 0;
}
#cap h1{
    font-size: 45px;
    opacity: 0.3;
    margin-bottom: 0;
    color: var(--blue);
}


/********* Cap Section End *********/

/********* FAQ Section Start *********/

#faq{
    background-color: var(--bg2);
}
#faq h1{
    font-size: 55px;
    color: var(--blue);
    font-weight: 700;
}
#faq .accordion{
    border-radius: 0 !important;
}
#faq .accordion-item{
    margin: 20px 0;
    padding-left: 20px;
    padding-right: 20px;
    background-color: var(--white);
}
#faq .accordion-item{
    border: none;
    background-color: none;
}
#faq .accordion-button{
    background-color: transparent;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 22px;
    color: var(--blue);
 }
 #faq .accordion-button span{
    font-weight: 700 !important;
    font-size: 20px;
    color: #929292;
 }
#faq .accordion-item{
    padding: 5px;
   border-bottom: 2px solid var(--blue);
}
#faq .accordion-button:not(.collapsed){
    background-color: transparent !important;
    border-bottom: none;
}
#faq .accordion-button:focus{
    box-shadow: none;
}
#faq .accordion-button::after {
    content: '\2b';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    background-image: none !important;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
  }
  
  #faq .accordion-button:not(.collapsed)::after {
    transform: rotate(45deg);
  }
  #faq .accordion-item:last-of-type{
    border-radius: 0;
  }


/********* FAQ Section End *********/

/********* Contact Section Start *********/


#contact .f-wrap{
    border: 1px dashed #c2c2c2;
}
#contact h2{
    font-weight: 700;
    font-size: 45px;
    color: var(--blue);
}
 .form {
      background: var(--white);
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .form-control:focus {
      box-shadow: none;
      border-color: var(--yellow);
    }

    .btn-custom {
      background-color: var(--blue);
      color: white;
      border-radius: 0;
    }

    .btn-custom:hover {
      background-color: var(--yellow);
    }
    #contact h3{
        font-weight: 700;
        font-size: 23px;
    }
     #contact h3 i{
        color: var(--yellow);
        margin-right: 5px;
    }
    #contact .det p{
        font-weight: 500;
        font-size: 16px;
        margin-left: 35px;
    }
    #contact .form{
        border-radius: 0;
    }
    #contact .form-control{
        border-radius: 0;
    }

/********* Contact Section End *********/

/********* Need Section End *********/
#need{
    background-color: var(--yellow);
}
.need{
    color: var(--black);
}
.need h2{
    font-weight: 700;
}
#need .n-btn a{
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    padding: 20px;
    background-color: var(--blue);
    transition: .3s ease-in-out;
    white-space: nowrap;
}
#need .n-btn a:hover{
    background-color: var(--black);
}

/********* Need Section End *********/



/************************************ Inner Page Start ************************************/


/********* Inner Contact Page Start *********/

#in-con .in-con-wrap .in-con-icon{
    width: 80px;
    height: 80px;
    font-size: 28px;
    margin-right: 15px;
    background-color: var(--blue);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}
#in-con .in-con-wrap .in-con-det h5{
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
}
.in-con-bg{
    background-color: var(--bg2);
}
    #in-con .form {
      background: transparent;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    #in-con .form-control:focus {
      box-shadow: none;
      border-color: var(--yellow);
    }

    #in-con .btn-custom {
      background-color: var(--blue);
      color: white;
      display: inline;
      padding: 14px 22px !important;
      text-transform: uppercase;
      border-radius: 0;
    }

    #in-con .btn-custom:hover {
      background-color: var(--yellow);
      color: var(--black);
    }
    #in-con .form{
        border-radius: 0;
    }
    #in-con .form-control{
        background-color: transparent;
        border: none;
        border-bottom: 1px solid #d1d1d1;
        border-radius: 0;
    }
.in-con-form-left h1{
    font-weight: 700;
    color: var(--blue);
    font-size: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.in-con-form-left p{
    font-size: 18px;
}
.in-con-form-right h2{
    font-weight: 700;
    color: var(--blue);
    font-size: 35px;
    text-transform: uppercase;
}
#in-con iframe{
    margin-bottom: -7px;
}

/********* Inner Contact Page End *********/

/********* Inner About Page Start *********/

#inner-about p{
    color: #555555;
    font-size: 16.8px;
     line-height: 1.6;
}
#inner-about h3{
    line-height: 1.4;
    font-weight: 600;
    font-size: 29px;
    color: var(--blue);
}
#inner-about h5{
    line-height: 1.4;
    font-weight: 600;
    color: var(--blue);
}
#inner-about .i-about-bg{
    background-color: var(--blue);
}
.i-about-bg p{
    color: #c9c9c9 !important;
}
.in-con-form-left h6{
    margin-top: 40px;
    line-height: 1.5;
    color: var(--blue);
    font-size: 18px;
}
.in-con-form-left h6 span{
    color: var(--yellow);
    font-weight: 700;
}
#inner-about .in-det{
    height: 100%;
    border-right: 1px solid var(--yellow);
}
#inner-about .in-det .in-det-icon{
    color: var(--yellow);
    font-size: 60px;
    margin-bottom: 10px;
}
#inner-about .in-det h4{
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
#inner-about .in-det h6{
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.5;
}

/********* Inner About Page End *********/

/********* Inner Projects Page Start *********/

#inner-pro h1{
    position: relative;
    margin-bottom: 40px !important;
    color: var(--blue);
}
#inner-pro h1::after{
    position: absolute;
    content: "";
    bottom: -15px;
    left: 0;
    width: 200px;
    height: 5px;
    background-color: var(--yellow);
}
#inner-pro p{
    font-size: 18px;
}
#inner-pro .in-pro{
    width: 100%;
    height: 550px;
    border: 1px solid #dddddd;
}
#inner-pro .in-pro img{
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: .5s ease-in-out;
}
#inner-pro .in-pro{
    overflow: hidden;
    position: relative;
}
#inner-pro .in-pro:hover img{
    transform: scale(1.12);
}
#inner-pro .in-pro-text{
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: var(--white);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.4);
    border-left: 6px solid var(--yellow);
}
#inner-pro .in-pro-text h4{
    color: var(--blue);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 23px;
    margin-bottom: 5px;
}
#inner-pro .in-pro-text h6{
    color: var(--yellow);
    font-weight: 600;
    font-size: 18px;
}
.glightbox-container{
    z-index: 9999999999999999 !important;
}
.glightbox-button svg {
  stroke: var(--yellow) !important; /* Arrow color */
  stroke-width: 2px;
}


/********* Inner Projects Page End *********/

/********* Inner Career Page Start *********/

#inner-career .form-title {
    margin-bottom: 80px;
    text-align: center;
    color: var(--blue);
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
}
#inner-career .form-title::after{
    position: absolute;
    content: "";
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background-color: var(--yellow);
}
#inner-career .form-label{
    margin-left: 8px;
    font-weight: 500 !important;
    color: var(--blue);
}
#inner-career .form-label .req{
    color: red;
    font-weight: 500;
}
#inner-career .form-select{
    padding: 7px;
    border-radius: 0;
    border-color: var(--yellow);
    box-shadow: none !important;
}
#inner-career .form-control{
    padding: 7px;
    border-radius: 0;
    border-color: var(--yellow);
    box-shadow: none !important;
}

/********* Inner Career Page End *********/

/********* Inner Product Page Start *********/

#inner-product h1{
    color: var(--blue);
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}
#inner-product h1::after{
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background-color: var(--yellow);
}
#inner-product img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #c2c2c2;
    transition: .4s ease-in-out;
    z-index: 1;
}
#inner-product .in-product-wrap{
    position: relative;
    overflow: hidden;
    background-color: var(--bg2);
    padding: 20px;
    width: 100%;
    height: 220px;
    border: 1px solid #c2c2c2;
}
#inner-product .in-pro-link{
    overflow: hidden;
}
#inner-product .in-pro-link:hover img{
    transform: scale(1.25);
}
#inner-product .over{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--blue);
    opacity: 0;
    z-index: 2;
    transition: .4s ease-in-out;
}
#inner-product .in-pro-link:hover .over{
    opacity: 0.9;
}
#inner-product .view-pro-link{
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    color: var(--black);
    font-weight: 600;
    font-size: 12px;
    padding: 12px 20px;
    background-color: var(--yellow);
    opacity: 0;
    text-transform: uppercase;
    transition: .4s ease-in-out;
}
#inner-product .view-pro-link:hover{
    background-color: var(--black);
    color: var(--white);
}
#inner-product .in-pro-link:hover .view-pro-link{
    opacity: 1;
    top: 50%;
}
#inner-product .view-pro-link a{
    padding: 14px 20px;
    background-color: var(--yellow);
    color: var(--white);
}
#inner-product .in-prto-rel{
    position: relative;
}

#pro-ban h1{
    font-size: 50px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
}
#pro-ban{
    padding: 40px;
    background-color: var(--blue);
}
#pro-ban .bread{
    font-size: 16px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    color: var(--white);
    font-weight: 500;
}
#pro-ban .bread i{
    font-size: 14px;
}
#pro-ban a{
    color: var(--yellow);
    font-weight: 700;
    text-decoration: none;
}
#pro-ban a:hover{
    text-decoration: underline;
}
#pro-ban span{
    opacity: 0.6;
}
.pro-sidebar{
    position: sticky;
    top: 110px;
}
.pro-sidebar ul li{
    list-style: none;
    margin-bottom: 12px;
}
.pro-sidebar ul li a{
    background-color: var(--bg2);
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 0;
    text-decoration: none;
    border: 1px solid #e6e6e6;
    color: var(--black);
    border-left: 7px solid var(--yellow);
    transition: .4s ease-in-out;
}
.pro-sidebar ul li a:hover{
    background-color: var(--blue);
    border: 1px solid var(--blue);
    border-left: 7px solid var(--yellow);
    color: var(--white);
}
.pro-sidebar ul li a.active{
    background-color: var(--yellow);
    border: 1px solid var(--yellow);
    border-left: 7px solid var(--blue);
    font-weight: 500;
    color: var(--black);
}
.pro-sidebar ul li a.active:hover{
    background-color: var(--blue);
    border: 1px solid var(--blue);
    border-left: 7px solid var(--yellow);
    color: var(--white);
}
.pro-end-text{
    background-color: var(--bg2);
    margin-top: 40px;
    text-align: center;
    border: 1px solid #e9e9e9;
    padding: 25px;
}
.pro-sub-text p{
    color: #585858;
}
.pro-contact{
    background-color: var(--yellow);
}
.pro-contact h4{
    font-size: 28px;
    color: var(--blue);
    font-weight: 700;
}
.pro-contact p{
    font-size: 16px;
    line-height: 1.2;
}
.pro-con-btn a{
    text-decoration: none;
    padding: 10px 16px;
    font-size: 15px;
    color: var(--black);
    border: 1px solid var(--black);
    transition: .4s ease-in-out;
}
.pro-con-btn a:hover{
    background-color: var(--black);
    color: var(--white);
}
.pro-sin-img img{
    width: 100%;
    border: 1px solid #c2c2c2;
    margin-bottom: 50px;
}
#all-products-inner h3{
    font-weight: 700;
    text-transform: uppercase;
    color: var(--blue);
    font-size: 24px;
    position: relative;
    margin-bottom: 30px;
}
#all-products-inner h3::after{
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 70px;
    height: 4px;
    background-color: var(--yellow);
}

/********* Inner Product Page End *********/