  @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');

*
{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html
{
    scroll-behavior: smooth;
}

:root
{
    --logo2:#25aae1;
    --logo1:#2e348e;
    --textcolor:#0a1068;
}

h1,h2,h3,h4,h5,h6
{
    margin:0;
    color: var(--textcolor);
}
p
{
    margin:0;
}

#main
{

}

.powerline-loader
{
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 299;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* .powerline-loader .main-items
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap:20px;
}
.powerline-loader img
{
    width:20%;
    opacity: 0;
    animation: loader-fade 6s ease infinite;
}
@keyframes loader-fade
{
    0%
    {
        opacity: 0;
    }
    50%
    {
        opacity: 1;
    }
    80%
    {
        opacity: 1;
    }
    100%
    {
        opacity: 0;
    }
}
.powerline-loader .powerline-loader-head
{
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    background: #121FCF;
    background: linear-gradient(to right, #2e348e 0%, #25aae1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}
@keyframes loader-text-fade
{
    0%
    {
        opacity: 0;
    }
    50%
    {
        opacity: 1;
    }
    100%
    {
        opacity: 0;
    }
}
 */


/* HEADER SECTION */
.top-header
{
    background:linear-gradient(90deg, var(--logo2),var(--logo1));
    padding:8px 0;
}
.top-header .content
{
    display: flex;
    justify-content: end;
}
.top-header .content p, .top-header .content span
{
    color:#fff;
    margin:0;
    font-size: 14px;

}
.top-header .content p
{
    padding:0 20px;
}


#header
{
    width: 100%;
    z-index: 199;
    position: sticky; top: 0;
}
#navbar
{

}
#header .navbar
{
    padding:5px 5%;
    display: flex;
    justify-content: space-between;
    background: #fff;
    box-shadow: 0 0 30px #00000010;
    transition: .5s ease;
}

#header .navbar.nav-active{

  
}
.home-pg #header .navbar{
    padding:10px 5%;
    display: flex;
    justify-content: space-between;
    background: transparent;
    box-shadow: none;
    transition: .1s ease;
    position: absolute;
    width: 100%;
    background-color: #fff;
}


.nav-active
{
    background: #fff !important;
    box-shadow: 0 0 30px #00000010;
}
#header .navbar .logo-div
{
    width: 85px;
    transition: .3s ease;

}
.logo-nav-active
{
    width: 65px !important;
}
#header .navbar .navbar-collapse
{
    justify-content: end;
}
#header .navbar .navbar-collapse .navbar-nav
{
    margin:0 !important;
}
.navbar .navbar-nav .nav-link
{
    color: var(--logo1) !important;
    font-weight: 500;
    transition: .3s ease;
    margin-right: 10px;
        margin-top: -5px;
}
.navbar .navbar-nav .nav-link:hover
{
    color: var(--logo2) !important;
}

.navbar-collapse .dropdown:hover .dropdown-menu
{
    /* display: block; */
}
.navbar-collapse .dropdown-menu[data-bs-popper]
{
    padding: 0 !important;
    left: 50%;
    transform: translateX(-50%);
    width: 70% !important;
    border: none;
    box-shadow: 0 0 30px #00000010;
    border-radius: 20px;
    overflow: hidden;
}
.navbar-collapse .dropdown-menu .first-col
{
    background: linear-gradient(90deg, var(--logo1), var(--logo2)) !important;
    overflow: hidden;
    padding: 10px 20px 20px;
    color: white !important;
    border-radius: 20px;
}
.navbar-collapse .dropdown-menu .first-col h5
{
    color: #fff !important;
    font-size: 24px;
    font-weight: 600;
}
.navbar-collapse .dropdown-menu .first-col img
{
    border-radius: 10px;
}
.navbar-collapse .dropdown-menu .first-col a
{
    text-decoration: none   ;
}
.navbar-collapse .dropdown-menu .first-col p
{
    font-size: 14px;
}
.navbar-collapse .dropdown-menu .scnd-col
{
    padding: 10px 20px;
}
.navbar-collapse .dropdown-menu .scnd-col p
{
    font-weight: 600;
}
.navbar-collapse .dropdown-menu .scnd-col a
{
    font-size: 14px;
    padding:10px;
    transition: .2s ease;
}
/* .navbar-collapse .dropdown-menu .scnd-col a:hover, .navbar-collapse .dropdown-menu .third-col a:hover
{
    background:var(--logo1);
    color: #fff;
    border-radius: 20px;
} */
.navbar-collapse .dropdown-menu .third-col
{
    padding: 30px 20px 10px 20px;
}
.navbar-collapse .dropdown-menu .list-group-item
{
    border: none;
}
.navbar-collapse .dropdown-menu .third-col a
{
    font-size: 14px;
    transition: .1s ease;
    padding: 10px;
}
.navbar-toggler
{
    padding:10px;
    border: none;
    outline:none;
    box-shadow: none;
}
.navbar-toggler i
{
    color: var(--textcolor);
}
.navbar-toggler i:hover
{
    color: var(--logo2);
}
.navbar-toggler:focus
{
    outline: none !important;
    box-shadow: none;
}
.sticky
{
    position: fixed;
    top: 0;
    width: 100%;
}


.search-icon-section button
{
    background:none;
    border: none;
    outline: none;
    margin-top: 10px;
}
.search-icon-section i
{
    color: var(--logo1);
    font-size: 24px;
    transition: .3s ease;
}
.search-icon-section i:hover
{
    color: var(--logo2);
}
.search-icon-section input
{
    padding: 20px 40px;
    width: 100%;
    outline: none;
    border: none;
}


.navbar-collapse .dropdown-menu .first-col.bsnss
{
    background: linear-gradient(90deg, var(--logo1), var(--logo2)) !important;
}

.countries-list-tab
{
    display: none;
}
.country-change-icon
{
    margin-left: 20px;
}
.country-change-icon i
{
    color: var(--logo1);
    font-size: 20px;
    transition: .3s ease;
}
.country-change-icon i:hover
{
    color: var(--logo2);
}
.country-change-icon .dropdown-menu[data-bs-popper]
{
    right: 2% !important;
    top: 30px;
    left: -100px;
}

.country-change-icon button
{
    background:none;
    border: none;
    outline: none;
    margin-top: 0px;
}
.country-change-icon .dropdown-menu[data-bs-popper]
{
    border: none;
    background:#fff;
    backdrop-filter: blur(30px);
    padding:2px !important;
    box-shadow: 0 0 20px #00000010;
    width: unset !important;
    transform: unset;
    border-radius: 10px;
}
.country-change-icon .dropdown-menu img
{
    width: 20px;
}
.country-change-icon .dropdown-menu li
{
    display: flex;
    padding:5px 10px;
    transition: .3s ease;
    border-radius: 5px;
    position: relative;
}
/* 
.country-change-icon .dropdown-menu li::after{
    content: 'Coming Soon';
    position: absolute;
    left: 0;
    top: 0;
} */


.country-change-icon .dropdown-menu li:hover
{
    background: linear-gradient(45deg, var(--logo1), var(--logo2));
    box-shadow: 2px 2px 10px #25aae163;
}
.country-change-icon .dropdown-menu li:hover a
{
    color: #fff;
}
.country-change-icon .dropdown-menu li a
{
    padding:0;
    background:transparent;
    display: flex;
    align-items: center;
}
.dropdown-toggle::after
{
    color: transparent;
}


/* BANNER SECTION */
#banner
{
    background-image: url('../img/banner/uae-banner.png');
    background-size: cover;
    background-position: top;
    height: 100vh;
    width: 100%;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    /* position: fixed; */
}
#banner h1
{
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
}
#banner p
{
    font-size: 18px;
}
#banner .left
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* padding: 15% 0; */
    gap:15px;
}
#banner .right
{
    display: flex;
    padding:40px;
    align-items: center;
}




/* ABOUT SECTION */
#aboutsection
{
    padding:5% 0;
}
#aboutsection .left
{
    padding:60px;
    overflow: hidden;
}
#aboutsection .left .img-div
{
    position: relative;
}
#aboutsection .left .img-div .abt-img-2
{
    position: relative;
    left: 0;
    top:0;
}
#aboutsection .left .img-div .abt-img-3
{
    position: absolute;
    left: 0;
}
#aboutsection .right
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap:10px;
}
#aboutsection .abt-img-1
{
    position: absolute;
    z-index: 2;
    filter: drop-shadow(0 0 10px #ffc3008a);
    animation: image-move 6s ease-in-out infinite;
    transform: translateY(10px);
}

@keyframes image-move
{
    0%
    {
        transform: translateY(10px);
    }
    50%
    {
        transform: translateY(-10px);
    }
    100%
    {
        transform: translateY(10px);
    }

}




/* COMMON CONTENTS */
.content-para
{
    font-size: 16px;
    line-height: 24px;
}
.top-head
{
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.main-head
{
    font-weight: 600;
    font-size: 36px;
}
.main-btn
{
    padding:8px 30px;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(90deg, var(--textcolor), var(--logo2));
    width: fit-content;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    background-size: 100% auto;
    margin-top:8px;
    transition: .3s ease;
    box-shadow: 4px 4px 20px #25aae182;
}
.main-btn:hover
{
    background-size: 300% auto;
}



/* SERVICE SECTION */
#servicesection
{
   background-color: #def5ff;
    padding: 3% 0 3% 0;

}
#servicesection .service-cards
{
    padding:10px;
     box-shadow: 0 0 10px #00000010;
    border-radius: 8px;
}
#servicesection .service-cards img
{
    border-radius: 10px;
}
#servicesection .service-cards h2
{
    font-size: 22px;
    font-weight: 600;
    margin-top:20px;
}
#servicesection .service-cards p
{
    font-size: 16px;
    line-height: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
#servicesection .owl-carousel .owl-stage
{
    padding:20px 0;
}
#servicesection .card-details
{
    display: flex;
    flex-direction: column;
    gap:10px;
    padding:10px;
}
#servicesection .service-cards .service-btn
{
    padding:10px 20px;
    background: var(--logo1);
    font-size: 14px;
    color:#fff;
    text-decoration: none;
    width: fit-content;
    transition: .3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
#servicesection .service-cards .service-btn::before
{
    content: '';
    position: absolute;
    left: 0;
    top:0;
    width: 0%;
    height: 100%;
    background: var(--logo2);
    transition: .3s ease;
    z-index: -1;
    /* transform: translateX(-100%); */
}
#servicesection .service-cards .service-btn:hover::before
{
    /* transform: translateX(0); */
    width: 100%;

}

.axsererv{
    width: 65%;
    margin-left: 10px;
    margin-bottom: 8px;
    margin-top: 35px;
}

.axtab1{
    
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.tablink {
  background-color: #FFF;
  color: white;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  font-size: 17px;
  width: 25%;
  color:#2e348e;
  border:solid 1px #2e348e;
}

.tablink:hover {
  background-color: #25aae1;
  color:#fff;
}

/* Style the tab content (and add height:100% for full page content) */
.tabcontent {
  color: #000;
  display: none;
  padding: 10px 20px;
  height: 100%;
}


/* CALL ACTION SECTION */
#first-cta
{
    padding:0 0 5% 0;

}
#first-cta .container-fluid
{
    padding:0;
}
#first-cta .cta-box
{
    background-image:url(../img/cta-bg-3.jpg) ;
    background-size: cover;
    background-position:center center;
    padding:140px 20px;
    overflow: hidden;
    /* border-radius: 20px; */
}
#first-cta .cta-box .right
{
    padding-right:40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap:20px;
    overflow: hidden;
}
#first-cta .cta-box .right button
{
    padding:10px 30px;
    font-size:18px;
    font-weight: 600;
    border: none;
    outline: none;
    width: fit-content;
    transition: .3s ease;
    /* border-radius: 5px; */
}
#first-cta .cta-box .right button:hover
{
    background:var(--logo2);
    color:#fff;
}
#first-cta .cta-box h3
{
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    width: 80%;
}
#first-cta .cta-box p
{
    color:#fff;
    width: 80%;
}


.adresas{
    
    margin-top:-8px;
}
.adresas h5{
    
    margin-bottom:10px;
}

.adresas p{
    
    display:flex;
}


table.cent tr td:first-child{
    
   text-align: center;
}


table.cent tr td:last-child{
    
   text-align: center;
}


table.cent tr th:first-child{
    
   text-align: center;
}


table.cent tr th:last-child{
    
   text-align: center;
}

/* PRODUCT SECTION */
#productssection
{
    padding:0 0 5% 0;

}
#productssection .products .items
{
    /* background:var(--textcolor); */
    border-radius: 10px;
    box-shadow: 0 0 10px #00000010;
}
#productssection .img-div
{
    padding:10px;
}
#productssection .products .items .prdct-details h2
{
    font-size: 24px;
    font-weight: 600;
    /* margin-top:20px; */
}
#productssection .products .items img
{
    height: 210px;
    border-radius: 10px;
}
#productssection .products .items .prdct-details
{
    padding:20px;
    display: flex;
    flex-direction: column;
    gap:10px;
}
#productssection .products .items .prdct-details .prdct-card
{
    box-shadow: none;
    font-size: 14px;
    font-weight: 500;
    background: linear-gradient(90deg, var(--logo2), var(--logo1));
    background-size: 100% auto;
    margin:0;
    text-decoration: none;
    padding: 5px 10px;
    width: fit-content;
    color: #fff;
    transition: .3s ease;
    border-radius: 3px;
    box-shadow: 4px 4px 10px #25aae182;
}
#productssection .products .items .prdct-details .prdct-card:hover
{
    background-size: 200% auto;

}
#productssection .products .items .prdct-details
p
{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
    font-size: 16px;
    /* margin-top:10px; */
}
#productssection .owl-carousel .owl-stage
{
    padding: 30px 0;
}



/* WHYCHOOSE SECTION */
#whychoose
{
    padding:0 0 5% 0;
    
}
#whychoose .left
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap:10px;
}
#whychoose .img-div
{
    position: relative;
}
#whychoose .img-div .why-img-1
{
    position: relative;
    left: 0;
    top: 0;
    animation: imagemove1 6s ease-in-out infinite;
    filter: drop-shadow(4px 4px 10px #da78076a);
}
#whychoose .img-div .why-img-2
{
    position: absolute;
    left: 0;
    top: 0;
    animation: imagemove2 6s ease-in-out infinite;
    filter: drop-shadow(4px 4px 10px #da78076a);

}

@keyframes imagemove1
{
    0%
    {
      transform: translateY(0);  
    }
    50%
    {
        transform: translateY(20px);  
    }
    100%
    {
        transform: translateY(0);  
    }
}
@keyframes imagemove2
{
    0%
    {
      transform: translateY(0);  
    }
    50%
    {
        transform: translateY(-20px);  
    }
    100%
    {
        transform: translateY(0);  
    }
}






#contactsection
{
    padding: 0 0 5% 0;
}
#contactsection .container
{
    display: flex;
    align-items: center;
    justify-content: center;
}
#contactsection .contact-box
{
    background:linear-gradient(90deg, var(--textcolor), var(--logo2));
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    border-radius: 10px;
    gap:15px;
    box-shadow: 0px 0px 30px #1babe982;
}
#contactsection .contact-box .contact-btn
{
    padding:10px 40px;
    font-size: 18px;
    font-weight: 600;
    background: #fff;
    color:var(--textcolor);
    text-decoration: none;
    border-radius: 5px;
    transition: .3s ease;
    color: var(--textcolor);
    box-shadow: 3px 3px 20px #ffffff99;
}
#contactsection .contact-box .contact-btn:hover
{
    background:var(--textcolor);
    color: #fff;
    box-shadow: 3px 3px 20px #25aae175;

}
#contactsection .contact-box h2
{
    font-size: 30px;
    color:#fff;
    font-weight: 700;
}
#contactsection .contact-box p
{
    color:#fff;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    width: 80%;

}


#footersection {
    padding: 4% 0 0 0;
    background: url(../img/pattern-1.png);
    background-attachment: fixed;
    background-size: auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-repeat: repeat;
    border-top: solid #dadada 1px;
}
/* #footersection::after
{
    content:'';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(255, 255, 255, 0.94);
    z-index: -1;
} */
#footersection .footer-logo
{
    width: 40%;
}
#footersection ul
{
    padding: 0;
    margin: 0;
}
#footersection ul a
{
    text-decoration: none;
    color: var(--textcolor);
    position: relative;

}
#footersection ul a::before
{
    content: '';
    position: absolute;
    left: -10px;
    font: var(--fa-font-solid);
    /* top:50%; */
    /* width: 5px; */
    /* height: 3px; */
    /* background: red; */
}
#footersection ul li
{
    list-style-type: none;
    margin-bottom: 5px;
}
#footersection h2
{
    font-weight: 600;
    color: var(--logo1);
    font-size: 22px;
    margin-bottom:20px;
    position: relative;
}
#footersection h2::after
{
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 3px;
    border-radius: 20px;
    width: 20%;
    background: var(--logo2);
}
#footersection .copyright
{
    background: var(--logo2);
    padding:10px;
    margin-top:20px;
    z-index: 99;
    position: relative;
}
#footersection .copyright p
{
    text-align: center;
    color: #fff;
    font-size: 14px;
}
#footersection .contact div
{
    display: flex;
    margin-bottom: 5px;
}
#footersection .contact div i
{
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-right:10px;
    color: var(--textcolor);
    transition: .3s ease;
}
#footersection .contact div i:hover
{
    color: var(--logo1);

}
#footersection .contact p
{
    color: var(--textcolor);
}
#footersection .location div
{
    display: flex;
    gap:10px;
}
#footersection .location div i
{
    display: flex;
    margin-top:5px;
    color: var(--textcolor);
    transition: .3s ease;
}
#footersection .location p
{
    color: var(--textcolor);
}
#footersection .location div i:hover
{
    color: var(--logo1);
}



@media only screen and (max-width: 992px)
{
    .powerline-loader .main-items
    {
        gap:30px;
    }
    .powerline-loader .powerline-loader-head
    {
        font-size: 40px;
        line-height: 30px;
        text-align: center;
    }
    .powerline-loader img
    {
        width:50%;
    }


    #banner .left
    {
        padding:30% 0 0%
    }

    #header .navbar
    {
        background: #fff;
    }

    .search-icon-section
    {
        display: none;
    }

    .countries-list-tab
    {
        display: block;
    }

    .country-change-icon
    {
        display: none;
    }

    .navbar-collapse .dropdown-menu[data-bs-popper]
    {
        transform: unset;
        box-shadow: none;
        background: transparent;
        border-radius: 0;
        width: 100% !important;
    }
    .navbar-collapse .dropdown-menu .first-col
    {
        display: none;
    }
    .navbar-collapse .dropdown-menu .scnd-col
    {
        padding:10px;
    }
    .navbar-collapse .dropdown-menu .third-col a,  .navbar-collapse .dropdown-menu .scnd-col a
    {
        background:transparent;
        color: var(--logo1);
        padding:5px;

    }
    .navbar-collapse .dropdown-menu .scnd-col p,
    .navbar-collapse .dropdown-menu .third-col p
    {
        background: transparent;
        color: var(--logo1);
    }


    #first-cta .cta-box
    {
        padding:60px 0;
    }
    #first-cta .cta-box p
    {
        width: 100%;
    }


    #whychoose .right
    {
        display: flex;
        justify-content: center;
    }

    #contactsection .contact-box
    {
        width: 100%;
    }
    
}





@media only screen and (max-width: 768px)
{
    .powerline-loader .main-items
    {
        gap:30px;
    }
    .powerline-loader .powerline-loader-head
    {
        font-size: 28px;
        line-height: 30px;
        text-align: center;
    }
    .powerline-loader img
    {
        width: 50%;
    }

    #banner .left
    {
        padding:10% 20px 0;
        gap:10px;
    }
    #banner .right
    {
        padding: 10px;
    }
    #banner h1
    {
        font-size: 26px;
        line-height: 32px;
    }
    #banner p
    {
        font-size: 16px;
        line-height: 22px;
    }
    .navbar-collapse .dropdown-menu .third-col
    {
        padding: 0 10px;
    }
    .navbar-collapse .dropdown-menu .scnd-col
    {
        padding: 0 10px;
    }

    .main-btn
    {
        font-size:14px;
    }
    .main-head
    {
        font-size: 26px;
    }
    .content-para
    {
        line-height: 22px;
    }


    #aboutsection
    {
        padding: 10% 0;
    }
    #aboutsection .left
    {
        padding:60px 20px;
    }
    #aboutsection .right
    {
        gap:5px;
        padding:0 20px;
    }
    

    #servicesection .owl-carousel .owl-stage
    {
        padding:10px 0;
    }
    #servicesection .card-details
    {
        padding: 0;
    }



    #first-cta
    {
        padding:0 0 10% 0;
    }
    #first-cta .cta-box
    {
        padding:50px 20px;
    }
    #first-cta .cta-box h3
    {
        font-size: 30px;
    }
    #first-cta .cta-box .right
    {
        gap:10px;
        padding-right: 0px;
    }
    #first-cta .cta-box .right button
    {
        font-size: 14px;
        padding: 5px 20px;
    }


    #productssection
    {
        padding:0 0 10% 0;
    }
    #productssection .owl-carousel .owl-stage
    {
        padding:10px 0;
    }

    #whychoose .left
    {
        padding:0 20px;
    }
    #whychoose .right
    {
        padding:30px 20px;
    }

    #contactsection .container
    {
        padding:0 30px;
    }
    #contactsection .contact-box
    {
        padding:30px;
        gap:10px;
        box-shadow: 0px 0px 20px #1babe982;
    }
    #contactsection .contact-box h2
    {
        font-size: 24px;
        text-align: center;
    }
    #contactsection .contact-box p
    {
        width: 100%;
        font-size: 14px;
        line-height: 18px;
    }
    #contactsection .contact-box .contact-btn
    {
        font-size: 14px;
        padding:5px 30px;
    }
    

    #footersection .footer-logo
    {
        width: 50%;
    }
    #footersection .foot-logo, #footersection .links, #footersection .location, #footersection .contact
    {
        padding: 0 20px;
    }
    #footersection ul
    {
        margin-left: 0px;
    }
    #footersection .copyright p
    {
        font-size: 12px;
    }
}

@media only screen and (max-width: 380px)
{
    .powerline-loader .powerline-loader-head
    {
        font-size: 24px;
    }   
}

























/* ABOUT PAGE STYLE */



#about-page-banner {
    height: 74vh;
   
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0) 100%), url("../img/banner/powerline-about-banner.jpg") no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: end;
    margin: 2% 6%;
    border-radius: 10px;
    padding-bottom: 35px;
    padding-left: 40px;
    filter: saturate(0);
}

#about-page-banner .row{

    width: 100%;
}

.clasax{
    background: 
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0) 100%),
    url("../img/banner/business-partners.jpg") no-repeat;
    
    border-radius: 10px;
    background-position: center;
}

.cards.valuee{

    margin-top: 40px;
}

.cards.valuee h1{
    padding-left: 2rem;
    padding-bottom: 1rem;
    font-size: 32px;
}

.cards.valuee .about-points li {
    margin-bottom: 10px;
    line-height: 26px;
}



#about-page-banner .left
{
    height: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: end;
    margin-top:40px;
}

#about-page-banner .main-head,.top-head{

    color: #2e348e;
}

#about-page-banner .main-head.ss,.top-head.ss{

    color: #fff;
}



#abt-contents
{
    padding:3% 0;
}
#abt-contents .left
{
    padding:30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#abt-contents .left .img-div
{
    position: relative;
}
#abt-contents .left .abt-img-1
{
    position: relative;
    z-index: 2;
    animation: float 6s ease infinite 3s;
}
#abt-contents .left .abt-img-2
{
    position: absolute;
    left: 0;
    animation: float 6s ease infinite 3s;
    animation-delay: 1000ms;

}
#abt-contents .left .abt-img-3
{
    position: absolute;
    left: 0;
    animation: float 6s ease infinite 3s;
    animation-delay: 2000ms;

}
#abt-contents .right
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap:10px;
}
@keyframes float
{
    0%
    {
        transform: translateY(0);
    }
    50%
    {
        transform: translateY(-20px);
    }
    100%
    {
        transform: translateY(0);
    }
}

#abt-contents .abt-img-4
{
    /* animation: rotate 6s ease infinite; */
}
@keyframes rotate
{
    0%
    {
        transform: rotate(1deg);
    }
    50%
    {
        transform: rotate(-1deg);
    }
    100%
    {
        transform: rotate(1deg);
    }
}

#abt-contents .abt-cntnt
{
    overflow: hidden;
}
#abt-contents .abt-cntnt .img-div
{
    position: relative;
    overflow: hidden;
}
#abt-contents .abt-img-4
{
    position: relative;
}
#abt-contents .abt-img-5
{
    position: absolute;
    left: 0;
}


#objectives .cards.acc {
    padding: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    height: 275px;
    margin-bottom: 30px;
    border-radius: 10px;
    background: rgb(37,170,225);
    background: linear-gradient(119deg, rgba(37,170,225,1) 0%, rgba(10,16,104,1) 100%);
    color: #fff;
}
#objectives .cards.acc h1 {

    color: #fff;
}


#objectives
{
    /* background: url('../img/about-section/mission-bg.jpg'); */
    background-size:100% ;
    background-position: left center;
    height: 100%;
    padding:2% 0;
    margin:0 0 5%;
}
#objectives .cards
{
    padding:15px;
    /* background: red; */
}
#objectives .cards img
{
    width: 5%;
    margin-bottom:10px;
}
#objectives h1
{
    font-size: 28px;
    font-weight: 700;
}
#objectives p
{
    width: 90%;
}
#objectives .right
{
    display: flex;
    flex-direction: column;
    gap:5px;
}


@media only screen and (max-width: 992px)
{
    #about-page-banner
    {
        height: 30vh;
    }
    #about-page-banner .left
    {
        margin-top:60px;
    }

    #abt-contents .left
    {
        padding: 0 0 60px;
    }

    #abt-contents .abt-cntnt .img-div
    {
        padding:40px 0;
    }

    #objectives
    {
        background:url('../img/about-section/mission-bg-tab.jpg');
        background-size: cover;
        background-position: center center;
    }
    #objectives p
    {
        width: 60%;
    }
    #objectives .cards
    {
        padding:20px 0;
    }
    #objectives .cards img
    {
        width: 10%;
    }
}

@media only screen and (max-width: 768px)
{

    #about-page-banner {
    
        padding-bottom: 0px;
        padding-left: 20px;
     
    }

    #objectives .cards.acc {
        padding: 15px;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        height: 430px;
    }

    #abt-contents .left {
        padding: 0 20px 5px;
    }


    #objectives .cards.acc {
        padding: 15px;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        height: 435px;}

    #about-page-banner
    {
        height: 40vh;
        background-position: center left;
    }
    #about-page-banner .left
    {
        padding:0 20px;
        margin-top:100px;
    }

    #abt-contents .left
    {
        padding: 0 20px 5px;
    }
    #abt-contents .right
    {
        padding: 0 20px;
    }
    #abt-contents .abt-cntnt .img-div
    {
        padding:10px 20px 30px;
    }
    #abt-contents .abt-cntnt .abt-scnd-para
    {
        padding: 0 20px;
    }


    #objectives
    {
        background:none;
    }
    #objectives .right
    {
        padding:0 20px;
    }
    #objectives p
    {
        width: 100%;
    }
    #objectives .cards img
    {
        width: 20%;
    }
}



























/* CONTACT PAGE STYLE */
#contact-page-section
{
    background: url('../img/banner/contact-pg-banner-poweline.jpg');
    background-size: cover;
    height: 40vh;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
}
#contact-page-section .main-head
{
    margin-top: -30px;
    color: #fff;
}


#contactus
{
    /* padding:30px; */
    position: relative;
    margin-bottom:60px;
}
#contactus h4
{
    font-weight: 600;
    font-size: 26px;
}
#contactus .contact-div
{
    border-radius: 20px;
    overflow: hidden;
    margin-top:-85px;
    background: #fff;
    box-shadow: 0 0 30px #00000010;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
#contactus .contact-div .left
{
    padding:40px 50px;
}
#contactus .contact-div .left input, #contactus .contact-div .left textarea
{
    width: 100%;
    outline: none;
    border: none;
    background:#f6f9ff;
    padding:10px 20px; 
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
#contactus .contact-div .left input::placeholder, #contactus .contact-div .left textarea::placeholder
{
    font-size: 14px;
    color: #0a106884;
}
#contactus .contact-div .right
{
    padding: 30px 60px;
    background:linear-gradient(-90deg, #1c98ca,#0f5a95);
    position: relative;
}
#contactus .contact-div .right .logo-white
{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30%;
    opacity: .2;
    transform: rotate(-30deg);
}
#contactus .contact-div .right p, #contactus .contact-div .right h4, #contactus .contact-div .right i
{
    color:#fff;
}
#contactus .contact-div .right .cont-details
{
    display: flex;
    flex-direction: column;
    justify-content: start;
    height: 100%;
    gap:20px;
}
#contactus .contact-div .right .cont-details div
{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    row-gap: 10px;
    margin-bottom: 10px;
}
#contactus .contact-div .right .cont-details div h6{
    width: 100%;
    font-size: 20px;
    color: #fff;
  }

#contactus .contact-div .right .cont-details i
{
    margin-top:5px;
    font-size: 18px;
}
#contactus .contact-div .right .cont-details .address, #contactus .contact-div .right .cont-details .phone
{
    /* margin-top:20px; */
}
#contactus .contact-div .left .cnt-button
{
    display: flex;
    justify-content: end;
}
#contactus .contact-div .left .cnt-button .cntc-btn
{
    outline: none;
    border: none;
    background: linear-gradient(90deg, var(--logo1
    ),var(--logo2));
    padding:10px 40px;
    width: fit-content;
    color:#fff;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 3px 3px 20px #25aae175;
    background-size: 100% auto;
    transition: .3s ease;
}
#contactus .contact-div .left .cnt-button .cntc-btn:hover
{
    background-size: 200% auto;
}
#contactus .contact-div .right .cont-details .social-media a
{
    text-decoration: none;
}
#contactus .contact-div .right .cont-details .social-media i
{
    padding:15px;
    background: var(--logo2);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    transition: .3s ease;
}
#contactus .contact-div .right .cont-details .social-media i:hover
{
    background: var(--textcolor);
}



#map
{
    margin-bottom:60px;
    margin-top: 30px;
}
#map iframe
{
    width: 100%;
    border-radius: 20px;
}

@media only screen and (max-width: 992px)
{
    #contact-page-section .main-head
    {
        padding-top: 25%;
        font-size: 32px;
    }
    #contact-page-section
    {
        height: 43vh;
        background-position: -400px center;
    }
    #contactus .contact-div .right
    {
        padding:60px;
    }
    #contactus .contact-div .left .cnt-button
    {
        justify-content: center;
    }
    #contactus .contact-div .left .cnt-button .cntc-btn
    {
        width: 40%;
    }
    #contactus .contact-div
    {
        margin-top:-100px;
    }
}


@media only screen and (max-width: 768px)
{
    
    .axsererv{
    width: 100%;
    margin-left: 10px;
    margin-bottom: 8px;
    margin-top: 7px;
}
    #contact-page-section
    {
        height: 45vh;
        background-position:center left;
    }
    #contact-page-section .container
    {
        padding:0 20px;
    }
    #contact-page-section .main-head
    {
        padding-top: 40%;
        font-size: 26px;
    }
    

    #contactus .container
    {
        padding:0 20px;
    }
    #contactus .contact-div .right
    {
        padding:60px 40px;
    }
    #contactus .contact-div .left .cnt-button .cntc-btn
    {
        width: 100%;
    }
    #contactus .contact-div .right .cont-details div
    {
        gap:10px;
    }

    #map .container
    {
        padding:0 20px;
    }
    
}

















/* CAREER PAGE BANNER */
#career-page-banner
{
    height: 70vh;
    background: url('../img/banner/career-page-banner.jpg');
    background-size:cover;
    background-position: center center;
}
#career-page-banner .left
{
    padding-top: 20%;
}

#careerpara-1
{

}
#careerpara-1 .left, #careerpara-1 .right
{
    padding:60px 20px;
}
#careerpara-1 .left img
{
    border-radius: 20px;
}
#careerpara-1 .right .main-head
{
    font-size: 30px;
}
#careerpara-1 .right
{
    display: flex;
    flex-direction: column;
    justify-content: center;
}





#openings
{
    padding:4% 0 8% 0;
}
#openings .main-head
{
    font-size: 30px;
}
#openings .open-div
{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:30px;
    row-gap: 50px;
}
#openings .open-div .main-head
{
    font-size: 26px !important;
    color: #fff !important;
}
#openings .open-div .open-items
{
    box-shadow: 3px 3px 10px #2546e18f;
    background: linear-gradient(90deg, var(--textcolor),var(--logo2));
    background-size: 400% auto;
    padding:40px 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap:10px;
    position: relative;
}
#openings .open-div .open-items .logo
{
    position: absolute;
    right:10px;
    top:10px;
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#openings .open-div .open-items .logo img
{
    width: 60%;
    margin-top:-5px;
}
#openings .open-div .apply-div
{
    display: flex;
    justify-content: center;
}
#openings .open-div .open-items .apply-btn
{
    position: absolute;
    bottom:-20px;
    background:var(--logo2);
    color: #fff;
    padding:10px;
    outline: none;
    border: none;
    border-radius: 10px;
    /* transform: translateY(50px); */
    width: 80%;
    font-weight: 600;
    box-shadow: 0 0 10px #25aae1ad;
    transition: .3s ease;
}
#openings .open-div .open-items .apply-btn:hover
{
    background: #fff;
    color: var(--textcolor);
}
#openings .open-div .open-items p
{
    color: #fff;
    font-size: 14px;
    line-height: 18px;
}
#openings .open-div .open-items .career-bold
{
    font-weight: 600;
}






#applysection
{
    padding:0 0 4% 0;
}
#applysection .modal-main
{
    background: #000000bf;
    width: 100%;
    height: 100%;
    position: fixed;
    top:-50%;
    z-index: 1000;
    /* top:-100%; */
    transition: .2s ease-in-out;
    visibility: hidden;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-animation
{
    top:0 !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.overflow-scroll-rem
{
    height: 100vh;
    max-height:100vh ;
    overflow-y: hidden;
}
#applysection .formsection
{
    padding:40px;
    box-shadow: 0 0 20px #00000020;
    border-radius: 20px;
    background:#fff;
    width: 75%;
}
#applysection .formsection .modal-head
{
    display: flex;
    justify-content: space-between;
}
#applysection .formsection .close
{
    cursor: pointer;
    font-size: 24px;
    color: var(--textcolor);
}
#applysection input
{
    width: 100%;
    padding:10px 20px;
    border: 1px solid #c6c6c6;
    border-radius: 30px;
}
#applysection input::placeholder
{
    font-size: 14px;
}
#applysection input:focus-visible
{
    border: none !important;
    outline: 1px solid var(--logo2);
}
#applysection .formsection .career-btn-div
{
    display: flex;
    justify-content: center;
}
#applysection .formsection .career-btn
{
    outline: none;
    border: none;
    width:40%;
    padding:10px 20px;
    border-radius: 30px;
    background:var(--logo2);
    background-size: 100% auto;
    color: #fff;
    font-weight: 600;
    box-shadow: 2px 2px 20px #25aae175;
    transition: .3s ease;
}
#applysection .formsection .career-btn:hover
{
    background:var(--textcolor);
}

#applysection .upload
{
    position: relative;
}
#applysection .upload-resume
{
    position: absolute;
    position: absolute;
    width: 60%;
    background: transparent;
    border: 1px solid var(--logo2);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    font-size: 14px;
}


@media only screen and (max-width: 992px)
{
    #career-page-banner .left
    {
        padding-top: 30%;
    }
    #career-page-banner
    {
        height: 43vh;
        background-position: -450px center;
    }
    #career-page-banner .main-head
    {
        width: 50%;
    }
    #careerpara-1 .left
    {
        padding:60px;
    }
    #careerpara-1 .right
    {
        padding: 20px 0;
    }

    #openings .open-div
    {
        grid-template-columns: 1fr 1fr;
        row-gap: 50px;
    }

    #applysection
    {
        padding: 5% 0;
    }
}

@media only screen and (max-width: 768px)
{
    #careerpara-1 .left
    {
        padding: 40px 20px;
    }
    #career-page-banner
    {
        background-position: center left;
    }
    #career-page-banner .left
    {
        padding:48% 20px 0;
    }
    #career-page-banner .main-head
    {
        width: 100%;
    }
    #careerpara-1 .right
    {
        padding:20px;
    }
    #careerpara-1 .right .main-head
    {
        font-size: 26px;
    }

    #openings .open-div
    {
        grid-template-columns: 1fr;
        row-gap: 50px;
    }
    #openings .container
    {
        padding:20px;
    }


    #applysection .container
    {
        padding:0 20px;
    }
    #applysection .formsection
    {
        padding: 40px 30px;
    }
    #applysection .formsection .career-btn
    {
        width: 100%;
    }
    #applysection .upload-resume
    {
        
    }
}











/* SERVICE PAGE */
.service-banner
{
    height:40vh;
    background: url('../img/banner/service-banner.jpg') top no-repeat;
    background-size: cover;
}
.service-banner .container
{
    height: 100%;
}
.service-banner-inner
{
    height: 100%;
    /* width: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-banner-inner h1
{
    color: var(--textcolor);
    margin-top:40px;
}


.service-items
{
    padding:40px 0 80px;
}
.service-items .items-main
{
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
}
.service-items .srv-item
{
    box-shadow: 0 0 10px #00000015;
}
.service-items .srv-item img
{
    width: 100%;
    /* filter: drop-shadow(0 0 5px #00000050); */
}
.service-items .srv-item .srv-details
{
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: space-between;
}
.service-items .srv-item .srv-details h2
{
    font-size: 24px;
    font-weight: 600;

}
.service-items .srv-item .srv-details p{
    font-size: 14px;
    margin:20px 0px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
.service-items .srv-item .srv-details .srv-btn
{
    width: fit-content;
    background: linear-gradient(90deg, var(--logo1), var(--logo2));
    box-shadow: 4px 4px 10px #25aae182;
    text-decoration: none;
    color: #fff;
    padding:8px 20px;
    transition: .3s ease;
    font-size: 14px;
    background-size: 100% auto;
}
.service-items .srv-item .srv-details .srv-btn:hover
{
    background-size: 300% auto;
    transition: .3s ease;
}
/* .service-items .srv-item .srv-details div
{
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right:20px;
    bottom: 20px;
    box-shadow: 4px 4px 5px #25a9e113;
} */
.service-items .srv-item .srv-details div img
{
    width: 60%;
}


@media only screen and (max-width: 992px)
{
    .service-items .items-main
    {
        grid-template-columns:repeat(2, 1fr);
    }
}

@media only screen and (max-width: 768px)
{
    .service-items .items-main
    {
        grid-template-columns:repeat(1, 1fr);
    }
    .service-items
    {
        padding:40px 10px;
    }
}









/* Service Single Page */
#service-single-main
{
    padding:50px 0 40px;
    overflow-x: hidden;
}
#service-single-main h1
{
    font-weight: 700;
    margin-bottom:20px;

}
#service-single-main p
{
    margin-bottom:10px;
}
#service-single-main img
{
    border-radius: 5px;
}
#service-single-main .before
{
    left: 20px;
    top:20px;
    position: absolute;
    z-index: -1;
    background: linear-gradient(45deg , #2e348e 0%, #25aae1 100%);
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.side-tab
{
    position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.make-sticky
{
    position:-webkit-sticky;
	position: sticky;
	top: 60px;
}

.service-list-items
{
    padding-bottom:40px;
    overflow-x: hidden;
}
.service-list-items ul,
.service-single-list ul
{
    margin:0;
    display: flex;
    flex-direction: column;
    gap:15px;
}
.service-list-items li,
.service-single-list li
{
    list-style-type:none;
    /* margin-top: 15px; */
    position: relative;
    line-height: 22px;
}





#service-list-items
{
    padding-bottom:40px;
    overflow-x: hidden;
}
#service-list-items ul,
#service-single-list ul
{
    margin:0;
    display: flex;
    flex-direction: column;
    gap:15px;
}
#service-list-items li,
#service-single-list li
{
    list-style-type:none;
    /* margin-top: 15px; */
    position: relative;
    line-height: 18px;
}
.list-img
{
    width: 20px;
    position: absolute;
    left: -30px;
    top:0px;
}
#service-list-items img
{
    border-radius: 5px;
}




#service-single-list
{
    padding:40px 0;
    overflow-x: hidden;
}
#service-single-list h2
{
    padding-bottom: 20px;
    font-weight: 600;
}
#service-single-list .nav-link {
    text-align: left;
    color: var(--logo1);
    background: #25a9e134;
    padding: 15px 30px;
    font-weight: 500;
    letter-spacing: 0;
    border-radius: 10px;
    margin-bottom: 14px;
}
#service-single-list .nav-link:hover
{
    background: var(--logo2);
    color: #fff;
}
#service-single-list .nav-pills .nav-link.active, .nav-pills .show>.nav-link
{
    background: var(--logo1);
    color: #fff;
}
#service-single-list .tab-content .tab-pane
{
    padding-left:60px;
}
#service-single-list .tab-content .tab-pane h5
{
    font-weight: 600;
}
#service-single-list .tab-content ul
{
    margin:20px 0;
}

@media only screen and (max-width: 992px)
{
    #service-single-main
    {
        padding:80px 0 40px 0;
    }
    #service-single-list
    {
        padding: 40px 0 40px;
    }
    #service-single-list .tab-content .tab-pane
    {
        padding-left:20px;
    }
}


@media only screen and (max-width: 768px)
{
    #service-single-main
    {
        padding:110px 10px 40px 10px;
    }
    #service-single-main h1
    {
        margin-top:20px;
    }
    #service-list-items
    {
        padding:0 10px;
    }
    #service-single-list
    {
        padding:20px;
    }
    #service-single-list .tab-content
    {
        padding: 20px 0;
    }
    #service-single-list .tab-content .tab-pane
    {
        padding-left: 0;
    }
    .make-sticky
    {
	    position: relative;
	    top: 0;
    }
}



/* new css */

.sidebar-menu-button{
    margin-left: 13px;
}
.sidebar-menu-button i{
    font-size: 20px;
    color: var(--textcolor);
}


#offcanvasRight ul{
    margin-top: 15px;
    padding: 0px;
    padding-left: 15px;
    border: none;
}
#offcanvasRight ul li{
    list-style: none;
    margin-bottom: 20px;
}
#offcanvasRight ul li a.active{
    color: #2e348e;
}
#offcanvasRight ul li a{
    color: black;
    text-decoration: none;
    font-size: 24px;
}
#offcanvasRight .sm__icons i{
    color: #2e348e;
    padding: 10px;
    font-size: 25px;
}
#offcanvasRight .sm__icons{
    position: absolute;
    bottom: 20px;
    width: 100%;
}




/* loader animation */

.loader {
    transform: rotateZ(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    color: #32328d;
  }
    .loader:before,
    .loader:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: inherit;
      height: inherit;
      border-radius: 50%;
      transform: rotateX(70deg);
      animation: 1s spin linear infinite;
    }
    .loader:after {
      color: #44aae1;
      transform: rotateY(70deg);
      animation-delay: .4s;
    }

  @keyframes rotate {
    0% {
      transform: translate(-50%, -50%) rotateZ(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotateZ(360deg);
    }
  }

  @keyframes rotateccw {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(-360deg);
    }
  }

  @keyframes spin {
    0%,
    100% {
      box-shadow: .2em 0px 0 0px currentcolor;
    }
    12% {
      box-shadow: .2em .2em 0 0 currentcolor;
    }
    25% {
      box-shadow: 0 .2em 0 0px currentcolor;
    }
    37% {
      box-shadow: -.2em .2em 0 0 currentcolor;
    }
    50% {
      box-shadow: -.2em 0 0 0 currentcolor;
    }
    62% {
      box-shadow: -.2em -.2em 0 0 currentcolor;
    }
    75% {
      box-shadow: 0px -.2em 0 0 currentcolor;
    }
    87% {
      box-shadow: .2em -.2em 0 0 currentcolor;
    }
  }



  /* submenu dropdown */

.submenu-2{
    background: aliceblue;
    padding: 20px 10px;
    border-radius: 14px;
}
.submenu-2 li{
    list-style: disc;
    padding: 0;
}
.product-submenu{
    list-style: none;
    padding-left: 0;
}
.submenu-2 li::marker{
    color: var(--textcolor);
}
.submenu-2 li a {
    text-decoration: none;
    color: #000;
    padding: 10px 0 !important;
}



.submenu-2 {
    display: none;
}

.product-link:hover + .submenu-2 {
    display: block;
}
.product-submenu .parent-menu{
    position: relative;
}
.product-submenu ul{
    position:absolute;
    padding:0;
    left:0;
    top:0px;
    display:none;
    width: 35%;
}

.product-submenu .parent-menu a{
     border-radius: 0 !important;
}


.product-submenu li:hover ul ul {
    display:none;
}
.product-submenu li:hover ul {
    display:block;
    z-index: 999;
    left: 30%;
    list-style: none;
}
.product-submenu  li:hover ul{
    display:block;
    padding: 10px;
}
.product-submenu ul:hover .submenu-link{
    background-color: #0a1068 !important;
}

.product-submenu ul li{
    padding: 5px 10px;
    background: #170b58;
    color: #fff;
    margin-bottom: 4px;
    border-radius: 15px;
}
.product-submenu ul li a{
    text-decoration: none;
    color: #ffffff;
}


.product-submenu .parent-menu .submenu-link:hover{
    background-color: #fff !important;
    color: #000 !important;
}
.product-submenu .parent-menu ul li:hover{
    background-color: var(--logo2) !important;
}
/* .product-submenu .parent-menu ul li a:hover{
    padding: 5px 10px;
    background: var(--logo2) !important;
} */

.navbar-nav .nav-item .project-menu{
    width: 200px !important;
    padding: 5px 10px !important;
}
.product-nav-item{
    position: relative;
}
.navbar-nav .nav-item .project-menu li:hover{
    background-color: var(--logo2) !important;
    color: #fff !important;
}

@media only screen and (min-width:1280px){
    .product-submenu li:hover ul {
        left: 20%;
    }
}



/* new edit */


.managemt-team{
    display: flex;
    padding: 20px 10px;
}

.managemt-team .team-picture img{
    width: 140px;
}

.managemt-team .team-details{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.managemt-team .team-details h4{
    font-size: 30px;
    font-weight: 600;
}
.managemt-team .team-details p{
    font-size: 18px;
    font-weight: 400;
}
.managemt-team .team-details i{
    color: var(--logo2);
    margin-right: 5px;
    font-size: 20px;
}

/* modern-equipments */

.modern-equipments{
    padding: 0 0 40px;
}
.modern-equipments h4{
    margin-bottom: 10px;
}
.modern-equipments .modern-equpment-img{
    border: 1px solid #cfcdcddc;
    margin-top: 10px;
}   



/* service card */


.hydraulic-seal{
    display: flex;
    margin-top: 40px;
}
.hydraulic-seal .img-fluid{
    margin-left: 40px;
}
.steel-melting-shop{
    display: flex;
}
.solution-card img{
    height: 240px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 10px;
}
.solution-card p{
    font-size: 16px;
    line-height: 22px;
}
.img-sec {
    display: flex;
}
.img-sec img{
    width: 50%;
    padding: 5px;
}
.card-11 h5{
    margin: 10px 0;
}

.sm-img{
    height: 700px;
    width: 100%;
    object-fit: cover;
    margin-top: 30px;
}

/* viewDetailsBtn */

#viewDetailsBtn {
    border-style: none;
    margin: 30px 0;
}


.details-div{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.details-div.active{
    max-height: 1000px;
}

.details-table , .details-table th, .details-table td{
    border: 1px solid white;
    border-collapse: collapse;
}

.details-table th,.details-table td {
    background-color: #13126b;
    padding: 10px 20px;
    color: #fff;
}


/* polymer-rubber-grid */

.polymer-rubber-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;

}


.polymer-rubber-grid .polymer-rubber-box{
    padding: 10px;
    border: 1px solid rgba(185, 180, 180, 0.651);
    position: relative;
    overflow: hidden;
}

.polymer-rubber-grid .polymer-rubber-box .details-box{
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translate(-50%,-50%); 
    color: #fff;   
    width: 87%;
    padding: 10px ;
    transition: top ease-in-out .4s;
    background-color: #fff;
    color: var(--textcolor);
    border-radius: 10px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    font-size: 15px;
    font-weight: 500;
}

.polymer-rubber-grid .polymer-rubber-box:hover .details-box{
    top: 75%;
}
.gird-3{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.gird-3 img{
    max-width: 100%;
    height: auto;
}
.pipleline-images img{
    height: 150px;
}

.power-quality-img-1{
    height: 300px;
}

.power-quality-grid img{
    height: 300px;
}
.power-quality-grid .polymer-rubber-box{
    display: flex;
    justify-content: center;
    align-items: center;
}

.industrial-drives .polymer-rubber-box{
    display: flex;
    justify-content: center;
    align-items: center;
}
.medical-cards{
    display: flex;
    flex-wrap: wrap;
    gap: 20px 15px;
}

.medical-card{
    width: 32%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    padding: 0 0px 20px;
    border-radius: 10px;
    overflow: hidden;
}

.medical-cards .medical-card img{
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    height: 280px;
    width: 100%;
    object-fit: cover;
}
.medical-card a{
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size:18px;
    font-weight: 600;
    text-decoration: none;
    color: var(--textcolor);
}

.business-solution-banner {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0) 100%), url("../img/business-soltion-banner-img.jpg") no-repeat;
    background-size: cover !important;
    background-position: center;
    background-repeat: no-repeat;
    height: 74vh;
    width: auto;
    position: relative;
    display: flex;
    align-items: flex-end;
    z-index: 11;
    margin: 1% 10%;
    border-radius: 10px;
    
}

.business-solution-banner::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    z-index: 1;
        background: linear-gradient(229deg, rgb(37 170 225 / 25%) 54%, rgba(10,16,104,1) 121%);
    border-radius: 10px;
}

.business-solution-banner.hydraulics-pneumatics-banner{
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0) 100%), url("../img/Hydraulics-and-Pneumatics1.jpg") no-repeat;
}

.business-solution-banner.industrial-drives-banner{
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0) 100%), url("../img/industrial-drives-automation-1.jpg") no-repeat;
}

.business-solution-banner.mechanical-equipments-banner{
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0) 100%), url("../img/mechanical-equipment1.jpg") no-repeat;
}
.business-solution-banner.medical-division-banner{
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0) 100%), url("../img/medical-division1.jpg") no-repeat;
}
.business-solution-banner.polymer-rubber-banner{
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0) 100%), url("../img/polymer-rubber-1.jpg") no-repeat;
}
.business-solution-banner.power-backup-banner{
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0) 100%), url("../img/power-backup1.jpg") no-repeat;
}
.business-solution-banner.power-quality-banner{
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0) 100%), url("../img/power-quality1.jpg") no-repeat;
}
.business-solution-banner.water-engineering-solution-banner{
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0) 100%), url("../img/water-and-engineering-solution/water-engineering-solution-9.jpg") no-repeat;
}
.business-solution-banner.power-system-service-banner{
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0) 100%), url("../img/power-system-service1.jpg") no-repeat;
}
.service-banner-head {
    font-size: 34px;
    line-height: 50px;
    font-weight: 600;
    color: #ffffff;
    z-index: 11;
    position: relative;
    margin-bottom: 35px;
    text-align: center;
}
/* medical page */
.medical-pg{
    padding: 80px 10px 0;
}

/* swiper slider */

.swiper {
    width: 300px;
    height: 300px;
    padding: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
}

.swiper-slide img {
    display: block;
    width: 100%;
}

.medical-slider .owl-dots{
    position: absolute;
    top: 105%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.medical-slider .owl-dots button{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #1c99cab0;
    margin: 4px;
}
.medical-slider .owl-dots button.active{
    background-color: #0a1068;
}

.partners-slider-section{
    padding: 150px 10px 100px;
}


.partner-logo-img{
    transform-style: preserve-3d;
    width: 100%;
    height: 140px;
    object-fit: contain;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    padding: 10px;
    margin: 10px 0 10px;
}


.contact-details-box{
    position: relative;
    background: #ebf9ff;
    padding: 20px 20px 40px 30px;
    border-radius: 20px;
    margin-top: 75px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;

}
.contact-box-logo{
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 150px;
    opacity: .3;
    transform: rotate(330deg);
}

.contact-details-box h3{
    font-size: 34px;
    line-height: 40px;
    color: #0a1068;
    font-weight: 600;
}

.contact-details-box .office-address{
    width: 80%;
}
.contact-details-box p{
    color: #0a1068;
    font-size: 16px;
}
.contact-details-box a{
    color: #0a1068;
    font-size: 16px;
    text-decoration: none;
    margin-top: 10px;
    display: block;
}
.contact-box-icon{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    color: #0a1068;
}
.contact-box-icon i{
    font-size: 20px;
}
.footer-social-media a{
    text-decoration: none !important;
    margin-right: 15px;

}
.footer-social-media i{
    font-size: 20px;

    color: #0a1068 !important;
}

.ftr-location{
    color: #0a1068;
    margin-bottom: 7px;
}


/* dropdown */

.dropdown-service{
    position: relative;
}
.service-dropdown-menu{
    position: absolute;
    left: 0;
    top: 30px;
    /* width: 100%; */
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    visibility: hidden;
    transform: translate3d(-10px,0px,0);
    opacity: 0;
    transition: all .3s ease-in-out;
}
.dropdown-service::after{
    content: '';
    position: absolute;
    right: 22px;
    bottom: 14px;
    background-image: url('../img/arrow-bottom.png');
    width: 12px;
    height: 12px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.service-drpdwn-ul{
    list-style: none;
    padding-left: 0;
}
.service-drpdwn-ul li{
    border-bottom: 1px solid #0a10682d;
}
.service-drp-dwn-link{
    color: var(--logo1) !important;
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
    white-space: nowrap;
    padding: 10px;
    display: block;
}
.service-drpdwn-ul li:hover{
    background-color: #0a1068;
}
.service-drpdwn-ul li :hover.service-drp-dwn-link{
    color: #fff !important;
}
.dropdown-service:hover .service-dropdown-menu{
    visibility: visible;
    transform: translate3d(0px,0px,0);
    opacity: 1;
}

/*  */

.valves-images img{
    max-width: 260px;
}



@media only screen and (max-width:999px) {
    .medical-card{
        width: 31%;
    } 
    .medical-slider {
        margin-top: 30px;
        margin-bottom: 50px;
    }
    .partners-slider-section{
        padding: 80px 10px;
    }
    #service-single-main{
        overflow-x: hidden;
    }
    #service-list-items{
        overflow-x: hidden;
    }
    .make-sticky{
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }
    #service-single-list{
        overflow-x: hidden;
    }
    .sidebar-menu-button{
        display: none;
    }
    #header .navbar .logo-div {
        width: 60px;
    }
    .service-banner-inner{
        width: 100%;
    }
}


@media  only screen and (max-width:767px){
    .polymer-rubber-grid{
        grid-template-columns: repeat(2,1fr);
    }
    .business-solution-banner{
        height: 300px;
    }
    .medical-card{
        width: 100%;
    }
    .medical-cards .medical-card img {
        height: 200px;
    }
    .service-banner-head{
        font-size: 24px;
        line-height: 30px;
    }
}


@media screen and (max-width:1280px){
    #banner .left{
        padding: 100px 10px 0;
    }
}


/* new edit mission and vision */

.about-points{
    list-style: circle;
}
.about-points li{
    margin-bottom: 7px;
}
.about-points li::marker{
    color: #ffffff;
}

/* query box */

.query-box{
    background-color: #25aae1;
    background: linear-gradient(45deg , #2e348e 0%, #25aae1 100%);
    margin: 40px 0 10px;
    color: #fff;
    padding: 20px 20px;
    border-radius: 7px;
}

.query-box h3{
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
    font-size: 24px;
}

.query-box a i{
    color: #fff;
    margin-right: 15px;
    font-size: 20px;
}

.query-box a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
}

.product-table, .product-table th, .product-table td {
    border: 1px solid black;
    border-collapse: collapse;
    padding: 5px 10px;
}


@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');

*
{
margin:0;
padding:0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}

html
{
scroll-behavior: smooth;
}

:root
{
--logo2:#25aae1;
--logo1:#2e348e;
--textcolor:#0a1068;
}

h1,h2,h3,h4,h5,h6
{
margin:0;
color: var(--textcolor);
}
p
{
margin:0;
}

#main
{

}

.powerline-loader
{
position: fixed;
width: 100%;
height: 100vh;
background: #ffffff;
z-index: 299;
display: flex;
justify-content: center;
align-items: center;
}
/* .powerline-loader .main-items
{
width: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap:20px;
}
.powerline-loader img
{
width:20%;
opacity: 0;
animation: loader-fade 6s ease infinite;
}
@keyframes loader-fade
{
0%
{
opacity: 0;
}
50%
{
opacity: 1;
}
80%
{
opacity: 1;
}
100%
{
opacity: 0;
}
}
.powerline-loader .powerline-loader-head
{
font-size: 40px;
font-weight: 700;
text-transform: uppercase;
background: #121FCF;
background: linear-gradient(to right, #2e348e 0%, #25aae1 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;

}
@keyframes loader-text-fade
{
0%
{
opacity: 0;
}
50%
{
opacity: 1;
}
100%
{
opacity: 0;
}
}
*/


/* HEADER SECTION */
.top-header
{
background:linear-gradient(90deg, var(--logo2),var(--logo1));
padding:8px 0;
}
.top-header .content
{
display: flex;
justify-content: end;
}
.top-header .content p, .top-header .content span
{
color:#fff;
margin:0;
font-size: 14px;

}
.top-header .content p
{
padding:0 20px;
}


#header
{
width: 100%;
z-index: 199;
position: sticky; top: 0;
}
#navbar
{

}
#header .navbar
{
padding:5px 5%;
display: flex;
justify-content: space-between;
background: #fff;
box-shadow: 0 0 30px #00000010;
transition: .5s ease;
}

#header .navbar.nav-active{


}
.home-pg #header .navbar{
padding:10px 5%;
display: flex;
justify-content: space-between;
background: transparent;
box-shadow: none;
transition: .1s ease;
position: absolute;
width: 100%;
background-color: #fff;
}


.nav-active
{
background: #fff !important;
box-shadow: 0 0 30px #00000010;
}
#header .navbar .logo-div
{
width: 85px;
transition: .3s ease;

}
.logo-nav-active
{
width: 65px !important;
}
#header .navbar .navbar-collapse
{
justify-content: end;
}
#header .navbar .navbar-collapse .navbar-nav
{
margin:0 !important;
}
.navbar .navbar-nav .nav-link
{
color: var(--logo1) !important;
font-weight: 500;
transition: .3s ease;
margin-right: 10px;
margin-top: -5px;
}
.navbar .navbar-nav .nav-link:hover
{
color: var(--logo2) !important;
}

.navbar-collapse .dropdown:hover .dropdown-menu
{
/* display: block; */
}
.navbar-collapse .dropdown-menu[data-bs-popper]
{
padding: 0 !important;
left: 50%;
transform: translateX(-50%);
width: 70% !important;
border: none;
box-shadow: 0 0 30px #00000010;
border-radius: 20px;
overflow: hidden;
}
.navbar-collapse .dropdown-menu .first-col
{
background: linear-gradient(90deg, var(--logo1), var(--logo2)) !important;
overflow: hidden;
padding: 10px 20px 20px;
color: white !important;
border-radius: 20px;
}
.navbar-collapse .dropdown-menu .first-col h5
{
color: #fff !important;
font-size: 24px;
font-weight: 600;
}
.navbar-collapse .dropdown-menu .first-col img
{
border-radius: 10px;
}
.navbar-collapse .dropdown-menu .first-col a
{
text-decoration: none ;
}
.navbar-collapse .dropdown-menu .first-col p
{
font-size: 14px;
}
.navbar-collapse .dropdown-menu .scnd-col
{
padding: 10px 20px;
}
.navbar-collapse .dropdown-menu .scnd-col p
{
font-weight: 600;
}
.navbar-collapse .dropdown-menu .scnd-col a
{
font-size: 14px;
padding:10px;
transition: .2s ease;
}
/* .navbar-collapse .dropdown-menu .scnd-col a:hover, .navbar-collapse .dropdown-menu .third-col a:hover
{
background:var(--logo1);
color: #fff;
border-radius: 20px;
} */
.navbar-collapse .dropdown-menu .third-col
{
padding: 30px 20px 10px 20px;
}
.navbar-collapse .dropdown-menu .list-group-item
{
border: none;
}
.navbar-collapse .dropdown-menu .third-col a
{
font-size: 14px;
transition: .1s ease;
padding: 10px;
}
.navbar-toggler
{
padding:10px;
border: none;
outline:none;
box-shadow: none;
}
.navbar-toggler i
{
color: var(--textcolor);
}
.navbar-toggler i:hover
{
color: var(--logo2);
}
.navbar-toggler:focus
{
outline: none !important;
box-shadow: none;
}
.sticky
{
position: fixed;
top: 0;
width: 100%;
}


.search-icon-section button
{
background:none;
border: none;
outline: none;
margin-top: 10px;
}
.search-icon-section i
{
color: var(--logo1);
font-size: 24px;
transition: .3s ease;
}
.search-icon-section i:hover
{
color: var(--logo2);
}
.search-icon-section input
{
padding: 20px 40px;
width: 100%;
outline: none;
border: none;
}


.navbar-collapse .dropdown-menu .first-col.bsnss
{
background: linear-gradient(90deg, var(--logo1), var(--logo2)) !important;
}

.countries-list-tab
{
display: none;
}
.country-change-icon
{
margin-left: 20px;
}
.country-change-icon i
{
color: var(--logo1);
font-size: 20px;
transition: .3s ease;
}
.country-change-icon i:hover
{
color: var(--logo2);
}
.country-change-icon .dropdown-menu[data-bs-popper]
{
right: 2% !important;
top: 30px;
left: -100px;
}

.country-change-icon button
{
background:none;
border: none;
outline: none;
margin-top: 0px;
}
.country-change-icon .dropdown-menu[data-bs-popper]
{
border: none;
background:#fff;
backdrop-filter: blur(30px);
padding:2px !important;
box-shadow: 0 0 20px #00000010;
width: unset !important;
transform: unset;
border-radius: 10px;
}
.country-change-icon .dropdown-menu img
{
width: 20px;
}
.country-change-icon .dropdown-menu li
{
display: flex;
padding:5px 10px;
transition: .3s ease;
border-radius: 5px;
position: relative;
}
/*
.country-change-icon .dropdown-menu li::after{
content: 'Coming Soon';
position: absolute;
left: 0;
top: 0;
} */


.country-change-icon .dropdown-menu li:hover
{
background: linear-gradient(45deg, var(--logo1), var(--logo2));
box-shadow: 2px 2px 10px #25aae163;
}
.country-change-icon .dropdown-menu li:hover a
{
color: #fff;
}
.country-change-icon .dropdown-menu li a
{
padding:0;
background:transparent;
display: flex;
align-items: center;
}
.dropdown-toggle::after
{
color: transparent;
}


/* BANNER SECTION */
#banner
{
background-image: url('../img/banner/uae-banner.png');
background-size: cover;
background-position: top;
height: 100vh;
width: 100%;
background-attachment: fixed;
display: flex;
align-items: center;
/* position: fixed; */
}
#banner h1
{
font-size: 50px;
font-weight: 700;
line-height: 60px;
}
#banner p
{
font-size: 18px;
}
#banner .left
{
display: flex;
flex-direction: column;
justify-content: center;
/* padding: 15% 0; */
gap:15px;
}
#banner .right
{
display: flex;
padding:40px;
align-items: center;
}




/* ABOUT SECTION */
#aboutsection
{
padding:5% 0;
}
#aboutsection .left
{
padding:60px;
overflow: hidden;
}
#aboutsection .left .img-div
{
position: relative;
}
#aboutsection .left .img-div .abt-img-2
{
position: relative;
left: 0;
top:0;
}
#aboutsection .left .img-div .abt-img-3
{
position: absolute;
left: 0;
}
#aboutsection .right
{
display: flex;
flex-direction: column;
justify-content: center;
gap:10px;
}
#aboutsection .abt-img-1
{
position: absolute;
z-index: 2;
filter: drop-shadow(0 0 10px #ffc3008a);
animation: image-move 6s ease-in-out infinite;
transform: translateY(10px);
}

@keyframes image-move
{
0%
{
transform: translateY(10px);
}
50%
{
transform: translateY(-10px);
}
100%
{
transform: translateY(10px);
}

}




/* COMMON CONTENTS */
.content-para
{
font-size: 16px;
line-height: 24px;
}
.top-head
{
font-size: 16px;
font-weight: 500;
text-transform: uppercase;
margin-bottom: 5px;
}
.main-head
{
font-weight: 600;
font-size: 36px;
}
.main-btn
{
padding:8px 30px;
font-size: 18px;
font-weight: 600;
background: linear-gradient(90deg, var(--textcolor), var(--logo2));
width: fit-content;
border-radius: 5px;
color: #fff;
text-decoration: none;
background-size: 100% auto;
margin-top:8px;
transition: .3s ease;
box-shadow: 4px 4px 20px #25aae182;
}
.main-btn:hover
{
background-size: 300% auto;
}



/* SERVICE SECTION */
#servicesection
{
background-color: #def5ff;
padding: 3% 0 3% 0;

}
#servicesection .service-cards
{
padding:10px;
box-shadow: 0 0 10px #00000010;
border-radius: 8px;
}
#servicesection .service-cards img
{
border-radius: 10px;
}
#servicesection .service-cards h2
{
font-size: 22px;
font-weight: 600;
margin-top:20px;
}
#servicesection .service-cards p
{
font-size: 16px;
line-height: 22px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
#servicesection .owl-carousel .owl-stage
{
padding:20px 0;
}
#servicesection .card-details
{
display: flex;
flex-direction: column;
gap:10px;
padding:10px;
}
#servicesection .service-cards .service-btn
{
padding:10px 20px;
background: var(--logo1);
font-size: 14px;
color:#fff;
text-decoration: none;
width: fit-content;
transition: .3s ease;
position: relative;
overflow: hidden;
z-index: 1;
}
#servicesection .service-cards .service-btn::before
{
content: '';
position: absolute;
left: 0;
top:0;
width: 0%;
height: 100%;
background: var(--logo2);
transition: .3s ease;
z-index: -1;
/* transform: translateX(-100%); */
}
#servicesection .service-cards .service-btn:hover::before
{
/* transform: translateX(0); */
width: 100%;

}

.axsererv{
width: 65%;
margin-left: 10px;
margin-bottom: 8px;
margin-top: 35px;
}

.axtab1{

margin-top: 40px;
display: flex;
justify-content: center;
}

.tablink {
background-color: #FFF;
color: white;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 14px 16px;
font-size: 17px;
width: 25%;
color:#2e348e;
border:solid 1px #2e348e;
}

.tablink:hover {
background-color: #25aae1;
color:#fff;
}

/* Style the tab content (and add height:100% for full page content) */
.tabcontent {
color: #000;
display: none;
padding: 10px 20px;
height: 100%;
}


/* CALL ACTION SECTION */
#first-cta
{
padding:0 0 5% 0;

}
#first-cta .container-fluid
{
padding:0;
}
#first-cta .cta-box
{
background-image:url(../img/cta-bg-3.jpg) ;
background-size: cover;
background-position:center center;
padding:140px 20px;
overflow: hidden;
/* border-radius: 20px; */
}
#first-cta .cta-box .right
{
padding-right:40px;
display: flex;
flex-direction: column;
justify-content: center;
gap:20px;
overflow: hidden;
}
#first-cta .cta-box .right button
{
padding:10px 30px;
font-size:18px;
font-weight: 600;
border: none;
outline: none;
width: fit-content;
transition: .3s ease;
/* border-radius: 5px; */
}
#first-cta .cta-box .right button:hover
{
background:var(--logo2);
color:#fff;
}
#first-cta .cta-box h3
{
color: #fff;
font-size: 40px;
font-weight: 600;
width: 80%;
}
#first-cta .cta-box p
{
color:#fff;
width: 80%;
}


.adresas{

margin-top:-8px;
}
.adresas h5{

margin-bottom:10px;
}

.adresas p{

display:flex;
}


table.cent tr td:first-child{

text-align: center;
}


table.cent tr td:last-child{

text-align: center;
}


table.cent tr th:first-child{

text-align: center;
}


table.cent tr th:last-child{

text-align: center;
}

/* PRODUCT SECTION */
#productssection
{
padding:0 0 5% 0;

}
#productssection .products .items
{
/* background:var(--textcolor); */
border-radius: 10px;
box-shadow: 0 0 10px #00000010;
}
#productssection .img-div
{
padding:10px;
}
#productssection .products .items .prdct-details h2
{
font-size: 24px;
font-weight: 600;
/* margin-top:20px; */
}
#productssection .products .items img
{
height: 210px;
border-radius: 10px;
}
#productssection .products .items .prdct-details
{
padding:20px;
display: flex;
flex-direction: column;
gap:10px;
}
#productssection .products .items .prdct-details .prdct-card
{
box-shadow: none;
font-size: 14px;
font-weight: 500;
background: linear-gradient(90deg, var(--logo2), var(--logo1));
background-size: 100% auto;
margin:0;
text-decoration: none;
padding: 5px 10px;
width: fit-content;
color: #fff;
transition: .3s ease;
border-radius: 3px;
box-shadow: 4px 4px 10px #25aae182;
}
#productssection .products .items .prdct-details .prdct-card:hover
{
background-size: 200% auto;

}
#productssection .products .items .prdct-details
p
{
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
font-size: 16px;
/* margin-top:10px; */
}
#productssection .owl-carousel .owl-stage
{
padding: 30px 0;
}



/* WHYCHOOSE SECTION */
#whychoose
{
padding:0 0 5% 0;

}
#whychoose .left
{
display: flex;
flex-direction: column;
justify-content: center;
gap:10px;
}
#whychoose .img-div
{
position: relative;
}
#whychoose .img-div .why-img-1
{
position: relative;
left: 0;
top: 0;
animation: imagemove1 6s ease-in-out infinite;
filter: drop-shadow(4px 4px 10px #da78076a);
}
#whychoose .img-div .why-img-2
{
position: absolute;
left: 0;
top: 0;
animation: imagemove2 6s ease-in-out infinite;
filter: drop-shadow(4px 4px 10px #da78076a);

}

@keyframes imagemove1
{
0%
{
transform: translateY(0);
}
50%
{
transform: translateY(20px);
}
100%
{
transform: translateY(0);
}
}
@keyframes imagemove2
{
0%
{
transform: translateY(0);
}
50%
{
transform: translateY(-20px);
}
100%
{
transform: translateY(0);
}
}






#contactsection
{
padding: 0 0 5% 0;
}
#contactsection .container
{
display: flex;
align-items: center;
justify-content: center;
}
#contactsection .contact-box
{
background:linear-gradient(90deg, var(--textcolor), var(--logo2));
padding: 40px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 80%;
border-radius: 10px;
gap:15px;
box-shadow: 0px 0px 30px #1babe982;
}
#contactsection .contact-box .contact-btn
{
padding:10px 40px;
font-size: 18px;
font-weight: 600;
background: #fff;
color:var(--textcolor);
text-decoration: none;
border-radius: 5px;
transition: .3s ease;
color: var(--textcolor);
box-shadow: 3px 3px 20px #ffffff99;
}
#contactsection .contact-box .contact-btn:hover
{
background:var(--textcolor);
color: #fff;
box-shadow: 3px 3px 20px #25aae175;

}
#contactsection .contact-box h2
{
font-size: 30px;
color:#fff;
font-weight: 700;
}
#contactsection .contact-box p
{
color:#fff;
text-align: center;
font-size: 16px;
line-height: 20px;
width: 80%;

}


#footersection {
padding: 4% 0 0 0;
background: url(../img/pattern-1.png);
background-attachment: fixed;
background-size: auto;
position: relative;
z-index: 1;
overflow: hidden;
background-repeat: repeat;
border-top: solid #dadada 1px;
}
/* #footersection::after
{
content:'';
top: 0;
left: 0;
width: 100%;
height: 100%;
position: absolute;
background: rgba(255, 255, 255, 0.94);
z-index: -1;
} */
#footersection .footer-logo
{
width: 40%;
}
#footersection ul
{
padding: 0;
margin: 0;
}
#footersection ul a
{
text-decoration: none;
color: var(--textcolor);
position: relative;

}
#footersection ul a::before
{
content: '';
position: absolute;
left: -10px;
font: var(--fa-font-solid);
/* top:50%; */
/* width: 5px; */
/* height: 3px; */
/* background: red; */
}
#footersection ul li
{
list-style-type: none;
margin-bottom: 5px;
}
#footersection h2
{
font-weight: 600;
color: var(--logo1);
font-size: 22px;
margin-bottom:20px;
position: relative;
}
#footersection h2::after
{
content: '';
position: absolute;
left: 0;
bottom: -5px;
height: 3px;
border-radius: 20px;
width: 20%;
background: var(--logo2);
}
#footersection .copyright
{
background: var(--logo2);
padding:10px;
margin-top:20px;
z-index: 99;
position: relative;
}
#footersection .copyright p
{
text-align: center;
color: #fff;
font-size: 14px;
}
#footersection .contact div
{
display: flex;
margin-bottom: 5px;
}
#footersection .contact div i
{
display: flex;
align-items: baseline;
justify-content: center;
margin-right:10px;
color: var(--textcolor);
transition: .3s ease;
}
#footersection .contact div i:hover
{
color: var(--logo1);

}
#footersection .contact p
{
color: var(--textcolor);
}
#footersection .location div
{
display: flex;
gap:10px;
}
#footersection .location div i
{
display: flex;
margin-top:5px;
color: var(--textcolor);
transition: .3s ease;
}
#footersection .location p
{
color: var(--textcolor);
}
#footersection .location div i:hover
{
color: var(--logo1);
}



@media only screen and (max-width: 992px)
{
.powerline-loader .main-items
{
gap:30px;
}
.powerline-loader .powerline-loader-head
{
font-size: 40px;
line-height: 30px;
text-align: center;
}
.powerline-loader img
{
width:50%;
}


#banner .left
{
padding:30% 0 0%
}

#header .navbar
{
background: #fff;
}

.search-icon-section
{
display: none;
}

.countries-list-tab
{
display: block;
}

.country-change-icon
{
display: none;
}

.navbar-collapse .dropdown-menu[data-bs-popper]
{
transform: unset;
box-shadow: none;
background: transparent;
border-radius: 0;
width: 100% !important;
}
.navbar-collapse .dropdown-menu .first-col
{
display: none;
}
.navbar-collapse .dropdown-menu .scnd-col
{
padding:10px;
}
.navbar-collapse .dropdown-menu .third-col a, .navbar-collapse .dropdown-menu .scnd-col a
{
background:transparent;
color: var(--logo1);
padding:5px;

}
.navbar-collapse .dropdown-menu .scnd-col p,
.navbar-collapse .dropdown-menu .third-col p
{
background: transparent;
color: var(--logo1);
}


#first-cta .cta-box
{
padding:60px 0;
}
#first-cta .cta-box p
{
width: 100%;
}


#whychoose .right
{
display: flex;
justify-content: center;
}

#contactsection .contact-box
{
width: 100%;
}

}





@media only screen and (max-width: 768px)
{
.powerline-loader .main-items
{
gap:30px;
}
.powerline-loader .powerline-loader-head
{
font-size: 28px;
line-height: 30px;
text-align: center;
}
.powerline-loader img
{
width: 50%;
}

#banner .left
{
padding:10% 20px 0;
gap:10px;
}
#banner .right
{
padding: 10px;
}
#banner h1
{
font-size: 26px;
line-height: 32px;
}
#banner p
{
font-size: 16px;
line-height: 22px;
}
.navbar-collapse .dropdown-menu .third-col
{
padding: 0 10px;
}
.navbar-collapse .dropdown-menu .scnd-col
{
padding: 0 10px;
}

.main-btn
{
font-size:14px;
}
.main-head
{
font-size: 26px;
}
.content-para
{
line-height: 22px;
}


#aboutsection
{
padding: 10% 0;
}
#aboutsection .left
{
padding:60px 20px;
}
#aboutsection .right
{
gap:5px;
padding:0 20px;
}


#servicesection .owl-carousel .owl-stage
{
padding:10px 0;
}
#servicesection .card-details
{
padding: 0;
}



#first-cta
{
padding:0 0 10% 0;
}
#first-cta .cta-box
{
padding:50px 20px;
}
#first-cta .cta-box h3
{
font-size: 30px;
}
#first-cta .cta-box .right
{
gap:10px;
padding-right: 0px;
}
#first-cta .cta-box .right button
{
font-size: 14px;
padding: 5px 20px;
}


#productssection
{
padding:0 0 10% 0;
}
#productssection .owl-carousel .owl-stage
{
padding:10px 0;
}

#whychoose .left
{
padding:0 20px;
}
#whychoose .right
{
padding:30px 20px;
}

#contactsection .container
{
padding:0 30px;
}
#contactsection .contact-box
{
padding:30px;
gap:10px;
box-shadow: 0px 0px 20px #1babe982;
}
#contactsection .contact-box h2
{
font-size: 24px;
text-align: center;
}
#contactsection .contact-box p
{
width: 100%;
font-size: 14px;
line-height: 18px;
}
#contactsection .contact-box .contact-btn
{
font-size: 14px;
padding:5px 30px;
}


#footersection .footer-logo
{
width: 50%;
}
#footersection .foot-logo, #footersection .links, #footersection .location, #footersection .contact
{
padding: 0 20px;
}
#footersection ul
{
margin-left: 0px;
}
#footersection .copyright p
{
font-size: 12px;
}
}

@media only screen and (max-width: 380px)
{
.powerline-loader .powerline-loader-head
{
font-size: 24px;
}
}

























/* ABOUT PAGE STYLE */



#about-page-banner {
height: 74vh;

background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0) 100%),
url("../img/banner/powerline-about-banner.jpg") no-repeat;
background-size: cover;
background-position: center;
display: flex;
align-items: end;
margin: 2% 6%;
border-radius: 10px;
padding-bottom: 35px;
padding-left: 40px;
filter: saturate(0);
}

#about-page-banner .row{

width: 100%;
}

.clasax{
background:
linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0) 100%),
url("../img/banner/business-partners.jpg") no-repeat;

border-radius: 10px;
background-position: center;
}

.cards.valuee{

margin-top: 40px;
}

.cards.valuee h1{
padding-left: 2rem;
padding-bottom: 1rem;
font-size: 32px;
}

.cards.valuee .about-points li {
margin-bottom: 10px;
line-height: 26px;
}



#about-page-banner .left
{
height: 100% !important;
display: flex;
flex-direction: column;
justify-content: end;
margin-top:40px;
}

#about-page-banner .main-head,.top-head{

color: #2e348e;
}

#about-page-banner .main-head.ss,.top-head.ss{

color: #fff;
}



#abt-contents
{
padding:3% 0;
}
#abt-contents .left
{
padding:30px;
display: flex;
flex-direction: column;
justify-content: center;
}
#abt-contents .left .img-div
{
position: relative;
}
#abt-contents .left .abt-img-1
{
position: relative;
z-index: 2;
animation: float 6s ease infinite 3s;
}
#abt-contents .left .abt-img-2
{
position: absolute;
left: 0;
animation: float 6s ease infinite 3s;
animation-delay: 1000ms;

}
#abt-contents .left .abt-img-3
{
position: absolute;
left: 0;
animation: float 6s ease infinite 3s;
animation-delay: 2000ms;

}
#abt-contents .right
{
display: flex;
flex-direction: column;
justify-content: center;
gap:10px;
}
@keyframes float
{
0%
{
transform: translateY(0);
}
50%
{
transform: translateY(-20px);
}
100%
{
transform: translateY(0);
}
}

#abt-contents .abt-img-4
{
/* animation: rotate 6s ease infinite; */
}
@keyframes rotate
{
0%
{
transform: rotate(1deg);
}
50%
{
transform: rotate(-1deg);
}
100%
{
transform: rotate(1deg);
}
}

#abt-contents .abt-cntnt
{
overflow: hidden;
}
#abt-contents .abt-cntnt .img-div
{
position: relative;
overflow: hidden;
}
#abt-contents .abt-img-4
{
position: relative;
}
#abt-contents .abt-img-5
{
position: absolute;
left: 0;
}


#objectives .cards.acc {
padding: 15px;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
height: 275px;
margin-bottom: 30px;
border-radius: 10px;
background: rgb(37,170,225);
background: linear-gradient(119deg, rgba(37,170,225,1) 0%, rgba(10,16,104,1) 100%);
color: #fff;
}
#objectives .cards.acc h1 {

color: #fff;
}


#objectives
{
/* background: url('../img/about-section/mission-bg.jpg'); */
background-size:100% ;
background-position: left center;
height: 100%;
padding:2% 0;
margin:0 0 5%;
}
#objectives .cards
{
padding:15px;
/* background: red; */
}
#objectives .cards img
{
width: 5%;
margin-bottom:10px;
}
#objectives h1
{
font-size: 28px;
font-weight: 700;
}
#objectives p
{
width: 90%;
}
#objectives .right
{
display: flex;
flex-direction: column;
gap:5px;
}


@media only screen and (max-width: 992px)
{
#about-page-banner
{
height: 30vh;
}
#about-page-banner .left
{
margin-top:60px;
}

#abt-contents .left
{
padding: 0 0 60px;
}

#abt-contents .abt-cntnt .img-div
{
padding:40px 0;
}

#objectives
{
background:url('../img/about-section/mission-bg-tab.jpg');
background-size: cover;
background-position: center center;
}
#objectives p
{
width: 60%;
}
#objectives .cards
{
padding:20px 0;
}
#objectives .cards img
{
width: 10%;
}
}

@media only screen and (max-width: 768px)
{

#about-page-banner {

padding-bottom: 0px;
padding-left: 20px;

}

#objectives .cards.acc {
padding: 15px;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
height: 430px;
}

#abt-contents .left {
padding: 0 20px 5px;
}


#objectives .cards.acc {
padding: 15px;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
height: 435px;}

#about-page-banner
{
height: 40vh;
background-position: center left;
}
#about-page-banner .left
{
padding:0 20px;
margin-top:100px;
}

#abt-contents .left
{
padding: 0 20px 5px;
}
#abt-contents .right
{
padding: 0 20px;
}
#abt-contents .abt-cntnt .img-div
{
padding:10px 20px 30px;
}
#abt-contents .abt-cntnt .abt-scnd-para
{
padding: 0 20px;
}


#objectives
{
background:none;
}
#objectives .right
{
padding:0 20px;
}
#objectives p
{
width: 100%;
}
#objectives .cards img
{
width: 20%;
}
}



























/* CONTACT PAGE STYLE */
#contact-page-section
{
background: url('../img/banner/contact-pg-banner-poweline.jpg');
background-size: cover;
height: 40vh;
background-position: center center;
display: flex;
justify-content: center;
align-items: center;
}
#contact-page-section .main-head
{
margin-top: -30px;
color: #fff;
}


#contactus
{
/* padding:30px; */
position: relative;
margin-bottom:60px;
}
#contactus h4
{
font-weight: 600;
font-size: 26px;
}
#contactus .contact-div
{
border-radius: 20px;
overflow: hidden;
margin-top:-85px;
background: #fff;
box-shadow: 0 0 30px #00000010;
box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
#contactus .contact-div .left
{
padding:40px 50px;
}
#contactus .contact-div .left input, #contactus .contact-div .left textarea
{
width: 100%;
outline: none;
border: none;
background:#f6f9ff;
padding:10px 20px;
border-radius: 25px;
box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
#contactus .contact-div .left input::placeholder, #contactus .contact-div .left textarea::placeholder
{
font-size: 14px;
color: #0a106884;
}
#contactus .contact-div .right
{
padding: 30px 60px;
background:linear-gradient(-90deg, #1c98ca,#0f5a95);
position: relative;
}
#contactus .contact-div .right .logo-white
{
position: absolute;
bottom: 0;
right: 0;
width: 30%;
opacity: .2;
transform: rotate(-30deg);
}
#contactus .contact-div .right p, #contactus .contact-div .right h4, #contactus .contact-div .right i
{
color:#fff;
}
#contactus .contact-div .right .cont-details
{
display: flex;
flex-direction: column;
justify-content: start;
height: 100%;
gap:20px;
}
#contactus .contact-div .right .cont-details div
{
display: flex;
gap: 10px;
flex-wrap: wrap;
row-gap: 10px;
margin-bottom: 10px;
}
#contactus .contact-div .right .cont-details div h6{
width: 100%;
font-size: 20px;
color: #fff;
}

#contactus .contact-div .right .cont-details i
{
margin-top:5px;
font-size: 18px;
}
#contactus .contact-div .right .cont-details .address, #contactus .contact-div .right .cont-details .phone
{
/* margin-top:20px; */
}
#contactus .contact-div .left .cnt-button
{
display: flex;
justify-content: end;
}
#contactus .contact-div .left .cnt-button .cntc-btn
{
outline: none;
border: none;
background: linear-gradient(90deg, var(--logo1
),var(--logo2));
padding:10px 40px;
width: fit-content;
color:#fff;
font-weight: 600;
border-radius: 30px;
box-shadow: 3px 3px 20px #25aae175;
background-size: 100% auto;
transition: .3s ease;
}
#contactus .contact-div .left .cnt-button .cntc-btn:hover
{
background-size: 200% auto;
}
#contactus .contact-div .right .cont-details .social-media a
{
text-decoration: none;
}
#contactus .contact-div .right .cont-details .social-media i
{
padding:15px;
background: var(--logo2);
border-radius: 50px;
display: flex;
justify-content: center;
align-items: center;
width: 40px;
height: 40px;
transition: .3s ease;
}
#contactus .contact-div .right .cont-details .social-media i:hover
{
background: var(--textcolor);
}



#map
{
margin-bottom:60px;
margin-top: 30px;
}
#map iframe
{
width: 100%;
border-radius: 20px;
}

@media only screen and (max-width: 992px)
{
#contact-page-section .main-head
{
padding-top: 25%;
font-size: 32px;
}
#contact-page-section
{
height: 43vh;
background-position: -400px center;
}
#contactus .contact-div .right
{
padding:60px;
}
#contactus .contact-div .left .cnt-button
{
justify-content: center;
}
#contactus .contact-div .left .cnt-button .cntc-btn
{
width: 40%;
}
#contactus .contact-div
{
margin-top:-100px;
}
}


@media only screen and (max-width: 768px)
{

.axsererv{
width: 100%;
margin-left: 10px;
margin-bottom: 8px;
margin-top: 7px;
}
#contact-page-section
{
height: 45vh;
background-position:center left;
}
#contact-page-section .container
{
padding:0 20px;
}
#contact-page-section .main-head
{
padding-top: 40%;
font-size: 26px;
}


#contactus .container
{
padding:0 20px;
}
#contactus .contact-div .right
{
padding:60px 40px;
}
#contactus .contact-div .left .cnt-button .cntc-btn
{
width: 100%;
}
#contactus .contact-div .right .cont-details div
{
gap:10px;
}

#map .container
{
padding:0 20px;
}

}

















/* CAREER PAGE BANNER */
#career-page-banner
{
height: 70vh;
background: url('../img/banner/career-page-banner.jpg');
background-size:cover;
background-position: center center;
}
#career-page-banner .left
{
padding-top: 20%;
}

#careerpara-1
{

}
#careerpara-1 .left, #careerpara-1 .right
{
padding:60px 20px;
}
#careerpara-1 .left img
{
border-radius: 20px;
}
#careerpara-1 .right .main-head
{
font-size: 30px;
}
#careerpara-1 .right
{
display: flex;
flex-direction: column;
justify-content: center;
}





#openings
{
padding:4% 0 8% 0;
}
#openings .main-head
{
font-size: 30px;
}
#openings .open-div
{
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap:30px;
row-gap: 50px;
}
#openings .open-div .main-head
{
font-size: 26px !important;
color: #fff !important;
}
#openings .open-div .open-items
{
box-shadow: 3px 3px 10px #2546e18f;
background: linear-gradient(90deg, var(--textcolor),var(--logo2));
background-size: 400% auto;
padding:40px 30px;
border-radius: 20px;
display: flex;
flex-direction: column;
gap:10px;
position: relative;
}
#openings .open-div .open-items .logo
{
position: absolute;
right:10px;
top:10px;
background: #fff;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
#openings .open-div .open-items .logo img
{
width: 60%;
margin-top:-5px;
}
#openings .open-div .apply-div
{
display: flex;
justify-content: center;
}
#openings .open-div .open-items .apply-btn
{
position: absolute;
bottom:-20px;
background:var(--logo2);
color: #fff;
padding:10px;
outline: none;
border: none;
border-radius: 10px;
/* transform: translateY(50px); */
width: 80%;
font-weight: 600;
box-shadow: 0 0 10px #25aae1ad;
transition: .3s ease;
}
#openings .open-div .open-items .apply-btn:hover
{
background: #fff;
color: var(--textcolor);
}
#openings .open-div .open-items p
{
color: #fff;
font-size: 14px;
line-height: 18px;
}
#openings .open-div .open-items .career-bold
{
font-weight: 600;
}






#applysection
{
padding:0 0 4% 0;
}
#applysection .modal-main
{
background: #000000bf;
width: 100%;
height: 100%;
position: fixed;
top:-50%;
z-index: 1000;
/* top:-100%; */
transition: .2s ease-in-out;
visibility: hidden;
opacity: 0;
display: flex;
align-items: center;
justify-content: center;
}
.modal-animation
{
top:0 !important;
visibility: visible !important;
opacity: 1 !important;
}
.overflow-scroll-rem
{
height: 100vh;
max-height:100vh ;
overflow-y: hidden;
}
#applysection .formsection
{
padding:40px;
box-shadow: 0 0 20px #00000020;
border-radius: 20px;
background:#fff;
width: 75%;
}
#applysection .formsection .modal-head
{
display: flex;
justify-content: space-between;
}
#applysection .formsection .close
{
cursor: pointer;
font-size: 24px;
color: var(--textcolor);
}
#applysection input
{
width: 100%;
padding:10px 20px;
border: 1px solid #c6c6c6;
border-radius: 30px;
}
#applysection input::placeholder
{
font-size: 14px;
}
#applysection input:focus-visible
{
border: none !important;
outline: 1px solid var(--logo2);
}
#applysection .formsection .career-btn-div
{
display: flex;
justify-content: center;
}
#applysection .formsection .career-btn
{
outline: none;
border: none;
width:40%;
padding:10px 20px;
border-radius: 30px;
background:var(--logo2);
background-size: 100% auto;
color: #fff;
font-weight: 600;
box-shadow: 2px 2px 20px #25aae175;
transition: .3s ease;
}
#applysection .formsection .career-btn:hover
{
background:var(--textcolor);
}

#applysection .upload
{
position: relative;
}
#applysection .upload-resume
{
position: absolute;
position: absolute;
width: 60%;
background: transparent;
border: 1px solid var(--logo2);
height: 100%;
display: flex;
justify-content: center;
align-items: center;
border-radius: 30px;
font-size: 14px;
}


@media only screen and (max-width: 992px)
{
#career-page-banner .left
{
padding-top: 30%;
}
#career-page-banner
{
height: 43vh;
background-position: -450px center;
}
#career-page-banner .main-head
{
width: 50%;
}
#careerpara-1 .left
{
padding:60px;
}
#careerpara-1 .right
{
padding: 20px 0;
}

#openings .open-div
{
grid-template-columns: 1fr 1fr;
row-gap: 50px;
}

#applysection
{
padding: 5% 0;
}
}

@media only screen and (max-width: 768px)
{
#careerpara-1 .left
{
padding: 40px 20px;
}
#career-page-banner
{
background-position: center left;
}
#career-page-banner .left
{
padding:48% 20px 0;
}
#career-page-banner .main-head
{
width: 100%;
}
#careerpara-1 .right
{
padding:20px;
}
#careerpara-1 .right .main-head
{
font-size: 26px;
}

#openings .open-div
{
grid-template-columns: 1fr;
row-gap: 50px;
}
#openings .container
{
padding:20px;
}


#applysection .container
{
padding:0 20px;
}
#applysection .formsection
{
padding: 40px 30px;
}
#applysection .formsection .career-btn
{
width: 100%;
}
#applysection .upload-resume
{

}
}











/* SERVICE PAGE */
.service-banner
{
height:40vh;
background: url('../img/banner/service-banner.jpg') top no-repeat;
background-size: cover;
}
.service-banner .container
{
height: 100%;
}
.service-banner-inner
{
height: 100%;
/* width: 50%; */
display: flex;
align-items: center;
justify-content: center;
}
.service-banner-inner h1
{
color: var(--textcolor);
margin-top:40px;
}


.service-items
{
padding:40px 0 80px;
}
.service-items .items-main
{
display: grid;
grid-template-columns:repeat(3, 1fr);
gap:30px;
}
.service-items .srv-item
{
box-shadow: 0 0 10px #00000015;
}
.service-items .srv-item img
{
width: 100%;
/* filter: drop-shadow(0 0 5px #00000050); */
}
.service-items .srv-item .srv-details
{
padding: 20px;
position: relative;
display: flex;
flex-direction: column;
align-items: space-between;
}
.service-items .srv-item .srv-details h2
{
font-size: 24px;
font-weight: 600;

}
.service-items .srv-item .srv-details p{
font-size: 14px;
margin:20px 0px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.service-items .srv-item .srv-details .srv-btn
{
width: fit-content;
background: linear-gradient(90deg, var(--logo1), var(--logo2));
box-shadow: 4px 4px 10px #25aae182;
text-decoration: none;
color: #fff;
padding:8px 20px;
transition: .3s ease;
font-size: 14px;
background-size: 100% auto;
}
.service-items .srv-item .srv-details .srv-btn:hover
{
background-size: 300% auto;
transition: .3s ease;
}
/* .service-items .srv-item .srv-details div
{
background: #fff;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
position: absolute;
right:20px;
bottom: 20px;
box-shadow: 4px 4px 5px #25a9e113;
} */
.service-items .srv-item .srv-details div img
{
width: 60%;
}


@media only screen and (max-width: 992px)
{
.service-items .items-main
{
grid-template-columns:repeat(2, 1fr);
}
}

@media only screen and (max-width: 768px)
{
.service-items .items-main
{
grid-template-columns:repeat(1, 1fr);
}
.service-items
{
padding:40px 10px;
}
}









/* Service Single Page */
#service-single-main
{
padding:50px 0 40px;
overflow-x: hidden;
}
#service-single-main h1
{
font-weight: 700;
margin-bottom:20px;

}
#service-single-main p
{
margin-bottom:10px;
}
#service-single-main img
{
border-radius: 5px;
}
#service-single-main .before
{
left: 20px;
top:20px;
position: absolute;
z-index: -1;
background: linear-gradient(45deg , #2e348e 0%, #25aae1 100%);
width: 100%;
height: 100%;
border-radius: 5px;
}
.side-tab
{
position: relative;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.make-sticky
{
position:-webkit-sticky;
position: sticky;
top: 60px;
}

.service-list-items
{
padding-bottom:40px;
overflow-x: hidden;
}
.service-list-items ul,
.service-single-list ul
{
margin:0;
display: flex;
flex-direction: column;
gap:15px;
}
.service-list-items li,
.service-single-list li
{
list-style-type:none;
/* margin-top: 15px; */
position: relative;
line-height: 22px;
}





#service-list-items
{
padding-bottom:40px;
overflow-x: hidden;
}
#service-list-items ul,
#service-single-list ul
{
margin:0;
display: flex;
flex-direction: column;
gap:15px;
}
#service-list-items li,
#service-single-list li
{
list-style-type:none;
/* margin-top: 15px; */
position: relative;
line-height: 18px;
}
.list-img
{
width: 20px;
position: absolute;
left: -30px;
top:0px;
}
#service-list-items img
{
border-radius: 5px;
}




#service-single-list
{
padding:40px 0;
overflow-x: hidden;
}
#service-single-list h2
{
padding-bottom: 20px;
font-weight: 600;
}
#service-single-list .nav-link {
text-align: left;
color: var(--logo1);
background: #25a9e134;
padding: 15px 30px;
font-weight: 500;
letter-spacing: 0;
border-radius: 10px;
margin-bottom: 14px;
}
#service-single-list .nav-link:hover
{
background: var(--logo2);
color: #fff;
}
#service-single-list .nav-pills .nav-link.active, .nav-pills .show>.nav-link
{
background: var(--logo1);
color: #fff;
}
#service-single-list .tab-content .tab-pane
{
padding-left:60px;
}
#service-single-list .tab-content .tab-pane h5
{
font-weight: 600;
}
#service-single-list .tab-content ul
{
margin:20px 0;
}

@media only screen and (max-width: 992px)
{
#service-single-main
{
padding:80px 0 40px 0;
}
#service-single-list
{
padding: 40px 0 40px;
}
#service-single-list .tab-content .tab-pane
{
padding-left:20px;
}
}


@media only screen and (max-width: 768px)
{
#service-single-main
{
padding:110px 10px 40px 10px;
}
#service-single-main h1
{
margin-top:20px;
}
#service-list-items
{
padding:0 10px;
}
#service-single-list
{
padding:20px;
}
#service-single-list .tab-content
{
padding: 20px 0;
}
#service-single-list .tab-content .tab-pane
{
padding-left: 0;
}
.make-sticky
{
position: relative;
top: 0;
}
}



/* new css */

.sidebar-menu-button{
margin-left: 13px;
}
.sidebar-menu-button i{
font-size: 20px;
color: var(--textcolor);
}


#offcanvasRight ul{
margin-top: 15px;
padding: 0px;
padding-left: 15px;
border: none;
}
#offcanvasRight ul li{
list-style: none;
margin-bottom: 20px;
}
#offcanvasRight ul li a.active{
color: #2e348e;
}
#offcanvasRight ul li a{
color: black;
text-decoration: none;
font-size: 24px;
}
#offcanvasRight .sm__icons i{
color: #2e348e;
padding: 10px;
font-size: 25px;
}
#offcanvasRight .sm__icons{
position: absolute;
bottom: 20px;
width: 100%;
}




/* loader animation */

.loader {
transform: rotateZ(45deg);
perspective: 1000px;
border-radius: 50%;
width: 48px;
height: 48px;
color: #32328d;
}
.loader:before,
.loader:after {
content: '';
display: block;
position: absolute;
top: 0;
left: 0;
width: inherit;
height: inherit;
border-radius: 50%;
transform: rotateX(70deg);
animation: 1s spin linear infinite;
}
.loader:after {
color: #44aae1;
transform: rotateY(70deg);
animation-delay: .4s;
}

@keyframes rotate {
0% {
transform: translate(-50%, -50%) rotateZ(0deg);
}
100% {
transform: translate(-50%, -50%) rotateZ(360deg);
}
}

@keyframes rotateccw {
0% {
transform: translate(-50%, -50%) rotate(0deg);
}
100% {
transform: translate(-50%, -50%) rotate(-360deg);
}
}

@keyframes spin {
0%,
100% {
box-shadow: .2em 0px 0 0px currentcolor;
}
12% {
box-shadow: .2em .2em 0 0 currentcolor;
}
25% {
box-shadow: 0 .2em 0 0px currentcolor;
}
37% {
box-shadow: -.2em .2em 0 0 currentcolor;
}
50% {
box-shadow: -.2em 0 0 0 currentcolor;
}
62% {
box-shadow: -.2em -.2em 0 0 currentcolor;
}
75% {
box-shadow: 0px -.2em 0 0 currentcolor;
}
87% {
box-shadow: .2em -.2em 0 0 currentcolor;
}
}



/* submenu dropdown */

.submenu-2{
background: aliceblue;
padding: 20px 10px;
border-radius: 14px;
}
.submenu-2 li{
list-style: disc;
padding: 0;
}
.product-submenu{
list-style: none;
padding-left: 0;
}
.submenu-2 li::marker{
color: var(--textcolor);
}
.submenu-2 li a {
text-decoration: none;
color: #000;
padding: 10px 0 !important;
}



.submenu-2 {
display: none;
}

.product-link:hover + .submenu-2 {
display: block;
}
.product-submenu .parent-menu{
position: relative;
}
.product-submenu ul{
position:absolute;
padding:0;
left:0;
top:0px;
display:none;
width: 35%;
}

.product-submenu .parent-menu a{
border-radius: 0 !important;
}


.product-submenu li:hover ul ul {
display:none;
}
.product-submenu li:hover ul {
display:block;
z-index: 999;
left: 30%;
list-style: none;
}
.product-submenu li:hover ul{
display:block;
padding: 10px;
}
.product-submenu ul:hover .submenu-link{
background-color: #0a1068 !important;
}

.product-submenu ul li{
padding: 5px 10px;
background: #170b58;
color: #fff;
margin-bottom: 4px;
border-radius: 15px;
}
.product-submenu ul li a{
text-decoration: none;
color: #ffffff;
}


.product-submenu .parent-menu .submenu-link:hover{
background-color: #fff !important;
color: #000 !important;
}
.product-submenu .parent-menu ul li:hover{
background-color: var(--logo2) !important;
}
/* .product-submenu .parent-menu ul li a:hover{
padding: 5px 10px;
background: var(--logo2) !important;
} */

.navbar-nav .nav-item .project-menu{
width: 200px !important;
padding: 5px 10px !important;
}
.product-nav-item{
position: relative;
}
.navbar-nav .nav-item .project-menu li:hover{
background-color: var(--logo2) !important;
color: #fff !important;
}

@media only screen and (min-width:1280px){
.product-submenu li:hover ul {
left: 20%;
}
}



/* new edit */


.managemt-team{
display: flex;
padding: 20px 10px;
}

.managemt-team .team-picture img{
width: 140px;
}

.managemt-team .team-details{
display: flex;
flex-direction: column;
justify-content: center;
}
.managemt-team .team-details h4{
font-size: 30px;
font-weight: 600;
}
.managemt-team .team-details p{
font-size: 18px;
font-weight: 400;
}
.managemt-team .team-details i{
color: var(--logo2);
margin-right: 5px;
font-size: 20px;
}

/* modern-equipments */

.modern-equipments{
padding: 0 0 40px;
}
.modern-equipments h4{
margin-bottom: 10px;
}
.modern-equipments .modern-equpment-img{
border: 1px solid #cfcdcddc;
margin-top: 10px;
}



/* service card */


.hydraulic-seal{
display: flex;
margin-top: 40px;
}
.hydraulic-seal .img-fluid{
margin-left: 40px;
}
.steel-melting-shop{
display: flex;
}
.solution-card img{
height: 240px;
width: 100%;
object-fit: cover;
margin-bottom: 10px;
}
.solution-card p{
font-size: 16px;
line-height: 22px;
}
.img-sec {
display: flex;
}
.img-sec img{
width: 50%;
padding: 5px;
}
.card-11 h5{
margin: 10px 0;
}

.sm-img{
height: 700px;
width: 100%;
object-fit: cover;
margin-top: 30px;
}

/* viewDetailsBtn */

#viewDetailsBtn {
border-style: none;
margin: 30px 0;
}


.details-div{
max-height: 0;
overflow: hidden;
transition: max-height 0.5s ease-in-out;
}

.details-div.active{
max-height: 1000px;
}

.details-table , .details-table th, .details-table td{
border: 1px solid white;
border-collapse: collapse;
}

.details-table th,.details-table td {
background-color: #13126b;
padding: 10px 20px;
color: #fff;
}


/* polymer-rubber-grid */

.polymer-rubber-grid{
display: grid;
grid-template-columns: repeat(3,1fr);
gap: 10px;

}


.polymer-rubber-grid .polymer-rubber-box{
padding: 10px;
border: 1px solid rgba(185, 180, 180, 0.651);
position: relative;
overflow: hidden;
}

.polymer-rubber-grid .polymer-rubber-box .details-box{
position: absolute;
top: 130%;
left: 50%;
transform: translate(-50%,-50%);
color: #fff;
width: 87%;
padding: 10px ;
transition: top ease-in-out .4s;
background-color: #fff;
color: var(--textcolor);
border-radius: 10px;
text-align: center;
box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
font-size: 15px;
font-weight: 500;
}

.polymer-rubber-grid .polymer-rubber-box:hover .details-box{
top: 75%;
}
.gird-3{
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.gird-3 img{
max-width: 100%;
height: auto;
}
.pipleline-images img{
height: 150px;
}

.power-quality-img-1{
height: 300px;
}

.power-quality-grid img{
height: 300px;
}
.power-quality-grid .polymer-rubber-box{
display: flex;
justify-content: center;
align-items: center;
}

.industrial-drives .polymer-rubber-box{
display: flex;
justify-content: center;
align-items: center;
}
.medical-cards{
display: flex;
flex-wrap: wrap;
gap: 20px 15px;
}

.medical-card{
width: 32%;
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
padding: 0 0px 20px;
border-radius: 10px;
overflow: hidden;
}

.medical-cards .medical-card img{
border-bottom-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
height: 280px;
width: 100%;
object-fit: cover;
}
.medical-card a{
display: block;
text-align: center;
margin-top: 10px;
font-size:18px;
font-weight: 600;
text-decoration: none;
color: var(--textcolor);
}

.business-solution-banner {
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0) 100%),
url("../img/business-soltion-banner-img.jpg") no-repeat;
background-size: cover !important;
background-position: center;
background-repeat: no-repeat;
height: 74vh;
width: auto;
position: relative;
display: flex;
align-items: flex-end;
z-index: 11;
margin: 1% 10%;
border-radius: 10px;

}

.business-solution-banner::before{
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;

z-index: 1;
background: linear-gradient(229deg, rgb(37 170 225 / 25%) 54%, rgba(10,16,104,1) 121%);
border-radius: 10px;
}

.business-solution-banner.hydraulics-pneumatics-banner{
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0) 100%),
url("../img/Hydraulics-and-Pneumatics1.jpg") no-repeat;
}

.business-solution-banner.industrial-drives-banner{
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0) 100%),
url("../img/industrial-drives-automation-1.jpg") no-repeat;
}

.business-solution-banner.mechanical-equipments-banner{
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0) 100%),
url("../img/mechanical-equipment1.jpg") no-repeat;
}
.business-solution-banner.medical-division-banner{
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0) 100%),
url("../img/medical-division1.jpg") no-repeat;
}
.business-solution-banner.polymer-rubber-banner{
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0) 100%),
url("../img/polymer-rubber-1.jpg") no-repeat;
}
.business-solution-banner.power-backup-banner{
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0) 100%),
url("../img/power-backup1.jpg") no-repeat;
}
.business-solution-banner.power-quality-banner{
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0) 100%),
url("../img/power-quality1.jpg") no-repeat;
}
.business-solution-banner.water-engineering-solution-banner{
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0) 100%),
url("../img/water-and-engineering-solution/water-engineering-solution-9.jpg") no-repeat;
}
.business-solution-banner.power-system-service-banner{
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0) 100%),
url("../img/power-system-service1.jpg") no-repeat;
}
.service-banner-head {
font-size: 34px;
line-height: 50px;
font-weight: 600;
color: #ffffff;
z-index: 11;
position: relative;
margin-bottom: 35px;
text-align: center;
}
/* medical page */
.medical-pg{
padding: 80px 10px 0;
}

/* swiper slider */

.swiper {
width: 300px;
height: 300px;
padding: 50px;
}

.swiper-slide {
background-position: center;
background-size: cover;
width: 300px;
height: 300px;
}

.swiper-slide img {
display: block;
width: 100%;
}

.medical-slider .owl-dots{
position: absolute;
top: 105%;
left: 50%;
transform: translate(-50%,-50%);
}

.medical-slider .owl-dots button{
width: 10px;
height: 10px;
border-radius: 50%;
background-color: #1c99cab0;
margin: 4px;
}
.medical-slider .owl-dots button.active{
background-color: #0a1068;
}

.partners-slider-section{
padding: 150px 10px 100px;
}


.partner-logo-img{
transform-style: preserve-3d;
width: 100%;
height: 140px;
object-fit: contain;
box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
padding: 10px;
margin: 10px 0 10px;
}


.contact-details-box{
position: relative;
background: #ebf9ff;
padding: 20px 20px 40px 30px;
border-radius: 20px;
margin-top: 75px;
overflow: hidden;
box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;

}
.contact-box-logo{
position: absolute;
bottom: 10px;
right: 10px;
width: 150px;
opacity: .3;
transform: rotate(330deg);
}

.contact-details-box h3{
font-size: 34px;
line-height: 40px;
color: #0a1068;
font-weight: 600;
}

.contact-details-box .office-address{
width: 80%;
}
.contact-details-box p{
color: #0a1068;
font-size: 16px;
}
.contact-details-box a{
color: #0a1068;
font-size: 16px;
text-decoration: none;
margin-top: 10px;
display: block;
}
.contact-box-icon{
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
background-color: #fff;
color: #0a1068;
}
.contact-box-icon i{
font-size: 20px;
}
.footer-social-media a{
text-decoration: none !important;
margin-right: 15px;

}
.footer-social-media i{
font-size: 20px;

color: #0a1068 !important;
}

.ftr-location{
color: #0a1068;
margin-bottom: 7px;
}


/* dropdown */

.dropdown-service{
position: relative;
}
.service-dropdown-menu{
position: absolute;
left: 0;
top: 30px;
/* width: 100%; */
background-color: #fff;
box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
visibility: hidden;
transform: translate3d(-10px,0px,0);
opacity: 0;
transition: all .3s ease-in-out;
}
.dropdown-service::after{
content: '';
position: absolute;
right: 22px;
bottom: 14px;
background-image: url('../img/arrow-bottom.png');
width: 12px;
height: 12px;
background-position: center;
background-size: contain;
background-repeat: no-repeat;
}
.service-drpdwn-ul{
list-style: none;
padding-left: 0;
}
.service-drpdwn-ul li{
border-bottom: 1px solid #0a10682d;
}
.service-drp-dwn-link{
color: var(--logo1) !important;
font-weight: 500;
text-decoration: none;
font-size: 15px;
white-space: nowrap;
padding: 10px;
display: block;
}
.service-drpdwn-ul li:hover{
background-color: #0a1068;
}
.service-drpdwn-ul li :hover.service-drp-dwn-link{
color: #fff !important;
}
.dropdown-service:hover .service-dropdown-menu{
visibility: visible;
transform: translate3d(0px,0px,0);
opacity: 1;
}

/* */

.valves-images img{
max-width: 260px;
}



@media only screen and (max-width:999px) {
.medical-card{
width: 31%;
}
.medical-slider {
margin-top: 30px;
margin-bottom: 50px;
}
.partners-slider-section{
padding: 80px 10px;
}
#service-single-main{
overflow-x: hidden;
}
#service-list-items{
overflow-x: hidden;
}
.make-sticky{
position: relative;
top: 0;
margin-bottom: 20px;
}
#service-single-list{
overflow-x: hidden;
}
.sidebar-menu-button{
display: none;
}
#header .navbar .logo-div {
width: 60px;
}
.service-banner-inner{
width: 100%;
}
}


@media only screen and (max-width:767px){
.polymer-rubber-grid{
grid-template-columns: repeat(2,1fr);
}
.business-solution-banner{
height: 300px;
}
.medical-card{
width: 100%;
}
.medical-cards .medical-card img {
height: 200px;
}
.service-banner-head{
font-size: 24px;
line-height: 30px;
}
}


@media screen and (max-width:1280px){
#banner .left{
padding: 100px 10px 0;
}
}


/* new edit mission and vision */

.about-points{
list-style: circle;
}
.about-points li{
margin-bottom: 7px;
}
.about-points li::marker{
color: #ffffff;
}

/* query box */

.query-box{
background-color: #25aae1;
background: linear-gradient(45deg , #2e348e 0%, #25aae1 100%);
margin: 40px 0 10px;
color: #fff;
padding: 20px 20px;
border-radius: 7px;
}

.query-box h3{
color: #fff;
text-align: center;
margin-bottom: 10px;
font-size: 24px;
}

.query-box a i{
color: #fff;
margin-right: 15px;
font-size: 20px;
}

.query-box a {
color: #fff;
text-decoration: none;
font-size: 18px;
font-weight: 400;
}

.product-table, .product-table th, .product-table td {
border: 1px solid black;
border-collapse: collapse;
padding: 5px 10px;
}