*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family:Arial, Helvetica, sans-serif;
}

::-webkit-scrollbar{
    width: 12px;
}

::-webkit-scrollbar-thumb{
    background-color: rgb(102, 102, 102);
    border-radius: 10px;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.6s;
    padding: 20px 40px;
    z-index: 1000;
    background-color: rgba(0,0,0,.3);
}

.logo-space{
    height: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.logo img{
    width: 170px;
    margin: 10px 0;
}

.navbar{
    display: flex;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.navbar ul{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar ul li{
    position: relative;
    list-style: none;
}

.navbar ul li a{
    position: relative;
    text-decoration: none;
    color: rgb(0, 0, 0);
    transition: 0.6s;
}

.navbar h1{
    font-size: 18px;
    padding: 10px;
}

.navbar ul li a:hover{
    color: rgb(55, 102, 255);
}

header.sticky ul li a{
    color: rgb(0, 0, 0);
}

header.sticky ul li a:hover{
    color: rgb(55, 102, 255);
}

header.sticky{
    padding: 0px 50px;
    background-color: #fff;
}

.navbarx{
    display: flex;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.navbarx ul{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbarx ul li{
    position: relative;
    list-style: none;
}

.navbarx ul li a{
    position: relative;
    text-decoration: none;
    color: rgb(255, 245, 245);
    transition: 0.6s;
}

.navbarx h1{
    font-size: 18px;
    padding: 10px;
}

.navbarx ul li a:hover{
    color: rgb(55, 102, 255);
}

.header2{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.6s;
    padding: 0px 50px;
    z-index: 1000;
    background-color: #fff;
}

.header2.navbar{
    display: flex;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.header2.navbar ul{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header2.navbar ul li{
    position: relative;
    list-style: none;
    color: #000;
}

.header2.navbar h1{
    font-size: 18px;
    padding: 10px;
    color: #000;
}

.header2.navbar a{
    text-decoration: none;
    transition: .5s;
    margin: 0 5px;
    border-radius: 5px;
    color: rgb(0, 0, 0);
}

.header2.navbar a:hover{
    color: rgb(55, 102, 255);
}


.slide0{
    margin-bottom: 20px;
    height:auto;
    width: 250px;
    height: 100vh;
    position: absolute;
    transition: .5s ease;
    top: 0;
    right: 0;
    display: flex;
    transform: translateX(250px);
    backdrop-filter:blur(5px);
}

.slide0 h1{
    color: rgb(0, 0, 0);
    font-weight: 700;
    text-align: right;
    padding: 10px 0;
    padding-right: 70px;
    pointer-events: none;
    padding-top: 17px;
}

.slide0 a{
    color: rgb(255, 255, 255);
    display: flex;
    font-weight: 500;
    padding: 8px 0;
    font-size: 22px;
    justify-content: center;
    text-transform: capitalize;
    text-decoration: none;
    transition: .2s ease-out;
}

.slide ul{
    margin-top: 100px;
}

.slide0 li{
    list-style: none;
    margin: 20px 20px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px black solid;
    padding: 10px 20px;
    border-radius: 15px;
}

.slider-menu input{
    display: none;
    visibility: hidden;
    -webkit-appearance: none;
}

.toggle{
    position: absolute;
    height: 30px;
    width: 30px;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    cursor: pointer;
    border-radius: 2px;
    background-color: rgb(255, 255, 255);
    z-index: 10000001;
    display: none;
} 

.toggle .common{
    position: absolute;
    height: 2px;
    width: 20px;
    background: #000;
    border-radius: 50px;
    transition: .3s ease;
}

.top_line{
    top: 30%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.middle_line{
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.bottom_line{
    top: 70%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.slider-menu input:checked ~ .slide0{
    display: inline-block;
}

.slider-menu input:checked ~ .toggle .top_line{
    left: 2px;
    top: 14px;
    width: 25px;
    transform: rotate(45deg);
}

.slider-menu input:checked ~ .toggle .bottom_line{
    left: 2px;
    top: 14px;
    width: 25px;
    transform: rotate(-45deg);
}

.slider-menu input:checked ~ .toggle .middle_line{
    opacity: 0;
    transform: translateX(-20px);
}
.slider-menu input:checked ~ .slide0{
    transform: translateX(0);
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}


.home{
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.home .slide{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: none;
    animation: slide 2s ease;
    padding: 0 15px;
    z-index: 1;
}

.home .slide video{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    object-fit: cover;
    width: 100%;
    pointer-events: none;
}

.home .slide.active{
    display: flex;
}

.home .slide.active video{
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    height: 100vh;
    width: 100%;
    pointer-events: none;
}

@keyframes slide{
    0%{
        transform: scale(1.1);
    }
    100%{
        transform: calc(1);
    }
}

.container{
    max-width: 1170px;
    margin: auto;
    flex-grow: 1;
}

.home .caption{
    width: 50%;
    margin-left: 50px;
}

.home .caption h1{
    font-size: 45px;
    color: #fff;
    margin: 0;
}

.home .slide.active .caption h1{
    opacity: 0;
    animation: captionText .5s ease forwards;
    animation-delay: 1s;
}

.home .caption p{
    font-size: 18px;
    margin: 15px 0 30px;
    color: #ccc;
}

.home .slide.active .caption p{
    opacity: 0;
    animation: captionText .5s ease forwards;
    animation-delay: 1.2s;
}

.home .caption a{
    display: inline-block;
    padding: 10px 30px;
    background-color: rgb(255, 255, 255);
    text-decoration: none;
    border-radius: 8px;
    color: rgb(0, 0, 0);
}

.home .slide.active .caption a{
    opacity: 0;
    animation: captionText .5s ease forwards;
    animation-delay: 1.4s;
}

@keyframes captionText{
    0%{
        opacity: 0; transform: translateX(-100px);
    }
    100%{
        opacity: 1; transform: translateX(0px);
    }
}

.home .controls .prev,
.home .controls .next{
    display: none;
    position: absolute;
    z-index: 2;
    top: 50%;
    height: 40px;
    width: 40px;
    margin-top: -20px;
    color: #fff;
    background-color: #767676;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    cursor: pointer;
    transition: all .5s ease;
}

.home .controls .prev:hover,
.home .controls .next:hover{
    background-color: #000;
}

.home .controls .prev{
    left: 0;
}

.home .controls .next{
    right: 0;
}

.home .indicator{
    position: absolute;
    left: 50%;
    bottom: 30px;
    z-index: 2;
    transform: translateX(-50%);
    cursor: pointer;
}

.home .indicator div{
    display: inline-block;
    width: 12px;
    height: 12px;
    color: #ffffff;
    background-color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 12px;
    margin: 0 3px;
    overflow: hidden;
}

.home .indicator div.active{
    background-color:rgb(22, 22, 255);
    color: rgb(22, 22, 255);
}

.about{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content:center;
    align-items: center;
}
.about video{
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100vh;
    pointer-events: none;
}

.abox{
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    z-index: 1;
    background-color: rgba(0,0,0,.5);
    padding: 20px;
    border-radius: 30px;
    margin: 20px;
}

.abox h1{
    margin: 0;
    padding: 0;
    font-size: 80px;
    color: rgb(255, 255, 255);
    text-align: center;
}

.line{
    width: 100%;
    height: 5px;
    background-color: #fff;
}

.about2{
    width: 100%;
    min-height: 100vh;
    background:rgba(0,0,0,.3) url(about2-3.jpg);
    background-blend-mode: darken;
    background-position:top;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.part1{
    width: 45%;
    padding-left: 50px;
}

.part1 h2{
    font-size: 50px;
    color: rgb(255, 255, 255);
    margin-bottom: 15px;
    border-bottom: #ffffff 2px solid;
    overflow: hidden;
}

.part1 h1{
    color: white;
    font-size: 16px;
}

.part1 li{
    font-size: 16px;
    color: rgb(255, 255, 255);
    line-height: 20px;
    margin: 24px 0;
}

.part1 a{
    text-decoration: none;
    background-color: rgb(255, 255, 255);
    padding: 10px 18px;
    border-radius: 15px;
    font-size: 17px;
    color: rgb(0, 0, 0);
    transition: .5s;
    display: flex;
    margin-top: 30px;
    width: 125px;
}

.part1 a:hover{
    background-color: rgb(156, 156, 156);
}

.about2-logo{
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.about2-logo img{
    width: 300px;
}

.about3{
    padding: 30px;
    background: rgba(0,0,0,.2) url(why2.jpg);
    background-blend-mode: darken;
    background-position:center;
    background-size: cover;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.part0{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.part0 h1{
    text-align: center;
    color: white;
    font-size: 50px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: #fff 1px solid;
}

.part0 p{
    color: #fff;
    width: 70%;
    line-height: 23px;
    margin: auto;
    text-align: center;
}

.products{
    background-image: url(brand-2.jpg);
    background-position:center;
    background-size: cover;
    padding: 50px 0;
}

.allcards{
    padding-top: 50px;
    padding-bottom: 30px;
}

.title{
    display: block;
    text-align: center;
    font-size: 3em;
}

.title h2{
    font-size: 1.5em;
    width: 100%;
    color:white;
}

.title h2:hover{
    cursor: default;
}

.card{
    background-color: rgb(255, 255, 255);
    width: 20em;
    border-radius: 15px;
    padding: 15px;
    margin: 22.5px;
    transition: 0.5s ease;
    font-size:small;
    text-decoration: none;
}

.card:hover{
    transform: scale(1.1);
}

.card2:hover{
    transform: scale(1.1);
}

.t3{
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap
}

.allcards{
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap
}

.ph1 img{
    width: 300px;
    height: 110px;
    border-radius: 10px;
}

.ph2 img{
    width: 230px;
    height: 70px;
    border-radius: 10px;
}

.ph3 img{
    width: 235px;
    padding-top: 15px;
}

.ph4 img{
    width: 380px;
    height: 100px;
    border-radius: 10px;
}

.ph1{
    display: flex; 
    justify-content: center;
}

.ph2{
    display: flex; 
    justify-content: center;
    padding: 20px 0;
}

.ph3{
    display: flex; 
    justify-content: center;
    padding: 5px 0;
}

.ph4{
    display: flex; 
    justify-content: center;
    padding-top: 5px;
}


.osilan{
    margin-top: 60px;
    padding-bottom: 20px;
    background-image:url(back11.jpg);
    background-position: center;
    background-size: cover;
    cursor: default;
    min-height: 90vh;
}

.the-top h2{
    margin: auto;
    text-align: center;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    width: 70%;
}

.the-top a{
    text-decoration: none;
    color: rgb(8, 177, 255);
    font-size: 2.3em;
    transition: .3s ease;
}

.the-top a:hover{
    color: rgb(254, 137, 4);
}

.the-top span{
    color: white;
    font-size:1.4em;
}

.clints{
    display: flex;
    width: 80%;
    margin: auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.client1{
    padding: 1px;
    background-color: #fff;
    border-radius: 50%;
    margin: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
}

.client1 img{
    width: 150px;
}

.client2{
    padding: 1px;
    background-color: #fff;
    border-radius: 50%;
    margin: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
}

.client2 img{
    width: 120px;
    margin-right:3px;
}

.client3{
    padding: 1px;
    background-color: #fff;
    border-radius: 50%;
    margin: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
}

.client3 img{
    width: 190px;
    margin-left:16px;
    margin-top: 15px;
}

.client4{
    padding: 1px;
    background-color: #fff;
    border-radius: 50%;
    margin: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
}

.client4 img{
    width: 180px;
    margin-bottom: 6px;
}

.client5{
    padding: 1px;
    background-color: #fff;
    border-radius: 50%;
    margin: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
}

.client5 img{
    width: 140px;
    margin-bottom: 15px;
}


.client6{
    padding: 1px;
    background-color: #fff;
    border-radius: 50%;
    margin: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
}

.client6 img{
    width: 130px;
}


.client7{
    padding: 1px;
    background-color: #fff;
    border-radius: 50%;
    margin: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
}

.client7 img{
    width: 170px;
}


.client9{
    padding: 1px;
    background-color: #fff;
    border-radius: 50%;
    margin: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
}

.client9 img{
    width: 230px;
}


.client10{
    padding: 1px;
    background-color: #fff;
    border-radius: 50%;
    margin: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
}

.client10 img{
    width: 170px;
}

.client11{
    padding: 1px;
    background-color: #fff;
    border-radius: 50%;
    margin: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
}

.client11 img{
    width: 170px;
}


.installation{
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background:rgba(0,0,0,.3) url(installation2.jpg);
    background-blend-mode: darken;
    background-position: center;
    background-size: cover;
}

.inst-title{
    display: flex;
    min-height: 15vh;
    justify-content: center;
    align-items: center;
}

.inst-title h1{
    color: #fff;
    font-size: 50px;
}

.inst-content{
    width: 100%;
    min-height:85vh;
    display: flex;
    flex-direction: row;
}

.inst-con1{
    margin-top: 30px;
    width: 35%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;
    padding-bottom: 20px;
}

.inst-con1 p{
    width: 80%;
    color: rgb(255, 255, 255);
    margin: 10px;
    line-height: 25px;
}

.inst-con2{
    width: 30%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.imx1{
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-radius: 50%;
    box-shadow: 20px 20px 50px rgba(0,0,0,.5);
    margin: 15px 0;
    background: url(righ6.jpg);
    background-position: center;
    background-size: cover;
}

.imx2{
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-radius: 50%;
    box-shadow: 20px 20px 50px rgba(0,0,0,.5);
    margin: 15px 0;
    background: url(righ5.jpg);
    background-position: center;
    background-size: cover;
}

.imx3{
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-radius: 50%;
    box-shadow: 20px 20px 50px rgba(0,0,0,.5);
    margin: 15px 0;
    background: url(righ7.jpg);
    background-position: center;
    background-size: cover;
}

.inst-con3{
    margin-top: 30px;
    width: 35%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;
    padding-bottom:20px ;
}

.inst-con3 p{
    width: 80%;
    color: rgb(255, 255, 255);
    margin: 10px;
    line-height: 25px;
}

.video{
    background-color: rgb(237, 234, 234);
}

.tai1{
    background: url(vid0.jpg);
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.tai1 h1{
    color: white;
    font-size: 40px;
}

.ine1{
    display: flex;
    padding: 20px 0;
    justify-content: center;
    align-items: center;
}

.ine1 video{
    width: 350px;
}


footer{
    width: 100%;
    position: relative;
    background:rgba(0,0,0,.3) url(footer4.jpg);
    background-position: center;
    background-blend-mode: darken;
    background-size: cover;
    color: #fff;
    padding: 20px 0 10px;
    font-size: 13px;
    line-height: 20px;
    cursor: default;
}

.row{
    width: 90%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.col{
    flex-basis: 33%;
    padding: 10px;
}

.xx img{
    width: 170px;
}


.col:nth-child(2), .col:nth-child(3){
    flex-basis: 15%;
}

.col h2{
    font-size: 3em;
    position: relative;
    margin-bottom: 30px;
}

.col h3{
    width: fit-content;
    margin-bottom: 30px;
    position: relative;
}

.col a{
    text-decoration: none;
    color: #fff;
    transition: .5s;
}

.col a:hover{
    color: rgb(201, 201, 201);
}

.email-id{
    width: fit-content;
    margin: 20px 0;
}

.col li{
    list-style: none;
    margin-bottom: 12px;
}

.col li a{
    text-decoration: none;
    color: #fff;
}

.col form{
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;
}

.col form input{
    width: 100%;
    background: transparent;
    color: #ccc;
    border: 0;
    outline: none;
}

.col form button{
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
}

.col h1{
    font-size: 16px;
    color: #fff;
}

.social-icon{
    width: 200px;
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.so1{
    margin: 0 5px;
}

.so1 img{
    width: 40px;
    height: 40px;
}

.so2{
    margin: 0 5px;
}

.so2 img{
    width: 46px;
    height: 46px;
}

.so3{
    margin: 0 5px;
}

.so3 img{
    width: 40px;
    height: 40px;
}

.so4{
    margin: 0 5px;
}

.so4 img{
    width: 40px;
    height: 40px;
}

hr{
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}

.underline{
    width: 100%;
    height: 5px;
    background: rgb(119,152,193);
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}

.underline span{
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position:absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}

@keyframes moving{
    0%{
        left: -20px;
    }
    100%{
        left: 100%;
    }
}



.container2{
}

.main3{
    display: flex;
    justify-content:center;  
}

.main2:hover{
 cursor: default;
}

.m1{
position: absolute;
top: 120px;
left:5%;
}

.main2 h2{
display: inline-block;
color: white;
font-size: 2.6em;
font-weight: 700;
margin-bottom: 7px;
}

.main2 p{
    color: white;
    font-size: 21px;
    font-weight: 450;
    padding: 0px 10px;
    width: 60%;
    margin-bottom: 15px;
 }

.ph5{
position: absolute;
top: 100px;
left: 75%;
}

.ph5 img{
    width: 260px;
    height: 260px;
}

.l4{
    text-decoration: none;
    color: black;
    background-color:white;
    padding: 8px 15px;
    border-radius: 20px;
    transition: 0.5s;
    font-size: .8em;
}

.l4 a:hover{
    transform: scale(1.2);
    cursor: pointer;
}

.in2{
    font-size: .8em;
    padding: 8px;
    color: rgb(6, 6, 6);
    border: 3px rgb(231, 13, 13);
    border-radius: 15px;
}

.ioc{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: absolute; 
    bottom: 0;
    left: 18%;    
}
 
.w1{
width: 8em;
margin: 0px 30px;
}

.ioc img{
    width: 120px;
    height: 120px;
    transition: .5s;
}


.w1 img:hover{
    transform: scale(1.1);
    cursor: pointer;
}

.dow{
    display: flex;
    justify-content: center;
    text-decoration: none;
    margin: 10px 0;
}

.in2:hover{
    cursor: pointer;
}

.imagebar{
    border-radius:10px;
}

.img2{
    border-radius: 10px;
}

.head2{
    background-image: url(back6.jpg);
    background-position: center;
    background-size: cover;
    width: 100%;
    min-height:90vh;
    padding-top: 10px;
    margin-top: 60px;
}

.menu3{
    align-items: center;
}

.t9 img{
    width: 150px;
    height: 80px;
    border-radius: 15px;
    background-color: white;
    padding: 10px;
    margin-left: 20px;
}

.t9{
    text-align: left;
    padding: 10px;
}

.t11 img{
    width: 170px;
    height: 70px;
    border-radius: 10px;
}

.t11{
    text-align: left;
    padding: 20px;
}

.t13 img{
    width: 300px;
    border-radius: 24px;
    background-color: white;
}

.t13{
    text-align:left;
    padding: 20px 15px;
}

.t8 img{
    width: 200px;
    margin: 10px 42px;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
}

.t7 img{
    margin: 20px 40px;
    background-color: white;
    padding: 10px;
    width: 250px;
    border-radius: 15px;
}

.t7{
    text-align: left;
}

.t0{
    text-align: center;    
    font-size: 2em;
    color: white;
    padding-bottom: 20px;
    padding-top: 25px;
}

.t5{
    text-align: center;    
    font-size: 2em;
    color: white;
    padding-bottom: 20px;
    padding-top: 25px;
}

.t6{
    padding-left:185px;
    font-size: 2em;
    color: white;
}

.t0:hover{
    cursor:default;
}

.menu2{
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 20px;
}

.ro1{
    width: 250px; 
    height: 360px;
    margin: 10px 15px;
    box-shadow: 20px 20px 50px rgba(0,0,0,.5);
    background: rgba(255,255,255,0.1);
    border-top: 1px solid rgba(255,255,255,05);
    border-left: 1px solid rgba(255,255,255,05);
    backdrop-filter:blur(5px);
    border-radius: 15px;
    text-decoration: none;
    transition: .1s;
}

.cd1 img{
    padding: 15px;
    width: 240px;
    height: 240px;
    border-radius:50%;
}

.cd1{
    text-align: center;
}

.ce1{
    text-align: center;
    font-size: 1.3em;
    padding: 20px 0;
    color: white;
}



.head2{
    background-color: rgb(167, 167, 168);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: auto;
}

.menu4{
    display: flex;
    align-items: center;
    justify-content: center;
}

.cd2 img{
    width: 300px;
}

.ro2{
    padding: 20px;
}




.head3{
    margin-top: 60px;
    background-color: rgb(225, 225, 225);
    height:100%;
}

.container3{
    margin: auto;
}

.iil{
    background-image: url(back4.jpg);
    background-position: center;
    background-size: cover;
    overflow:hidden;
    position: relative;
}

.asf{
    text-align: center;
    padding: 5px 10px;
    margin: 0 90px;
    border: 1px black solid;
    position:absolute ;
    left:0;
    background-color:rgb(255, 255, 255);
    overflow: hidden;
}

.asf img{
    width: 120px;
    height:61px;
}



.se1{
    text-align: center;
    font-size: 1.7em;
    font-weight: 800;
    padding: 15px 0;
    color:white;
}

.se1:hover{
    cursor:default;
}

.car1{
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 15px;
}

.caar1{
    width: 250px;
    margin: 15px;
    text-decoration:none;
    color: white;
    background-color: #fff;
    border: 1px black solid;
    border-radius: 5px;
    transition: .5s;
}

.caar1:hover{
    text-decoration:underline black;
    transform: scale(1.1);
}

.ima1 img{
    display: flex;
    width: 248px;
    padding: 10px;
    border-bottom:1px black solid;
}

.o1{
    text-align: center;
    padding: 13px;
    color: black;
    font-size: 13px;
}



.container4{
    margin: auto;
    height: auto; 
    background-color: white;
}

.head4{
    margin-top: 60px;
    background-color: white;
    height:89vh;
}

.to1{
    align-items: center;
    background-image: url(back4.jpg);
    background-position:left;
    background-size:cover;
}

.a1:hover{
    cursor:default;
}

.a1{
    text-align: center;    
    padding: 15px 30px;
    font-size: 1.7em;
    font-weight: 800;
    padding: 20px 0;
    color:white;
}

.a1 a{
    text-decoration: none;
    color:white;
}

.z1{
    position: absolute;
    padding: 20px;
}

.z-1 img{
    width: 100px;
}

.z1 a{
    text-decoration: none;
    font-size: 30px;
    color: #fff;
}

.con1{
    display: flex;
    align-items: center;
    padding-top: 20px;
}

.con1:hover{
    cursor: default;
}

.phot1 img{
    width: 430px;
    padding: 10px 40px;
}

.des1 h3{
    font-size: 1.8em;
    padding-bottom: 35px;
    color: rgb(13,138,200);
}

.des1 h1{
    font-size: 1.4em;
    padding:10px 0;
    color:rgb(227,6,20);
}

.des1 h2{
    font-size: 1.1em;
    padding: 10px 0;
    color: rgb(91, 91, 91);
}

.des1 p{
    font-size: 1.8em;
    padding: 10px 0;
}

.des1 li{
    padding-bottom: 10px;
    font-size: 1.2em;
}


@media(max-width:900px){

    .head11{
        padding: 0px 20px;
    }
    
    .logo img{
        width: 150px;
        margin: 15px 0;
    }

    .navbar{
        right: 2%;
    }

    .navbar h1{
        font-size: 16px;
        padding:5px;
    }

    .navbar2{
        right: 2%;
    }
    
    .navbar2 h1{
        font-size: 16px;
        padding:5px;
    }

    .about2-logo img{
        width: 250px;
    }

    .abox h1{
       font-size: 60px;
    }

    
}

@media(max-width:700px){

    body{
    }
    
    header{
        padding: 20px 20px;
    }

    header.sticky{
        padding:0 20px;
    }

    .header2{
        padding: 0 20px;
    }

    .head11{
        padding: 0px 20px;
        background-color: rgb(255, 255, 255);
        position: fixed;
    }

    .logo{
        font-size: 30px;
        color: #000;
    }

    .navbarx{
        display: none;
    }

    .navbar2{
        display: none;
    }

    .toggle{
        display: flex;
    }

    .slide{
        display: flex;
    }

    .logo img{
        width: 150px;
    }

    .links{
        float: none;
        position: fixed;
        z-index: 9;
        left: 0;
        right: 0;
        top: 100px;
        bottom: 100%;
        height: auto;
        width: auto;
        flex-direction: column;
        background-color: rgba(0,0,0,.8);
        overflow: hidden;
        transition: all .5s ease-in-out;
    }

    .links a{
        font-size: 20px;
        color: #ccc;
    }

    .icon-burger{
        display: block;
    }

    nav-toggle:checked~.links{
        bottom: 0;
    }

    .as1{
        padding: 25px;
        font-size: 30px;
    }

    .as1 h3{
        font-size: 2em;
    }

    .as2{
        padding: 17px;
    }

    .asd1{
        width: 250px;
        height: 250px;
    }

    .asd1 img{
        width: 250px;
    }

    .asd1 img:hover{
        width: 250px;
    }

    .asd2{
        margin: 10px 0;
        width: 250px;
        display: flex;
        text-align: center;
    }

    .asd2 h2{
        font-size: 30px;
        padding: 10px;
    }

    .abox h1{
        font-size: 40px;
     }

     .about{
     }

    .about2{
        min-height: 60vh;
        flex-direction: column;
        display: flex;
        align-items:center;
        justify-content: start;
        padding: 70px 15px;
    }

    .part0 h1{
        font-size: 40px;
    }

    .part1{
        width: 100%;
        padding-left: 15px;
        
    }

    .about2-logo{
        width: 100%;
        height: auto;
    }

    .products{
        padding: 30px 0;
    }

    .allcards{
        padding-top: 30px;
        padding-bottom: 15px;
    }

    .title h2{
        font-size: 5rem;
    }

    .card{
        width: 25em;
        height: 11em;
        padding: 10px;
        margin: 20px 10px;
    }

    .ph1 img{
        width: 20em;
        height:10em;
    }

    .ph2 img{
        width: 22em;
        height: 6em;
    }

    .ph3 img{
        width: 23em;
    }

    .ph4 img{
        width: 23em;
        height: 12em;
        padding-bottom: 3em;
    }

    .the-top h2{
        width: 90%;
    }

    .the-top a{
        font-size: 2.7em;
    }

    .the-top span{
        font-size: 1.5em;
    }

    .clints{
        width: 95%;
    }

    .client1{
        margin: 10px 8px;
    }

    .client1 img{
        width: 10em;
        height: 10em;
    }

    .title{
        font-size: 30px;
    }

    .content{
        display: flex;
    }

    .cont1{
        width: 100%;
        width: 200px;
        text-align: center;
    }

    .cont1 h2{
        width: 100%;
    }

    .cont1 p{
        width: 100%;
    }

    .container11{
        flex-direction: column;
        
    }

    .contactinfo{
        width: 100%
    }

    .box{
        width:300px;
    }

    .icon{
        font-size: 16px;
    }

    .text1{
    }

    .contectform{
        width: 100%;
    }

    .head2{
        height: auto;
    }

    .head3{
        padding-top: 0;
    }

    .ro1{
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .t7{
        text-align: center;
    }

    .t7 img{
        width: 250px;
    }

    .t13{
        text-align: center;
    }

    .t13 img{
        width: 250px;
        height: 55px;
    }

    .t11{
        text-align: center;
    }

    .t11 img{
        width: 220px;
        height: 88px;
    }

    .t9{
        text-align: center;
    }

    .t9 img{
        margin-left: 0;
    }

    .head4{
        padding-bottom: 20px;
    }

    .container4{
        padding-bottom: 20px;
    }

    .iil{
        overflow: hidden;
    }

    .asf{
        padding:0;
        border: none;
        margin: 0px 0px;
    }

    .asf img{
        height: 62px;
    }

    .se1{
        font-size: 20px;
    }

    .se1 a{
        text-decoration: none;
        color: white;
    }

    .se1 span{
        display: none;
    }

    .z-1{
        display: none;
    }
    .con1{
        display: block;
    }

    .phot1{
        text-align: center;
    }

    .phot1 img{
        width: 300px;
        padding: 30px 5px;
    }
    .des1{
        padding-bottom: 50px;
    }

    .des1 h3{
        font-size: 25px;
        margin: 10px 0px;
        padding-bottom: 20px;
        text-align: center;
    }

    .des1 h1{
        font-size: 20px;
        text-align: center;
        padding: 10px;
    }

    .des1 h2{
        font-size: 18px;
        text-align: center;
        padding: 10px;
    }

    .des1 p{
        font-size: 17px;
        padding: 0 10px;
        text-align: center;
    }

    .des1 li{
        font-size: 16px;
        padding: 3px 20px;
    }

    footer{
        bottom: unset;
    }

    .col h2{
        font-size: 3.5em;
    }

    .col p{
        font-size: 1.2em
    }

    .col a{
        font-size: 1.2em;
    }

    .col{
        flex-basis: 100%;
    }

    .col:nth-child(2), .col:nth-child(3){
        flex-basis: 100%;
    }

    .menu3{
        padding-top: 10px;
    }

    .ine{
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    
    .left0{
        width: 100%;
        padding: 0 30px;
    }

    .right0{
        width: 100%;
    }

    .ine1{
        padding: 30px 0;
    }

    .ine1 video{
        width: 300px;
    }

    .installation{
        height: auto;
    }

    .inst-title{
        min-height: 15vh;
    }

    .inst-title h1{
        font-size: 30px;
        text-align: center;
    }

    .inst-content{
        flex-direction: column;
        height: auto;
    }

    .inst-con1{
        width: 80%;
        margin: auto;
    }

    .inst-con1 p{
        width: 100%;
    }

    .inst-con2{
        width: 90%;
        margin: auto;
        flex-direction: row;
    }

    .imx1{
        width: 80px;
        height: 80px;
        margin: 10px 10px;
    }

    .imx2{
        width: 80px;
        height: 80px;
        margin: 10px 10px;
    }

    .imx3{
        width: 80px;
        height: 80px;
        margin: 10px 10px;
    }

    .inst-con3{
        width: 80%;
        margin: auto;
    }

    .inst-con3 p{
        width: 100%;
    }
}
