label.error {
    color: red;
}

body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style-type: none;
}

.container {
    margin: 0 5%;
}


/* .animate {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animate--infinite {
  animation-iteration-count: infinite;
}

.animate--delay-1s {
  animation-delay: 1s;
}

.animation-close{
  animation: slideOutLeft 0.5s forwards;
} */


/* .animate--fast{
    animation-duration: 0.6s;
} */

.animate--slow {
    animation-duration: 0.5s;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-300px);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(300px);
    }
}


/* Class to show the menu */


/* .main-sidemenu.show {
  animation: slideInLeft 0.5s forwards;
  left: 0;
} */


/* Class to hide the menu  */


/* .main-sidemenu.hide {
  display: none;
 
} */


/* header */

.main-sidemenu {
    position: fixed;
    /* transition: transform 0.5s ease-in; */
    animation-name: slideInLeft;
    animation-timing-function: ease-in;
    z-index: 1000;
    top: 0;
    bottom: 0;
    width: 100%;
    transition: all 0.5 ease;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-duration: 0.6s;
}

nav {
    margin: 5px 3% 10px;
}

nav .logo {
    text-align: center;
}

.show_nav {
    display: none;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    height: 100%;
    width: 20%;
    background: linear-gradient( 180deg, rgba(33, 32, 30, 0.8) 50%, rgba(135, 131, 123, 0.3) 100%);
}

.main-sidemenu {
    display: none;
}

.main-sidemenu.hide_sidemenu {
    display: block;
}

.main-sidemenu.hide_sidemenu .logo button.close-tag {
    display: none;
}


/* #bg_id {
  background: linear-gradient(
    180deg,
    rgba(33, 32, 30, 0.8) 0%,
    rgba(135, 131, 123, 0.1) 100%
  );
  height: 700px;
} */

header .logo {
    background-color: white;
    padding: 15px 20px;
    text-align: center;
}

header .logo img {
    width: 90%;
    height: auto;
}


/* header .side-manu .menu-items { */


/* background: linear-gradient(180deg, rgba(33, 32, 30, 0.8) 0%, rgba(135, 131, 123, 0.4) 100%); */


/* } */


/* header .side-manu ul li {
    text-align: center;
} */

header .menu-items ul li a {
    font-family: Inter;
    font-size: 20px;
    font-weight: 700;
    line-height: 80px;
    text-align: left;
    color: rgba(255, 255, 255, 1);
}

header .menu-items ul li {
    border-bottom: 1px solid white;
    margin: 0 25px;
}


/* get quote module */

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 999;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: hidden;
    /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
    animation: fadeIn 0.5s ease-in-out;
    /* Fade in animation */
}


/* Modal Content/Box */

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    /* 15% from the top and centered */
    /* padding:0 30px 30px; */
    /* border: 1px solid #888; */
    width: 23%;
    /* Could be more or less, depending on screen size */
    animation: slideIn 0.5s ease-in-out;
    /* Slide in animation */
    border-radius: 20px;
}


/* Close Button */

.close {
    color: white;
    margin-right: 20px;
    margin-top: 15px;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


/* Fade in animation */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Slide in animation */

@keyframes slideIn {
    from {
        transform: translateY(-50px);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes slideOut {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-50px);
    }
}

.modal .modal-content form {
    text-align: center;
    margin: 0 20px 30px;
}

.modal .modal-content .head {
    background-color: rgba(2, 59, 74, 1);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.modal .modal-content h1 {
    text-align: center;
    margin-bottom: 5%;
    font-size: 20px;
    padding: 20px;
    color: white;
    font-family: 'Lato';
    margin: 0;
}

.modal .modal-content .textfield {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}


/* .modal .modal-content .textfield p {
  color: black;
  font-size: 16px;
  font-weight: 600;
  width: 50%;
} */

.modal .modal-content .textfield input {
    padding: 8px 10px;
    width: 100%;
    border-radius: 10px;
    border: 2px solid rgba(135, 131, 123, 0.4);
}

.modal .modal-content .textfield input::placeholder {
    font-weight: 600;
}

.modal .modal-content form button {
    background-color: rgba(2, 59, 74, 1);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.4s ease;
    margin-bottom: 20px;
}

.modal .modal-content form button:hover {
    padding: 10px 25px;
    color: #bb752b;
}


/* .video-sec{
    position: absolute;
} */

.video-sec video {
    width: 100%;
    height: auto;
}


/* =============================================================================================================================================== */


/* about-us */

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: rgba(255, 255, 255, 1);
    z-index: 999;
}

.main-nav .logo img {
    width: auto;
    height: 54px;
}

.main-nav .lines {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 40px;
    position: absolute;
    right: 0;
}

.main-nav .lines a.get {
    color: black;
    border-bottom: 1px solid black;
    font-family: Lato;
    font-size: 15px;
    font-weight: 500;
    line-height: 19.2px;
    text-align: left;
}

.main-nav .lines a.get:hover {
    font-weight: 600;
}

#main_sidemenu {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
    /* Fade in animation */
}

.main-sidemenu .logo button.close-tag {
    position: absolute;
    top: 0;
    right: 7px;
    font-family: "Lato";
    font-size: 20px;
    /* float: right; */
    /* margin-left: 100%; */
    font-weight: 600;
    color: black;
    border: none;
    background-color: white;
    cursor: pointer;
}


/* ========================================================================================================================================== */

.we-are {
    margin: 4% 0;
}

.we-are p {
    font-family: Lato;
    font-size: 18px;
    font-weight: 400;
    line-height: 33px;
    text-align: justify;
}


/* ========================================================================================================================================== */

.strenth {
    /* height: 500px; */
    width: 100%;
    background: rgba(244, 234, 228, 1);
}

.strenth img {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    /* padding:5% 0; */
    padding: 5% 0;
    width: 60%;
    height: auto;
}


/* ============================================================================================================================================= */

.leadership-img {
    margin: 2% 0 -4px;
    width: auto;
    position: relative;
    /* height: 640px; */
}

.leadership-img .leadership {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* gap: 5%; */
}

.leadership-img .leadership .lead-img {
    width: 50%;
}

.leadership-img .leadership .lead-img img {
    width: 100%;
    height: auto;
}

.leadership-img .leadership .content {
    width: 50%;
}

.leadership-img .leadership .content h3 {
    font-family: Raleway;
    font-size: 40px;
    font-weight: 700;
    line-height: 55px;
    text-align: center;
    margin: 0;
}

.leadership-img .leadership .content h4 {
    font-family: Lato;
    font-size: 28px;
    font-weight: 700;
    line-height: 55px;
    text-align: left;
    margin: 0;
}

.leadership-img .leadership .content p {
    font-family: Lato;
    font-size: 20px;
    font-weight: 400;
    line-height: 40px;
    text-align: justify;
    margin: 0;
}


/* =================================================================================================================================== */


/* contact us */

.banner {
    position: relative;
    /* height: 154px; */
}

.banner img {
    width: 100%;
    height: auto;
    background-size: cover;
    background-repeat: no-repeat;
}

.banner .banner_info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 20px auto;
    /* padding: 30px 0 30px; */
    text-align: center;
}

.banner .banner_info h1 {
    font-family: Raleway;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
    color: white;
    margin: 0 0 20px 0;
}

.banner .banner_info p {
    margin: 0;
}

.banner .banner_info a {
    font-family: Lato;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    color: white;
    margin: 0;
}

.banner .banner_info span.pages_name {
    font-family: Lato;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    color: white;
    margin: 0;
}

.contact_map {
    display: flex;
    /* justify-content: space-between; */
    /* align-items: center; */
    /* gap: 50px; */
    margin-top: -4px;
}

.contact_map .contact {
    width: 50%;
    margin: 2% 2% 0;
    /* padding: 20px 0; */
}

.contact_map .contact .map {
    width: 50%;
}

.contact_map .contact form {
    text-align: center;
    /* padding-bottom: 15px; */
}

.contact_map .form {
    padding: 10px 0;
}

.contact_map .con_colums {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.contact_map .con_colums .info {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    gap: 30px;
    width: 50%;
    margin: 10px 0;
}

.contact_map .con_colums .info a {
    color: rgba(2, 59, 74, 1);
    font-family: Lato;
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    text-align: left;
    cursor: pointer;
}

.contact_map .con_colums .info a:hover {
    border-bottom: 1px solid rgba(2, 59, 74, 1);
}

.contact_map .form h1 {
    font-family: Raleway;
    font-size: 40px;
    font-weight: 700;
    line-height: 55px;
    text-align: left;
    color: rgba(2, 59, 74, 1);
}

.contact_map .form .input_field {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0;
}

.contact_map .form .input_field input::placeholder {
    font-family: Lato;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-align: left;
    color: black;
}

.contact_map .form .input_field input:focus {
    border: 1px solid rgba(2, 59, 74, 1);
}

.contact_map .form  .enter_input
{
    width: 100%;
}



.contact_map .form .input_field input {
    width: 90%;
    padding: 10px;
    border: 1px solid rgba(2, 59, 74, 1);
}

.contact_map .form  label.error
 {
    color: red;
    display: inline-block;
    padding: 5px 10px;
    text-align: start;
    width: 100%;
}


.contact_map .form textarea {
    width: 95%;
    height: 100px;
    font-family: Lato;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-align: left;
    padding: 10px;
    border: 1.5px solid rgba(2, 59, 74, 5);
}

.contact_map .contact iframe {
    width: 700px;
    height: 620px;
}

.contact_map .form button {
    background-color: rgba(2, 59, 74, 1);
    color: white;
    box-shadow: 3px 2px 1px #bfced1;
    padding: 5px 20px;
    /* margin-bottom: 20px; */
    transition: all 0.5s ease;
    cursor: pointer;
    font-family: Lato;
    font-size: 15px;
    font-weight: 700;
    line-height: 25px;
    text-align: left;
    margin-top: 20px;
    border-radius: 10px;
}

.contact_map .form button:hover {
    padding: 5px 25px;
    color: #cfb482;
}

.contact_map .con_colums .info .info-content {
    width: 70%;
}

.contact_map .map {
    width: 50%;
}


/* =================================================================================================================================== */


/* partners */

.partners_sec {
    display: flex;
    /* justify-content: space-between; */
    gap: 10px;
    margin: 5% 0;
}

.partners_sec .partner_info {
    width: 32%;
}

.partners_sec .part_img {
    padding: 50px;
    background-color: rgba(242, 242, 242, 1);
}

.partners_sec .part_img img {
    width: 100%;
    height: auto;
}

.partners_sec .part_text {
    border: 1px solid rgba(2, 59, 74, 0.3);
    text-align: center;
    padding: 10px 30px 45px;
}

.partners_sec .part_text p {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    margin: 20px;
    width: auto;
    height: 350px;
}

.partners_sec .part_text span {
    font-family: Poppins;
    font-size: 22px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
}

.partners_sec .partner_info a {
    background-color: rgba(2, 59, 74, 1);
    color: white;
    box-shadow: 3px 2px 1px #bfced1;
    padding: 10px 15px;
    /* margin-bottom:20px; */
    transition: all 0.5s ease;
    font-family: Lato;
    font-size: 16px;
    font-weight: 700;
    line-height: 19.2px;
    text-align: left;
}

.partners_sec .partner_info a:hover {
    padding: 10px 25px;
    color: #cfb482;
}


/* ================================================================================================================== */


/* industry */

.industry {
    margin: 4% 0;
}

.industry h1 {
    font-family: Raleway;
    font-size: 40px;
    font-weight: 700;
    line-height: 55px;
    text-align: left;
    margin: 1% 0;
}

.industry p {
    font-family: Lato;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    margin: 0;
}

.industry .industry_name {
    margin: 2% 0;
}

.industry .industry_name .inds_sector {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 2% 0;
    overflow: hidden;
}

.industry .industry_name .inds_sector .names {
    position: relative;
    width: 32%;
    height: 250px;
    overflow: hidden;
}

.industry .industry_name .inds_sector .names p a {
    position: absolute;
    bottom: 50px;
    left: 30px;
    /* right: 30px; */
    font-family: Lexend;
    font-size: 25px;
    font-weight: 600;
    line-height: 40px;
    text-align: left;
    color: white;
}

.industry .industry_name .inds_sector .names img {
    width: 100%;
    height: 100%;
    transition: all 0.8s ease;
    backface-visibility: hidden;
}

.industry .industry_name .inds_sector .names img:hover {
    opacity: 0.8;
    transform: scale(1.1);
}


/* =================================================================================================================================== */


/* industry */

.product {
    margin: 4% 0;
}

.product h1 {
    font-family: Raleway;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    text-align: left;
    margin: 1% 0;
    color: rgba(2, 59, 74, 1);
}

.product p {
    font-family: Lato;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    margin: 0;
    color: rgba(2, 59, 74, 1);
}


/* 
.product .product_name {
  margin: 2% 0;
}

.product .product_name .product_sec {
  display: flex;
  gap: 20px;
  margin: 2% 0;
  overflow: hidden;
}

.product .product_name .product_sec .names {
  position: relative;
  width: 32%;
  height: 330px;
  overflow: hidden;
}

.product .product_name .product_sec .names p a {
  position: absolute;
  bottom: 50px;
  left: 30px;
  font-family: Lexend;
  font-size: 25px;
  font-weight: 600;
  line-height: 40px;
  text-align: left;
  color: white;
  width: auto;
}

.product .product_name .product_sec .names img {
  width: 100%;
  height: auto;
  transition: all 0.7s ease;
  backface-visibility: hidden;
}

.product .product_name .product_sec .names img:hover {
  opacity: 0.6;
  transform: scale(1.1);
} */

.descipt {
    position: relative;
    display: flex;
    /* justify-content: center; */
    padding: 40px 0 0;
    gap: 2%;
}

.descipt .card {
    height: 100%;
    width: 32%;
    /* margin: 10px 20px;
   box-shadow: 5px 5px 20px black; */
    overflow: hidden;
    position: relative;
}

.image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 3px;
}

.intro {
    padding: 30px 0 0;
    height: 65px;
    width: 100%;
    bottom: 10%;
    position: absolute;
    /* background: rgba(27, 27, 27, 0.1); */
    color: white;
    transition: 0.8s;
    overflow: hidden;
    border-top-left-radius: 1%;
    border-top-right-radius: 1%;
}

.descipt .card .intro p {
    text-decoration: none;
    color: white;
    /* background-color: rgba(227, 50, 55, 1); */
    text-align: center;
    /* padding: 16px; */
    margin: 0 20px 0 22px;
    font-family: Lexend;
    font-size: 25px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: left;
}

.descipt .card li {
    visibility: hidden;
    opacity: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.descipt .card li h5 {
    margin: 5px 0;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: left;
}

.descipt .card li button {
    border: 1px solid white;
    border-radius: 100px;
    padding: 4% 10%;
    color: white;
    background: unset;
    margin-top: 35px;
}

.descipt .card .intro li img {
    height: 20px;
}

.descipt .card .intro ul {
    margin: 10px 5%;
}

.descipt .card .intro ul li a {
    color: white;
    font-family: Lexend;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.5px;
    text-align: left;
}

.card:hover {
    cursor: pointer;
}

.card:hover .intro {
    height: 91%;
    bottom: 0;
    background: rgba(27, 27, 27, 0.1);
}

.card:hover li {
    opacity: 1;
    visibility: visible;
}


/* =================================================================================================================================== */


/* solution */

.solution-sec {
    margin: 0 0 2%;
}

.solution-sec h3 {
    font-family: Raleway;
    font-size: 28px;
    font-weight: 400;
    line-height: 40px;
    text-align: center;
    color: rgba(2, 59, 74, 1);
    margin: 2% 0;
}

.solution-sec h3 span {
    font-family: Raleway;
    font-size: 28px;
    font-weight: 800;
    line-height: 50px;
    text-align: center;
}

.solution-sec img.stucture {
    width: 50%;
    height: auto;
    margin: 0;
    display: block;
    margin: auto;
}


/* ====================================================================================================================== */

.pipes {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    /* margin: 3% 0; */
}

.pipes .pipe-img {
    width: 25%;
}

.pipes .pipe-img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}
section.pipe
{
    background-color:#ef7b00;
    padding: 40px 0px;
}

.pipes .pipeinfo {
    width: 75%;
    margin: 0 3%;
}
.pipes .pipeinfo.content
{
    width: 100%;
    margin: 0;
}

.pipes .pipeinfo p {
    font-family: Raleway;
    font-size: 27px;
    font-weight: 400;
    line-height: 45px;
    text-align: justify;
    color: #fff;
    margin: 0px;
}


/* =================================================================================================================================== */

.featurespec {
    display: flex;
}

.featurespec h1 {
    font-family: Raleway;
    font-size: 32px;
    font-weight: 700;
    line-height: 55px;
    text-align: left;
}

.featurespec ul li {
    display: flex;
    align-items: baseline;
    /* justify-content: space-between;
  align-items: center;
  gap: 10px; */
}

.featurespec ul li p {
    font-family: Poppins;
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    text-align: justify;
    padding-left: 10px;
    margin: 10px 0;
    width: 100%;
}

.featurespec ul li img {
    height: auto;
    /* width: 5%; */
}

.featurespec .feature {
    width: 50%;
    background: rgba(237, 219, 208, 1);
    padding: 3% 5%;
}

.featurespec .specification {
    width: 50%;
    background: rgba(244, 234, 228, 1);
    padding: 3% 5%;
}

.featurespec .specification ul li p span {
    /* width: 40%;
    display: inline-block; */
    font-family: Poppins;
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    text-align: justify;
}


/* =================================================================================================================================== */

.software-lastsec {
    margin: 3% 0;
}

.cluster_software {
    display: flex;
    justify-content: space-between;
    /* gap: 10%; */
}

.cluster_software h1 {
    font-family: Raleway;
    font-size: 25px;
    font-weight: 700;
    line-height: 50px;
    text-align: left;
    margin: 0 0 2%;
}

.cluster_software .cluster {
    width: 48%;
}

.cluster_software .cluster .images-sec {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    /* height: 300px; */
}

.cluster_software .cluster .img-col {
    background: rgba(242, 242, 242, 1);
    padding: 20px 40px;
    /* height: 330px;
    width: 50%; */
}

.cluster_software .cluster img {
    width: 100%;
    height: auto;
    /* padding: 20px 40px; */
}

.cluster_software .software {
    width: 48%;
}

.cluster_software .software img {
    width: 100%;
    height: auto;
    background: rgba(242, 242, 242, 1);
    padding: 10px;
}

.cluster_software .software .img-col {
    background: rgba(242, 242, 242, 1);
    padding: 20px 40px;
    /* height: 330px; */
    display: flex;
    align-items: center;
}


/* .cluster_software .software .images-sec{

height: 300px;

} */


/* =================================================================================================================================== */


/* footer */

footer {
    background-image: url("../images/footerbg.jpg");
    padding: 20px 0 0;
    margin-top: -4px;
}

footer .four-col {
    display: flex;
    justify-content: space-between;
    gap: 5%;
    padding: 3% 0 0;
    border-bottom: 1px solid white;
}

footer .four-col ul li a,
footer .four-col h4,
footer .four-col ul li,
footer .four-col ul li p {
    color: white;
    transition: all ease 0.3s;
    font-family: Archivo;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    text-align: left;
}

footer .cols p.contact_p {
    color: gray !important;
}

footer .four-col ul li a:hover {
    /* color: #bb752b;
  transform: scale(10px); */
    border-bottom: 1px solid white;
}

footer .four-col .cols {
    width: 25%;
}

footer .four-col .cols h4 {
    font-family: Poppins;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    text-align: left;
    margin: 0;
}

footer .four-col ul li {
    padding: 10px 0;
}

footer .four-col ul li a {
    font-family: Poppins;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    margin: 0;
}

footer .last_icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

footer .last_icons .last p {
    color: white;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
    margin: 0;
}

footer .last_icons .icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

footer .last_icons .icons a img.disimg {
    width: 80%;
    height: auto;
}

footer .last_icons .icons a img.noneimg {
    width: 80%;
    height: auto;
    display: none;
}

footer .last_icons .icons a:hover img.noneimg {
    display: inline-block;
}

footer .last_icons .icons a:hover img.disimg {
    display: none;
}


/* footer .last_icons .icons a:hover img.noneimg {
  display: block;
} */

@media only screen and (min-device-width:320px) and (max-device-width:480px) {
    .container {
        margin: 0 3%;
    }
    nav {
        margin: 5px 3%;
    }
    .main-nav {
        justify-content: space-between;
    }
    .main-sidemenu.hide_sidemenu {
        display: none;
    }
    .show_nav {
        display: block;
    }
    .main-sidemenu.hide_sidemenu .logo button.close-tag {
        display: block;
    }
    header {
        width: 100%;
        background: linear-gradient( 180deg, rgba(33, 32, 30, 0.8) 100%, rgba(135, 131, 123, 0.3) 100%);
    }
    header .logo {
        padding: 10px;
    }
    header .logo img {
        width: 50%;
    }
    header .menu-items ul li a {
        font-size: 15px;
        line-height: 70px;
    }
    .main-sidemenu .logo button.close-tag {
        float: right;
        margin-left: 0;
        top: 10px;
    }
    .main-nav .logo img {
        padding: 0;
        width: 60%;
        float: left;
    }
    .main-nav .lines {
        gap: 20px;
    }
    .main-nav .lines a.get {
        font-size: 13px;
    }
    .main-nav .lines img {
        width: 80%;
        height: auto;
    }
    .video-sec video {
        width: 100%;
        height: 90vh;
        object-fit: cover;
    }
    /* mobile about-us */
    .banner {
        height: auto;
    }
    .banner .banner_info h1 {
        font-size: 20px;
        line-height: 35px;
        margin: 0;
    }
    /* .banner .banner_info{
    padding: 15px 0;
  } */
    .banner .banner_info a {
        font-size: 14px;
        line-height: 24px;
    }
    .banner img {
        width: 100%;
        height: 100px;
    }
    .we-are {
        margin: 5% 0;
    }
    .we-are p {
        font-size: 15px;
        line-height: 25px;
    }
    .strenth {
        margin: 10% 0;
    }
    .strenth img {
        width: 90%;
        height: auto;
    }
    .leadership-img {
        margin: 0;
        height: auto;
    }
    .leadership-img .leadership {
        flex-direction: column-reverse;
    }
    .leadership-img .leadership .lead-img {
        width: 100%;
        position: relative;
        margin: 0 0 -4px;
    }
    .leadership-img .leadership .content {
        width: 100%;
        margin-bottom: 20px;
    }
    .leadership-img .leadership .content h3 {
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 5px;
    }
    .leadership-img .leadership .content h4 {
        font-size: 15px;
        line-height: 25px;
        font-weight: 800;
        margin-bottom: 5px;
    }
    .leadership-img .leadership .content p {
        font-size: 15px;
        line-height: 29px;
    }
    /* mobile product and solution */
    .product p {
        font-size: 13px;
        line-height: 23px;
        margin-bottom: 10px;
    }
    .product h1 {
        font-size: 17px;
        line-height: 30px;
        margin-bottom: 10px;
    }
    .descipt {
        flex-wrap: wrap;
        padding: 5px 0 0;
    }
    .descipt .card {
        width: 100%;
        margin: 10px 0;
        height: 300px;
    }
    .descipt .card .image
    {
        height: 100%;
    }
    .descipt .card .intro p {
        font-size: 17px;
        line-height: 27px;
    }
    .descipt .card li
    {
        visibility: visible;
        opacity: 1;
    }
    .intro {
        height: 100%;
        bottom:0;
        background: transparent;
        display: flex;
        align-items: center;
        width: 100%;
        flex-wrap: wrap;
    }
    .card:hover .intro {
        height: 37%;
        background: transparent;
    }
    /* .descipt .card .intro ul {
        display: none;
    } */
    /* mobile industry */
    .industry h1 {
        font-size: 20px;
        line-height: 30px;
    }
    .solution-sec {
        margin: 0 0 6%;
    }
    .solution-sec img.stucture
    {
        width: 100%;
    }
    .industry p {
        font-size: 14px;
        line-height: 24px;
        text-align: justify;
    }
    .industry p br {
        display: none;
    }
    .industry .industry_name .inds_sector {
        flex-wrap: wrap;
        margin: 5% 0;
    }
    .industry .industry_name .inds_sector .names {
        width: 100%;
        height: auto;
    }
    .industry .industry_name .inds_sector .names p a {
        font-size: 17px;
        bottom: 20px;
        right: 30px;
        left: 20px;
        line-height: 30px;
    }
    /* mobile tech - partner */
    .partners_sec {
        flex-wrap: wrap;
    }
    .partners_sec .partner_info {
        width: 100%;
    }
    .partners_sec .part_img {
        padding: 10px 80px;
    }
    .partners_sec .part_text {
        padding: 0 0 30px;
    }
    .partners_sec .part_text p {
        font-size: 14px;
        line-height: 24px;
        height: 100%;
        text-align: justify;
    }
    .partners_sec .part_text span {
        font-size: 15px;
        line-height: 25px;
    }
    .partners_sec .partner_info a {
        font-size: 13px;
    }
    /* mobile contact us */
    .contact_map {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-bottom: -4px;
    }
    .contact_map .contact {
        width: 100%;
        margin: 0 5%;
    }
    .contact_map .con_colums {
        flex-wrap: wrap;
        gap: 0;
    }
    .contact_map .con_colums .info {
        width: 100%;
        align-items: start;
        gap: 20px;
    }
    .contact_map .con_colums .info .info-img img {
        width: 30px;
        margin-top: 5px;
    }
    .contact_map .con_colums .info a {
        font-size: 14px;
    }
    .contact_map .form h1 {
        font-size: 25px;
        margin: 0;
    }
    .contact_map .map iframe {
        width: 100%;
        height: auto;
    }
    .contact_map .form .input_field {
        flex-wrap: wrap;
        margin-top: 0;
    }
    .contact_map .form textarea {
        width: 93%;
    }
    .contact_map .form button {
        font-size: 15px;
        padding: 5px 25px;
    }
    .contact_map .con_colums .info .info-content {
        width: 70%;
        /* width: 75%; */
    }
    .contact_map .map {
        width: 100%;
    }
    .contact_map .form .input_field input::placeholder {
        font-size: 14px;
    }
    /* product  & resolution */
    .solution-sec h3 {
        font-size: 15px;
        line-height: 25px;
    }
    .solution-sec h3 span {
        font-size: 15px;
        line-height: 25px;
    }
    .pipes {
        flex-direction: column-reverse;
    }
    .pipes .pipeinfo p {
        font-size: 15px;
        line-height: 25px;
        margin: 0 20px;
    }
    .pipes .pipe-img {
        width: 85%;
        margin: 0 auto;
    }
    .pipes .pipeinfo {
        width: 100%;
        margin: 0;
    }
    .featurespec {
        flex-wrap: wrap;
    }
    .featurespec .feature {
        width: 100%;
    }
    .featurespec .specification {
        width: 100%;
    }
    .featurespec h1 {
        font-size: 20px;
        line-height: 30px;
        margin: 10px 0;
    }
    .featurespec ul li {
        position: relative;
        /* margin: 10px 0; */
    }
    .featurespec ul li img {
        margin: 0;
        width: 8%;
        position: absolute;
        top: 15px;
    }
    .featurespec ul li p {
        padding-left: 35px;
        text-align: left;
        font-size: 13px;
        margin: 5px 0;
    }
    .featurespec .specification ul li p span {
        width: auto;
        font-size: 14px;
    }
    .software-lastsec {
        margin: 10% 0;
    }
    .cluster_software {
        flex-wrap: wrap;
    }
    .cluster_software .cluster {
        width: 100%;
        margin: 2% 0 10%;
    }
    .cluster_software .software {
        width: 100%;
    }
    .cluster_software h1 {
        font-size: 16px;
        line-height: 30px;
    }
    .cluster_software .cluster .img-col {
        padding: 20px 15px;
        height: auto;
    }
    .cluster_software .cluster .images-sec {
        gap: 10px;
    }
    .cluster_software .software img {
        padding: 0;
    }
    .cluster_software .software .img-col {
        height: auto;
        padding: 10px 20px;
    }
    /* mobile footer */
    footer {
        margin: 0;
    }
    footer .four-col {
        flex-wrap: wrap;
        gap: 0;
        padding: 0 0 10px;
    }
    footer .four-col .cols {
        width: 100%;
        margin-top: 20px;
    }
    footer .four-col .cols h4 {
        font-size: 17px;
        line-height: 30px;
    }
    footer .four-col ul li {
        padding: 5px 0;
        /* width: 130px; */
    }
    footer .four-col ul li a {
        font-size: 13px;
        line-height: 22px;
    }
    footer .cols p.contact_p {
        font-size: 13px;
        line-height: 20px;
        margin: 5px 0;
    }
    footer .last_icons {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: end;
        padding: 20px 0 10px;
    }
    footer .last_icons .last p {
        font-size: 13px;
        line-height: 23px;
    }
    footer .last_icons .icons {
        gap: 25px;
        width: 100%;
        justify-content: start;
    }
    footer .last_icons .icons img {
        width: 65% !important;
    }
    .modal-content {
        width: 90%;
        margin: 50% auto;
        border: none;
    }
    .modal .modal-content h1 {
        font-size: 15px;
    }
    .modal .modal-content form button {
        /* margin-bottom: 25px; */
        font-size: 14px;
    }
    .modal .modal-content .textfield input::placeholder {
        font-size: 11px;
    }
}