@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap');
body{
    overflow-x: hidden;
    font-size: 16px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html{
    scroll-behavior: smooth;
}
a{
    color: black;
}
a:hover{
    text-decoration: none;
    color: black;
}
p{
    margin: 0;
}
h1,h2,h3,h4,h5,h6{
    margin: 0;
}
img{
    width: 100%;
}
ul{
    padding-left: 0;
    margin-bottom: 0;
}
ul li{
    list-style: none;
}

.autocontainer{
    margin:0px 64px ;
}
.allbg{
    background-image: url('../images/about-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#whatsapp{
    position:fixed;
    bottom:15%;
    right:2%;
    width:40px;
    z-index:1000;
    animation:blink 1.2s  ease infinite;
}

@keyframes blink{
    0%{
        transform:scale(.8,.8);
    }
    100%{
        transform:scale(1.2,1.2);
    }
}
@media screen and (max-width:1100px){
    .autocontainer{
        margin:0px 32px;
    }
}
@media screen and (max-width:1023px){
    .autocontainer{
        margin:0px 24px;
    }
}
@media screen and (max-width:600px){
    .autocontainer{
        margin:0px 16px;
    }
}
.form-control:focus{
    box-shadow: none;
}
:root{
    --logo:#0075be;
    --brown:#d2691e;
    --orange:#ff5722;
    --sky:#00bcd4;
    --white:#fff;
    --grey:#607d8b;
    --yellow:#ffeb3b;
    --orangeyellow:#ff9800;
    --red:#ea1410;
    --acqua:#373737;
    --color: #ffeb3b;
}

.widget-title{
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    color: #f78d03;
}
.widget-title span{
    font-size: 28px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    font-style: italic;
    color: var(--logo);
}

#topscroll{
    position: fixed;
    right: 2%;
    bottom: 5%;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: var(--logo);
    text-align: center;
    z-index: 10;
    cursor: pointer;
    display: none;
    box-shadow:0 0 10px 0 rgba(255,255,255,0.9);
}
#topscroll i{
    line-height: 40px;
    font-size: 16px;
    color: var(--white);
}
.btn{
    position: relative;
    font-size: 14px;
    font-weight: 600;
    border-radius: 32px;
    z-index: 0;
    border: none;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}
.btn-lg{
    position: relative;
    font-size: 18px;
    font-weight: 500;
    border-radius: 32px;
    z-index: 0;
    border: none;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}
.btn:before{
   content: " ";
   position: absolute;
   top: 0;
   left: 0;
   background-color: rgba(255,255,255,0.2);
   width: 100%;
   height: 50%;
   border-top-left-radius: 32px;
   border-top-right-radius: 32px;
   z-index: -1;
}
.myflex{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.slick-prev, .slick-next {
    width: 24px;
    height: 24px;
}
.slick-prev:before, .slick-next:before {
    color: chocolate;
}
.slick-dots li button:before {
    font-size: 50px;
}
.slick-slide{
    margin:0px 4px;
}

@media screen and (max-width:600px){
    .slick-dots {
        bottom: -24px;
    }
    .slick-dots li {
        width: 18px;
        height: 18px;
    }
    .widget-title span {
        font-size: 18px;
    }
}
/* ----------------drop down----------------- */
.megaDropdown .dropMenu{
    width: 100%;
    position: absolute;
    left: 0;
    background: #fff;
    z-index: 1000;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all .5s ease;
}
.dropMenu li{
    width: 16.66%;
    text-align: center;
    border: .5px solid #ccc;
    margin-right: -1px;
    margin-bottom: -1px;
}
.dropMenu li a{
   display:block;
   width: 100%;
}
.dropMenu li a img{
    width: 66%;
    height: 30px;
    object-fit: contain;
}
.dropMenu.dropActive{
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}
@media screen and (max-width:992px){
    .dropMenu li {
        width: 24.66%;
    }
}
@media screen and (max-width:600px){
    .dropMenu li {
        width: 49%;
    }
}
/* ----------------drop down----------------- */
/* -------------------header--------------------- */
.mynavbar{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding:0px 32px;
    width: 100%;
}
.mynavbar li{
    display: inline-block;
}
.mynavbar li a{
    display: block;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--logo);
}
.mynavbar>li .btn{
    padding: 8px 20px;
    color: #fff;
}
.logo{
    width: 160px;
}
.logo a{
    padding: 0 !important;
}
.logo a img{
    object-fit: contain;
}
/* -----------x--------header----x----------------- */
/* ------------------navbar------------------ */
header{
    position: relative;
}
.navbar{
    padding: .2rem 3rem;
    box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.5);
}
.top_nav{
    width: 100%;
    height: 42px;
    background-color: var(--logo);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.top_nav ul li{
    display: inline-block;
    color: #fff;
    margin-right: 32px;
}
.top_nav ul li i{
    margin-right: 8px;
}


@media screen and (max-width:1100px){
    .navbar{
        padding: .2rem 1rem;
    }
    .mynavbar li a {
        padding: 8px 12px;
    }
}
@media screen and (max-width:992px){
    .navbar{
        justify-content: space-between;
    }
    .navbar-nav .nav-link{
        text-align: center;
    }
    .mynavbar{
      flex-direction: column;
    }
    .mynavbar li{
        display: block;
    }
 
}
@media screen and (max-width:600px){
    .top_nav{
        display:none;
    }
   .logo {
    width: 115px;
    }
}
/* --------x----------navbar-------------x----- */
/* ------------- pogo slider---------------*/
.pogoSlider-progressBar{
    top: auto;
    bottom: 0px;
    display: none;
}
.pogoSlider-progressBar-duration {
  display: none;
}
.pogoSlider-nav li .pogoSlider-nav-btn{
    width: 20px;
    height: 20px;
}

.banner_content{
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    color: #fff;
    text-align: right;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
.banner_content h2{
    font-size: 54px;
    font-weight: 600;
    text-shadow: 0 3px 7px #000;
}
.banner_content p{
    font-size: 20px;
    margin: 30px 0px;
}
.pogoSlider-slide{
    background-position: center;
    background-repeat: no-repeat;
}
.pogoSlider-slide:nth-child(1) .banner_content{
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    text-align: left;
}
@media screen and (max-width:1100px){
    .banner_content h2{
        font-size: 50px;
    }
    .banner_content p{
        font-size: 16px;
        margin: 24px 0px;
    }
}

@media screen and (max-width:600px){
    .banner_content{
        display: none;
    }

}
/* ------------- pogo slider---------------*/
/* -------------what_we_do------------------ */
.what_we_do{
  margin-bottom: 10px;
}
.what_we_do .myflex{
    justify-content: space-between;
}
.what_we_do .myflex li{
    width: 12%;
    height: 130px;
    position: relative;
    border: 1px dashed var(--logo);
    border-top: 0;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: 0px 0px 7px rgba(0,0,0,0.2);
}
.what_we_do .myflex li a{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-size: 14px;
    text-align: center;
    font-weight: 600;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width:1100px){
    .what_we_do .myflex li {
        height: 114px;
    }
}
@media screen and (max-width:992px){
    .what_we_do .myflex li {
        width: 50%;
        height: auto;
        padding: 12px;
        border-radius: 0px ;
    }
   
}
@media screen and (max-width:600px){
    .what_we_do{
        display: none;
    }
    .what_we_do .myflex li {
        width: 100%;
    }
}
/* ------x-------what_we_do---------------x--- */
/* ----------------new section------------- */
.new{
    padding: 32px 0px;
}
.products{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.application{
    width: 32%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 160px;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
    margin: 8px;
}
.application .app_img{
    padding: 8px;
    width: 50%;
    height: 100%;
}
.application .app_img img{
    height: 100%;
    object-fit: contain;
}
.application .overlay{
    width: 50%;
    padding:6px;
    transition: all .5s  ease;
}
.application .overlay a:hover{
    color:var(--logo);
}
.application h3{
    font-size: 16px;
    font-weight: 600;
    color: red;
    text-transform: capitalize;
}

@media screen and (max-width:1100px){
    .application{
        margin: 6px;
    }
}
@media screen and (max-width:992px){
    .application{
        margin: 4px;
    }
}
@media screen and (max-width:600px){
    .application{
        width: 100%;
    }
}
/* ----------------new section------------- */
/* -------homeaboutus------- */
.homeaboutus{
    padding: 70px 0px 50px 0px;
}
.about_left h3{
    text-align: left;
}
.about_left p{
    margin: 12px 0px;
}
.about_left .myflex{
    justify-content: space-around;
}
.about_left .myflex li{
    width: 120px;
    height: 120px;
    position: relative;
    
    border-radius: 50%;
}
.about_left .myflex li::before{
    content: "";
    width: 100%;
    height: 100%;
    border: 3px solid var(--logo);
    border-right-color: #ffc107;
    border-left-color:  #ffc107;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    animation: run 2s infinite linear;
    background: #fff;
}
.about_left .myflex li a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.2);
    padding: 4px 8px;
    border-radius: 50%;
    text-align: center;
    cursor:default;
}
@keyframes run{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
.about_right {
    position: relative;
    transition: 1s all ease;
}

.twocompanyBox{
    /* border: 2px dashed var(--logo); */
    text-align: center;
    padding: 12px;
}
.twocompanyBox img{
    width: 65%;
    height: 125px;
    object-fit: contain;
    margin-bottom: 20px;
}

.twocompanyBox a{
    display: inline-block;
    width: 90%;
}

@media screen and (max-width:992px){
    .about_left{
        margin-bottom: 24px;
    }
    .homeaboutus .row{
        align-items: center;
    }
    .homeaboutus {
        padding: 30px 0px;
    }
}
@media screen and (max-width:600px){
    .homeaboutus {
        padding: 20px 0px;
    }
    .about_left{
        margin: 20px 0px;
    }
}
/* -------homeaboutus------- */

/* ---------------enquiryform------------------ */
.enquiryform{
    padding-bottom:30px;
}
.enquiryform form{
    background: linear-gradient(to right, rgb(243 127 12), rgb(0 117 190));
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
}
.certificate_img{
    padding: 12px;
    box-shadow: 2px 2px 10px rgb(0 0 0 / 30%);
    margin-bottom: 20px;
}
.enquiryform .form-control{
    background-color: transparent;
    border: 1px solid #fff;
    color:#fff;
}

.enquiryform .form-control::placeholder{
    color:#fff;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button
{
  -webkit-appearance: none;
  margin: 0;
}
@media screen and (max-width:1100px){
  
}

/* ---------------enquiryform------------------ */
/* -----------clients---------------- */
.clients{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content:center;
}
.client_img{
    width: 19%;
    height: 80px;
    margin: 4px;
    border: 1px solid #ccc;
    padding: 17px;
}
.client_img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (max-width:1100px){
    .client_img{
        width: 24%;
        margin: 2px;
    }
}
@media screen and (max-width:1100px){
    .client_img{
        width: 48%;
        margin: 2px;
    }
}
/* -----------clients---------------- */
/* ------------------footer----------------- */
footer{
    box-shadow: 0px 0px 10px 0px rgb(210 105 30);
}
.main_footer{
    background:linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.8)) ,url('../images/b2.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 32px 0px;
}
.qrcode{
    width: 100%;
    text-align: center;
}
.qrcode img{
    border-radius: 8px;
    width: auto;
}
.main_footer .second_footer{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    color: #fff;
}
.copyrights{
    padding: 12px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    background-color:var(--logo);
}
.footer_start, .footer_middle, .footer_end{
    width: 30%;
}
.footer_start{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer_start ul{
  display: flex;
  align-items: center;
}
.footer_start ul li a{
    display: block;
    width: 42px;
    height: 42px;
    text-align: center;
    background-color:#fff;
    border-radius: 50%;
    margin: 8px;
}
.footer_start ul li a i{
    color: chocolate;
    line-height: 42px;
}
.footer_middle h3{
    position: relative;
    font-size: 20px;
    font-style: italic;
    display: block;
    padding-left: 8px;
    margin-bottom: 8px;
}
.footer_middle p{
    text-align: justify;
}
.footer_middle h3::before{
    content: " ";
    position: absolute;
    top: 0%;
    left: 0;
    width: 3px; 
    height: 100%;
    background: var(--orange);

}
.footer_middle ul li{
    position: relative;
    padding-left: 40px;
    margin-bottom: 8px;
}
.footer_middle ul li i{
    position: absolute;
    top: 3px;
    left: 8px;
    color: chocolate;
}
@media screen and (max-width:1100px){
    
}
@media screen and (max-width:992px){
  .qrcode{
      margin-bottom: 18px;
  }
}
@media screen and (max-width:600px){
    .second_footer{
        flex-direction: column;
    }
    .footer_start, .footer_middle, .footer_end{
        width: 100%;
    }
    .footer_start{
        margin-bottom: 12px;
    }
}
/* ------x------------footer----------x------- */
/* -------------services----------------- */
.homeService{
  padding: 30px 0px 50px 0px;
}

.services_list{
    margin-top: 24px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.services_list li{
    position: relative;
    width: 32%;
    height: 130px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 16px;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    box-shadow: inset -3px -3px 9px 0px rgba(29, 19, 19, 0.5);
    overflow: hidden;
    transition: width .5s ease;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 8px;
}
.services_list li::before{
    content: " ";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    border-radius: 12px;
   background-color: var(--logo);
}
.services_list li img{
    width: 80px;
}
.services_list li:nth-child(even){
    box-shadow: 3px 3px 9px 0px rgba(29, 19, 19, 0.5);
}
.seriesul{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
}
.seriesul li {
    width:19%;
}
.seriesul li a{
    display:block;
    box-shadow:0 0 10px 0 rgba(0,0,0,0.2);
    padding:8px 24px;
    border-radius:4px;
    margin:8px;
    color:var(--logo);
    font-weight:600;
    text-align:center;
    text-transform:capitalize;
    transition:1s all ease;
}
.seriesul li a:hover{
     color:white;
     background:var(--danger);
}
@media screen and (max-width:1100px){
    .services_list li img {
        width: 60px;
    }
    .seriesul li {
        width:24%;
    }
}

@media screen and (max-width:992px){
   
    .slick-next {
        right: 0;
    }
    .slick-prev {
        left: 0;
        z-index: 2;
    }
    .slick-arrow{
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
    }
    .services_list li{
        width: 100%;
    }
      .seriesul li{
        width:32%;
    }
}
@media screen and (max-width:600px){
   
      .seriesul li{
        width:100%;
    }
}
/* -------------services----------------- */

/* ---------------services page------------------ */
.page_title{
    display: flex;
    align-items: center;
    padding: 12px 64px;
    font-weight: 600;
}
.page_title i{
    margin:0px 8px;
    font-weight: 600;
}
.page_title span{
    color: var(--logo);
}
.page_title a{
    color: var(--orange);
}
.services_box{
    display: flex;
    align-items:center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 12px 24px;
    margin-bottom: 24px;
    box-shadow: 0px 0px 6px rgba(0,0,0,0.2);
}
.services_box_left{
    width: 65%;
}
.services_box_left h3{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}
.services_box_right{
    width: 30%;
}
.services_box_right a{
    display: block;
    padding: 12px;
    width: 100%;
    height: 230px;
}
.services_box_right a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services_box:nth-child(even) {
    flex-direction: row-reverse;
}

@media screen and (max-width:992px){
    .services_box , .services_box:nth-child(even) {
        flex-direction: column-reverse;
    }
    .services_box_left{
        width: 100%;
    }
    .services_box_right{
        width: 70%;
        margin-bottom: 20px;
    }
}
@media screen and (max-width:600px){
    .services_box_left h3{
        font-size: 18px;
    }
    .services_box , .services_box:nth-child(even) {
        flex-direction: column-reverse;
        padding: 8px;
    }
    .services_box_left{
        width: 100%;
    }
    .services_box_right{
        width: 100%;
        margin-bottom: 20px;
    }
}
/* ---------------services page------------------ */


/*--------------------------------------- products---------------------------------------- */
.productContainter{
    display: flex;
    flex-wrap: wrap;
    margin: 40px 0px;
}
.productBox{
    width: 24%;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
    margin: 6px;
}
.product_img{
    display: block;
    width: 100%;
    height: 230px;
}
.product_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.products_details{
    padding: 12px;
}
.products_details h3{
    color: var(--logo);
    font-size: 16px;
}
.products_details p{
    font-size: 14px;
    margin: 6px 0;
}
.A_client_ul li{
    margin-bottom: 12px;
}
.A_client_ul li img{
   width: 100%;
   height: 64px;
   object-fit: contain;
}
.Aclientspages .table tr td img{
     width: 100%;
     height: 100px;
     object-fit: contain;
}
@media screen and (max-width:1100px){
    .productBox {
        width: 32%;
    }
}
@media screen and (max-width:992px){
    .productBox {
        width: 48%;
    }
    .siemenpage p{
        text-align: justify;
      }
}
@media screen and (max-width:600px){
    .A_client_ul li {
        width: 100%;
    }
    .productBox {
        width: 100%;
    }
  
  
}


/*----------------x---------------------- products---------------x------------------------ */
/* --------------Industry---------------- */
.industry_head{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    background: linear-gradient(20deg, #ffffff,var(--logo));
    padding: 32px;
}
.industry_head_left{
    width: 35%;
}
.industry_head_left h4{
    font-size: 28px;
   position: relative;
   padding-bottom: 12px;
   margin-bottom: 12px;
}
.industry_head_left h4:before{
    content: " ";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--orangeyellow);
}
.industry_head_right{
    width: 35%;
}
.our_story{
    margin: 36px auto 50px auto;
    width: 50%;
    text-align: center;
}
.our_story h2{
    font-weight: bold;
    margin-bottom: 16px;
    font-size: 32px;
    font-family: 'Open Sans', sans-serif;
}
.stand_out{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin:32px 0;
}
.stand_out_box{
    width: 32%;
    text-align: center;
    margin-bottom: 12px;
} 
.stand_out_box div{
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    border: 2px solid var(--logo);
    text-align: center;
    margin: auto;
}
.stand_out_box i{
    line-height: 80px;
    font-size: 36px;
    color: var(--logo);
}
.stand_out_box h5{
    margin: 12px 0px;
}

@media screen and (max-width:992px){
    .industry_head_left h4 {
        font-size: 18px;
        font-weight: bold;
    }
    .industry_head_left {
        width: 50%;
    }
    .industry_head_right {
        width: 40%;
    }
    .our_story {
        margin: 36px auto 50px auto;
        width: 80%;
        text-align: center;
    }
}
@media screen and (max-width:600px){
    .industry_head {
        flex-direction: column;
        padding: 16px;
    }
    .stand_out_box{
        width: 100%;
    } 
    .industry_head_left {
        width: 100%;
    }
    .industry_head_right {
        width: 100%;
    }
    .our_story {
        margin: 16px auto 32px auto;
        width: 100%;
        text-align: justify;
    }
    .our_story h2{
        text-align: center;
    }
}
/* --------------Industry---------------- */

.field-error::placeholder{
    color:red !important;
}


/* --------------------Acquatech----------------- */
.acquatechpage{
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    color: var(--logo);
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
}
.acquatech_menus{
    width: 20%;
    height: 100%;
    background-color:#0c0c0cd1;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
.acquatech_main{
    width: 80%;
}
.acquatech_list{
    display: none;
    margin-bottom: 8px;
}
.acquatech_list.collapse{
    display: block;
}
.acquatech_list li{
   display: block;
}
.Alink{
    display: flex;
    padding: 12px;
    font-size: 16px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    align-items: center;
    justify-content: flex-start;
}
.Alink p{
   display: inline-flex;
   width: auto;
   align-items: center;
   justify-content: space-between;
   margin-right:8px;
}
.Alink p i{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 3px solid #fff;
    display: inline-block;
}
.Alink p span{
    width: 0px;
    height: 2px;
    background: #fff;
    display: inline-block;
    transition: .5s all ease;
}
.Alink.active p , .Alink:hover p {
    width: 50px;
}
.Alink.active p i, .Alink:hover p i{
    border: 6px solid #fff;
}
.Alink.active p span, .Alink:hover p span{
    width: 30px;
}
.Alink:hover{
    color: #fff;
}

.acquatech_main{
    padding: 20px;
}


.introductionPage{
    width: 100%;
}
.acqua_title {
    position: relative;
   font-size: 24px;
   font-weight: 600;
   padding-bottom: 12px;
   margin-bottom: 20px;
   text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    color: var(--acqua);
}
.acqua_title::before{
    content: " ";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ccc;
}
.acqua_title::after{
    content: " ";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 15%;
    height: 3px;
    background: var(--logo);
}
.logo2{
    height: 130px;
    object-fit: contain;
}
.aapara p{
    margin-bottom: 12px;
    text-align: justify;
    padding-left:40px;
    position:relative;
}
.aapara p i{
    position:absolute;
    top:3px;
    left:8px;
    color:var(--acqua);
}

.text-orange{
    color: var(--orange);
}

.Aclientspages h3{
    color: var(--acqua);
    font-size: 18px;
    font-weight: bold;
    margin: 12px 0px;
    font-family: 'Open Sans', sans-serif;
}
.A_client_ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.A_client_ul li{
    width: 32%;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
    padding: 12px 8px;
    text-align: center;
}
.A_notable_clients_ul{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.A_notable_clients_ul li{
    position:relative;
    margin-bottom: 12px;
    padding-left:40px;
    width: 49%;
}
.A_notable_clients_ul li i{
    position:absolute;
    top:4px;
    left:8px;
    color:var(--acqua);
}

.founderpage .table tr td, .founderpage .table tr th{
    text-align: justify;
}
.founderpage .table tr th{
    white-space: nowrap;
}
.acquatech_img {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.gallerypage ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.acquatech_img li{
    width: 49.5%;
    height: 230px;
    margin-bottom: 12px;
}
.acquatech_img li img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallerypage ul li{
    width: 24%;
    height: 230px;
    margin: 4px;
}
.gallerypage ul li img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.peopleflex{
    display: flex;
    justify-content:center;
    flex-wrap: wrap;
}
.peoplebox{
    width: 36%;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    border-radius: 8px;
    text-align: justify;
    padding: 20px;
    border-radius: 8px;
    margin: 12px 16px;
}
.peopleLeft{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
}
.peopleLeft img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position:top;
    transition: .5s all ease;
    border-radius: 50%;
}

.peoplebox h4{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--acqua);
}
.peoplebox p{
    font-size: 14px;
    margin: 8px 0;
}
.peoplebox a{
  color: Var(--acqua) !important;
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
  display: inline-block;
}
.peoplebox a i{
  margin-left: 4px;
  transition: .5s all ease;
}
.peoplebox a:hover{
    color: var(--logo) !important;
}
.peoplebox a:hover i{
    margin-left: 8px;
}

.modal_img{
    width: 200px;
    height: 200px;
}
.modal_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.modal-body h3{
    color: var(--acqua);
    font-weight: 600;
    font-size: 24px;
    margin-top: 6px;
}
.adminHead{
    width: 100%;
    height: 200px;
    position: relative;
    background: #0075be;
    color: white;
    display: flex;
    align-items: center;
    padding: 20px;
    box-shadow: 2px 2px 10px 0 #607d8b;
}
.newlogo{
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 50%;
    text-align: center;
    margin:16px auto;
}
.newlogo img{
    width: 80%;
    height: 90%;
    object-fit: contain;
}
.adminHead h3{
  font-size:20px;
  font-weight: 600;
  letter-spacing: 1.5px;
}
.adminHead h3 span{
  display: block;
  font-size:40px;
  font-weight: 600;
  letter-spacing: 1px;
}
.AAleft{
    position: relative;
    width: 80%;
    height: 80%;
    margin: auto;
    /*border: 8px solid var(--acqua);*/
    /*border-bottom: 8px solid var(--logo);*/
    /*border-right: 8px solid var(--logo);*/
}
.AAleft img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pt{
    padding-top: 70px ;
}

.acquAbout .row{
    align-items: center;
}
.acquAbout.col_reverse .row{
  flex-direction: row-reverse;
}




.pogoSlider2 .pogoSlider-dir-btn { 
  top: 10% !important;
}
.pogoSlider2 .pogoSlider-dir-btn--prev { 
  left: auto !important;
  right: 4%;
}
.reachus form{
    margin: 24px 0;
    padding: 20px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
}
.reachus ul{
    margin: 20px 0;
}
.reachus ul li{
    position: relative;
    padding-left: 40px;
    margin-bottom: 12px;
}
.reachus ul li i{
    position: absolute;
    top: 3px;
    left: 8px;
    color: var(--acqua);
}
.carousel-item{
    position: relative;
    width: 100%;
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.carousel-item::after{
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    /*background:linear-gradient(to right,rgba(0,0,0,0.1), #2196f3);*/
    top: 0;
    left: 0;
    mix-blend-mode: overlay;
    z-index: 0;
}
.carousel-caption{
    position: absolute;
    bottom: auto;
    right: 42px;
    top: 50%;
    left: auto;
    transform: translateY(-50%);
    color: #fff;
    text-align: right;
    z-index: 100;
    background: rgba(0,0,0,0.3);
    padding: 16px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-right: 6px solid #ffce39;
}
.carousel-control-next, .carousel-control-prev {
    width: 36px;
    height: 36px;
    top: 5%;
}
.carousel-control-prev {
    left: auto;
    right: 4%;
}
.carousel-caption h3{
    font-size: 50px;
    font-weight: 600;
}
.carousel-caption p{
    font-size: 20px;
    margin: 24px 0px;
    text-shadow: 0 3px 7px #000;
}
.bars{
    color: white !important;
    display: none;
}

@media screen and (max-width:1100px){
    .acquatech_menus {
        width: 25%;
        overflow-y: scroll;
        padding-bottom: 32px;
    }
    .Alink {
        padding: 8px;
    }
    .newlogo {
        width: 110px;
        height: 110px;
    }
    .acquatech_main {
        width: 75%;
    }
    .gallerypage ul li {
        width: 32%;
    }
    .AAleft {
        width: 100%;
        height: 300px;
    }
    .peoplebox {
        width: 42%;
    }
 
}
@media screen and (max-width:992px){
    .newlogo {
        width: 80px;
        height: 80px;
    }
    .bars{
        display: block;
    }
    .acquatech_list{
       position: absolute;
       top:100%;
       left:50%;
       transform: translateX(-50%);
       width: 90%;
       background: var(--acqua);
       z-index: 2000;
    }
    
    .carousel-control-next, .carousel-control-prev {
        top: auto;
        bottom: 5%;
    }
    .acquatech_menus {
        width: 100%;
        overflow-y: unset;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding:12px 16px;
        height: auto;
        position: relative;
        top: auto;
        left: auto;
    }
    .newlogo {
        margin:0;
    }
    .carousel-item{
        height: 70vh;
    }
    .acquatech_main {
        width: 100%;
    }
}
@media screen and (max-width:600px){
    .carousel-item{
        height: 50vh;
    }
    .carousel-caption{
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        top: auto;
        transform: none;
        color: #fff;
        text-align: center;
        z-index: 0;
        border-radius: 0px;
        border:none;
    }
    .carousel-caption h3{
        font-size: 16px;
    }
    .carousel-caption p{
       display: none;
    }
    .carousel-control-prev {
        right: auto;
        left: 0%;
    }
    .pt {
        padding-top: 36px;
    }
    .AAleft {
        height: 270px;
    }
    .acquAbout .row{
        flex-direction: column-reverse;
    }
    .acquAbout .col_reverse .row{
        flex-direction: column-reverse;
    }
    .acquatech_main {
        padding: 16px;
    }
    .aapara p {
        padding-left: 32px;
    }
    .aapara p i{
        left: 4px;
    }
    .A_notable_clients_ul li {
        margin-bottom: 8px;
        width: 100%;
    }
    .acqua_title {
        font-size: 18px;
    }
    .A_client_ul li {
        width: 100%;
    }
    .peoplebox {
        width: 100%;
        margin: 0;
        margin-bottom: 8px;
    }
    .gallerypage ul li {
        width: 100%;
    }
}

/* --------x-----------Acquatech---------x------- */
