*{
    margin: 0;
    padding: 0 ;
    box-sizing: border-box;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.main{
    overflow: hidden;
}

/*---===== Header ====----*/
.topmostsec{
    display: flex;
    align-items: center;
    height: 8vh;
    background-color: #EDEDED;
    justify-content: space-between;
    padding: 0 8vw;
}
/* .topmostsec :nth-child(1){
    display: flex;

} */
 i{
    color: #F17228;
 }
.topmostsec h4{
    font-size: 1vw;
    padding: 0 2vw 0 0 ;
    font-weight: 400;
}
.topmostsec div+div> i{
    padding: 0 0.5vw;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8vw;
    background-color: rgb(255, 255, 255);
    height: 16vh;
}
.logosec{
    display: flex;
    align-items: center;
}
.logosec img{
    border-radius: 50%;
    height: 12vh;
    width: 12vh;
}
.logosec h3{
    padding: 0 0 0 1vw;
    font-size: 1.6vw;
    color: #F17228;
}
.logosec h3 span{
    color: #1A4786;
}
.menuopt{
    position: relative;
}
.menuopt ul{
    display: flex;
    align-items: center;
    list-style-type: none;
}
.menuopt ul li >a{
    padding: 3vw 1vw ;
    text-decoration: none;
    color: #1A4786;
    /* background-color: aquamarine; */
}
.dropdown{
    position: relative;
}
.dropdown-content{
    background-color: #1A4786;
    position: absolute;
    top: 200%;
    width: 50vh;
    min-height: 40vh;
    padding: 1vw;
    display: none;
    column-count: 1;
    transition: 1s  all;
    animation: slide 0.5s;
    z-index: 9999999;
    flex-direction: column;

}
.dropdown-content>a{
    color: white;
    /* margin: 1vw 0; */
    padding: 0.1vw 0.5vw ;
    text-decoration: none;
}
.dropdown-content a:hover{
    color: lightblue;
}
.dropdown-content a i{
    color: white;
    font-weight: bolder;
}
.dropdown:hover .dropdown-content{
    display: flex;
    animation: slide 0.5s;
    transition: 2s;
}

@keyframes slide {
    from {
        transform: translatey(30px);
    }
    to {
        transform: translatey(0px);
    }
}

/*=----- Banner Section -----=*/
/* .carousel-caption{
    position: absolute;
    display: flex;
    justify-content: center;
    width: 10%;
    height: 100%;
    background-color: black;
    left: 0;
    top: 0;
    padding: 9vw 0 0 0 ;
} */



.hamburger{
    display: none;
}
.xmark{
    display: none;
}

@media only screen and (max-width:768px){
    .hamburger,.xmark{display: block;}
    .menuopt ul{display: block;position: fixed;background-color:white;right: -100%; top: 0;z-index:9999;width: 40vh;height: 100%; padding: 3vw 2vw;transition: 0.4s all;}
    .menuopt ul li{padding: 1.5vw 0;}
    .dropdown-content{top:0%;right: 100%;height: 60vh;}
    .dropdown-content{overflow: scroll;}
}
@media only screen and (max-width:576px){
    .dropdown-content{right: 0;bottom: 0;width:70vh;left: 0;}
    .isec{display: none;}
    .topmostsec h4{font-size: 3vw;}
    .logosec h3{font-size: 5vw;}
}




/*-------------About Sec ------------------*/
.aboutussec{
    padding: 3vw 0;
    text-align: center;
    overflow: hidden    ;
}
.aboutussec>p{
    padding: 2vw 2vw ;
}
.innerabout{
    text-align: justify;
}
/*-------------Action Sec ------------------*/
.actionsec{
    background-color: #005AA5;
    text-align: center;
    /* display: flex;
    align-items: center; */
    height: 40vh;
    padding: 5vw 0 0 0;
    /* margin: 9vw 0; */
    
}
.actionsec h2{
    color: white;
}
.actionsec p{
    color: white;
}
.actionbutton{
    border: solid 1px #F17228;
    border-radius: 3vw;
    background-color: rgba(255, 255, 255, 0);
    padding: 1vw 2.5vw;
    transition: 1s all;
}
.actionbutton a{
    color: white;text-decoration: none;
}
.actionbutton:hover{
    background-color: #F17228;
    transition: 0.4s all;
}

@media only screen and (max-width:768px){
    .aboutussec{margin: 2vw 0;}
    .aboutussec h3{font-size: 9vw;padding: 3vw 0 0 0;}
}

/*-------------Service Section----------*/

.services{
    padding: 3vw 0 ;
}
.services>h2{
    text-align: center;
}
.services>p{
    text-align: center;
}
.boxcontsec h3{
    color: #005AA5;
    font-size: 1.6vw;
}
.boxcontsec p{
    font-size: 1vw;
}

.sparesec{
    display: grid;
    grid-template-columns: 33% 33% 33% ;
    padding: 2vw 7vw;
    gap: 30px;
}
.sparesecboxes{
    display: grid;
    /* background-color: #005AA5; */
    /* width: 50vh; */
    align-items: center;
    grid-template-columns: 30% 70% ;
}
.sparesecboxes i{
    font-size: 2vw;
    border: 1px solid #005AA5;
    border-radius: 50%;
    padding: 2vw;
    color: #005AA5;
    transition: 0.5s all;
}
.sparesecboxes h3{
    transition: 0.5s all;
}

.sparesecboxes:hover i{
    background-color: #005AA5;
    color: white;
    transition: 0.5s all;
}

.sparesecboxes:hover h3{
    color: #F17228;
    transition: 0.5s all;
}

@media only screen and (max-width:576px){
    .sparesec{grid-template-columns: 100%;}
    .sparesecboxes i{font-size: 10vw;border: 1px solid #005AA5;border-radius: 50%;padding: 6vw;color: #005AA5;transition: 0.5s all;}
    .sparesecboxes{ display: grid; /* background-color: #005AA5; */ /* width: 50vh; */ align-items: center; grid-template-columns: 30% 70% ;}
    .boxcontsec h3{font-size: 7vw;}
    .boxcontsec p{font-size: 5vw;}
    .sparesecboxes{align-items: normal;}
}

/*---------------- Vid Sec ----------------*/
.vidsec{
    height: 100vh;
    background: url(../images/background-image.jpg) no-repeat fixed ;
    background-size: 100% 100%;
    /* background-color: #F17228; */
    position: relative;
}
.innervidsec{
    background-color: #f1722898;
    width: 100%;
    height: 100%;
    display: grid;
    align-items: center;
    gap: 40px;
    grid-template-columns: 20% 40% ;
    justify-content: center;
    text-align: right;
    
}
.innervidsec h2{
    color: white;
    font-size: 3vw;
}
.vid{
    background-color: grey;
    /* width: 60vh;
    height: 30vh ; */
}
.vid img{
    width: 100%;
    height: 100%;
}

@media only screen and (max-width:576px){
    .vidsec{min-height:130vh;}
    .innervidsec{display: flex;flex-direction: column;}
    .innervidcont{ padding: 0 1vw 0 0 ;}
    .innervidsec h2{font-size: 15vw; color: white;}
    .innervidimg{padding: 1.7vw;}
}

/*==========---- Footer------=============*/

footer{
    background-color: #040919;
    color: white;
    padding: 0 0 ;
    margin: 0 0 0 0;

}
.innerfooterdiv{
    color: white;
    display: grid;
    grid-template-columns: 25% 18% 25% 25%;
    gap: 2vw;
    padding: 2vw 5vw;
    border-bottom: 1px solid white;
    border-width: 0vh;
}
.innerfooterdiv a{
    color: white;
    text-decoration: none;
}
.innerfooterdiv h2{
    padding: 2vw 0;
    font-size: 1.5vw;
}
.innerfooterdiv p{
    font-size: 1.2vw;
}
/* .callfun{
    display: flex;
    align-items: center;
    justify-content: space-around;

} */
 .hover a{
    transition: 0.2s all;
 }
 .hover a:hover{
    color: #F17228;
    padding:0 0 0 8px;
    transition: 0.2s all;
 }
.firfooterdiv i{ 
    border: solid 1.5px;
    border-radius: 1vw;
    padding: 1.5vw 1.2vw;
    font-size: 1.5vw;
    transition: 1s all;
}
.firfooterdiv i:hover{
    background-color: white;
    color:#1A4786;
    border: 1px solid white;
    transition: 1s all;
}
@media only screen and (max-width:576px){
    .innerfooterdiv{display: flex;flex-direction: column;}
    .innerfooterdiv h2{font-size: 7vw;}
    .innerfooterdiv p{font-size: 4vw;}
    .firfooterdiv i{font-size: 8vw; padding: 3vw;}
}
.footerlast{
    text-align: center;
    padding: 2vw 0; 
    margin: 0vw 0;
    

}

/*==============Inner page Banner Sec===============*/

.bannerimg{
    background: url(../images/innerbanner.jpg) no-repeat ;
    background-size: cover;
    height: 50vh;
}
/* .bannrsec{
    padding: 3vw 0;
} */
.bannerimg h2{
    background-color: rgba(0, 0, 0, 0.712);
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3vw;
    font-style: italic;
}

@media only screen and (max-width:576px){
    .bannerimg{height: 30vh;}
    .bannerimg h2{font-size: 7vw;}
}



/*=====================Inner Pages Start ====================*/
/*=======----- Product Page --------========*/
.productsec{
    padding: 2vw 4vw;
}
.productinfo{
    display: flex;
    justify-content: space-around;
    padding: 4vw 0;
}
.productinfo h2{
    color: #F17228;
}
.productinfo table td{
    padding: 0.4vw 2vw;
    border-right: solid 2px grey;
}
.enquirybutton{
    margin: 2vw 0;
    border: solid 1px #F17228;
    padding: 1vw 2vw ;
    border-radius: 2vw ;
    transition: 0.4s all;
}
.enquirybutton a{
    color: black;
    text-decoration: none;
    transition: 0.4s all;
}
.enquirybutton:hover{
    background-color: #F17228;
    transition: 0.4s all;
}
.enquirybutton:hover a{
    color: white;
    transition: 0.4s all;
}

@media only screen and (max-width:576px) {
    .productinfo{ flex-direction: column;}
    .productinfo img{ width: 40vh;height: 30vh;}
    .productsec{padding: 5vw 3vw;}
}

/*========--- Gallery Sec -----============*/
.gallerysec{
    padding: 3vw ;
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    gap: 0px;
}
.gallerysec div{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1vw ;
    /* background-color: black; */
    /* width: 50vh;
    height: 50vh; */
    /* border: solid 1px grey; */
    /* background-color: grey; */

}
.gallerysec div img{
    width: 100% ;
    height: 100% ;
    filter: grayscale(100%);
    transition: 0.4s all;
    
}
.gallerysec div img:hover {
    filter: grayscale(0%);
    scale: 1.2;
    transition: 0.4s all;
}

@media only screen and (max-width:576px){
    .gallerysec{grid-template-columns: 50% 50%;padding: 7vw 0;}
}

/*============------- Contact Us page ----==========*/
.contactsec{
    position: relative;
    display: flex;
    justify-content: space-around;
    padding: 4vw 0;
    align-items: center;

}
.mapsec{
    background-color: grey;
    width: 80vh;
    height: 60vh;
}
.mapsec div{
    width: 100% !important;
    height: 100%!important;
}
.formsec input {
    width: 70vh;
    background-color: rgb(240, 239, 239);
}
.formsec label{
    color: #F17228;
    font-weight: 500;
}

@media only screen and (max-width:576px){
    .contactsec{flex-direction: column;}
    .mapsec {width: 100%;height: 100%; margin: 8vw 0 ;}
    .formsec input{width: 50vh;}
}


/*=========--------= Testimonial Section =-----------=========*/
.testimonialsec{
    text-align: center;
}
.testimonialsec >div{
    padding: 2vw 0 ;
}
.testimonialsec h2{
    text-align: center;
    color: grey;
    font-size: 2vw;
}
.testimonialsec h5{
    color: #F17228;
}
.testimonialsec h6{
    color: #040919;
}
.testimonialsec i{
    color: #F17228;
    font-size: 3vw;
}

@media only screen and (max-width:576px){
    .testimonialsec h2{font-size: 4vw;}
    .testimonialsec i{font-size: 6vw;}
}