@import url('https://fonts.googleapis.com/css2?family=Jura:wght@600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    min-width: 100%;
    font-family: Segoe UI;
    background: rgb(247, 247, 247);
    overflow-x: hidden;
    font-size: 1rem;
}

a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    text-decoration: none;
}

.header {
    position: relative;
    background-color: #DBD8D9;
    background-position: center center;
    display: block;
    margin: 0px;
    padding: 25px 0;
    height: 80px;
    top: 0;
    border-bottom: 8px solid rgba(0, 141, 213, 0.6);
    /* font-family: Jura sans-serif; */
}

.logo1 {
    vertical-align: middle;
    border: 0;
    display: inline-block;
    max-width: 100%;
    height: auto;
    border-radius: 2px;
    overflow-clip-margin: content-box;
    overflow: clip;
    margin-left: 20px;
}

.navigation--top>li {
    list-style: none;
    position: relative;
    display: inline-block;
}

.navigation--top>.menu-item-has-children>a {
    padding: 0 8px;
    position: relative;
    font-size: 14.5px;
    font-weight: 600;
}

.navigation--top>li>a {
    padding: 0;
    text-decoration: none;
    display: block;
}

.navigation--top a {
    color: #999999;
}

.navigation--top>li {
    list-style: none;
    position: relative;
    display: inline-block;
    padding: 3px 2px;
}

.intainer1 {
    display: flex;
    justify-content: space-between;
}

.ham_icon {
    display: none;
    color: #007bff;
}

.ham_icon>i {
    font-size: 2rem;
}

.hide_ul {
    display: none;
}

.menu_item {
    display: none;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 12px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    margin-right: 0.5rem;
}

.menu_items {
    font-size: 14px;
    position: absolute;
    z-index: 1;
    top: 50px;
    right: 45px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.menu_items ul {
    text-align: center;
    padding: 0;
    margin: 0;
}

.menu_items ul li {
    list-style: none;
    padding: 15px 25px;
}

.menu_items ul li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .navigation--main2 {
        display: none;
    }

    #menu-top-menu {
        font-size: 12px;
    }

}

@media (max-width: 850px) {
    .logo2 {
        display: none;
    }

    .ham_icon {
        display: block;
    }

    .menu_item {
        display: block;
    }
}

@media (max-width: 400px) {
    .logo1 img {
        max-width: 60vw;
        height: auto;
    }
}




/* ================  sub_navigatin sectiono Styling ================= */

.navigation {
    position: fixed;
    z-index: 1;
    top: 0;
    background: #d9d9d9f9;
    width: 84%;
    height: auto;
    border-radius: 0 0 0.5rem 0.5rem;
    border-bottom: 4px solid rgba(0, 141, 213, 0.6);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 15px 30px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    transition: 1s;
    display: none;
    padding-top: 0.5rem;
    height: 2.8rem;
}

.navigation ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.navigation a {
    text-decoration: none;
    color: #000;
    font-size: 0.8rem;
}

.navigation a:hover {
    text-decoration: underline;
    color: rgb(47, 156, 234);
}

.active a {
    font-weight: 600;
    color: rgb(47, 156, 234);
    text-decoration: underline;
}


/* ================ HeroComp sectiono Styling ================= */

.heroMain__bg {
    /* border: solid 2px red; */
    width: 100vw;
    height: 50vh;
    background: url(/images/aboutImg/aboutbg2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /* filter: blur(2px); */
    position: relative;
}

.heroMain__div {
    position: absolute;
    /* border: solid 2px #fff; */
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #2c2c2c88;
    padding: 3%;
}

.heroMain__h1 {
    color: #fff;
    position: absolute;
    top: 70%;
    left: 5%;
}

.heroMain__line {
    width: 90%;
    height: 2px;
    margin: 0 5%;
    background: #fff;
    position: absolute;
    top: 85%;
    /* border: solid 2px red; */
}


/* ================ AboutInfoComp sectiono Styling ================= */

.AboutInfo__section {
    /* border: solid 2px red; */
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.AboutInfo__section_p {
    /* border: solid 2px green; */
    margin-top: 0.5rem;
    font-size: 1rem;
}


/* ================ SolutionComp sectiono Styling ================= */

.solution__contaier {
    /* border: solid; */
}

.solution__grid {
    /* border: solid 2px green; */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.solution__card {
    border: solid 1px #bfbfbf;
    /* border: solid 2px red; */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.solution__card:hover {
    border: solid 1px #616161;
    background: rgb(238, 238, 238);
}

.solution__card>h4 {
    /* border: solid; */
    font-size: 1rem;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    margin-top: 0.5rem;
}

.solution__contaier>p {
    margin-top: 1rem;
}

/* ================ Industries Served sectiono Styling ================= */

.Industries__container {
    /* border: solid 2px green; */
    margin-top: 2rem;
}

.Industries__h2 {
    /* font-size: 1.5rem; */
    margin: 1rem 0;
    padding: 10px 0;
    text-align: center;
    border-bottom: solid;
}

.Industries__cardGrid {
    /* border: solid 2px green; */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.Industries__card {
    border: solid 1px #969696;
    border-radius: 0.5rem;
    border-top-right-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
    width: 100%;
    overflow: hidden;
}

.Industries__card:hover {
    border: solid 1px #363636;
}

.Industries__img_div {
    /* border: solid 2px red; */

}

.Industries__img {
    /* border: solid 2px red; */
    width: 100%;
    height: 10rem;
    object-fit: cover;
    filter: contrast(80%) brightness(70%) blur(0.5px);
}

.Industries__h5 {
    padding: 10px;
    font-size: 1rem;
    text-align: center;
}





@media only screen and (max-width: 1300px) {
    .solution__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (max-width: 1200px) {
    .Industries__cardGrid {
        grid-template-columns: repeat(3, 1fr);
    }
}



@media only screen and (max-width: 1024px) {
    .heroMain__div {
        top: 50%;
        left: 50%;
    }

    .heroMain__line {
        top: 85%;
    }

    .heroMain__desc_p {
        font-size: 0.9rem;
    }
}

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


@media only screen and (max-width: 768px) {
    .solution__grid {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 600px) {
    .Industries__cardGrid {
        grid-template-columns: 1fr;
    }
}




/* ================ Footer sectiono Styling ================= */

.footer__mainContainer {
    /* border: solid 2px green; */
    padding: 3rem 8%;
    background: #dbd8d9;
}

.footer_container {
    /* border: solid 2px red; */
    width: 100%;
    background: #dbd8d9;
    font-size: calc(100% - 5%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* padding: 2rem 3rem; */
    padding: 0 8%;
}

.footer_download_div,
.footer_download_div,
.footer_solutionLink_div,
.footer_contact_div {
    /* border: solid; */
    display: flex;
    flex-direction: column;
    align-items: start;
    padding-left: 3%;
}

.footer_download_div a,
.footer_download_div a,
.footer_solutionLink_div a,
.footer_contact_div a {
    color: #008dd5;
    margin-top: 0.5rem;
}

.footer_download_div,
.footer_download_div,
.footer_solutionLink_div,
.footer_contact_div span {
    color: black;
}

.copyright {
    /* border-top: 8px solid rgba(0, 141, 213, 0.6); */
    text-align: left;
    font-size: 12px;
    padding-left: 8%;
    background: #DBD8D9;
}



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


    .footer_container {
        grid-template-columns: 1fr 1fr;
    }


    .footer_contact_div {
        margin-top: 3rem;
    }
    .copyright {
        margin-top: 2.5rem;
    }
}

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

@media only screen and (max-width: 600px) {
    .footer_container {
        grid-template-columns: 1fr;
    }

    .footer_solutionLink_div {
        margin-top: 3rem;
    }
}

@media only screen and (max-width: 460px) {
    .navigation ul {
        flex-wrap: nowrap;
        margin: 0.5rem;
        margin-top: 0.5rem;
        justify-content: space-evenly;
    }

    .navigation a {
        font-size: 0.8rem;
    }

    .navigation ul li {
        margin: 0;
    }
}

@media only screen and (max-width: 400px) {
    .navigation {
        padding: 0;
    }
}