* {
    margin: 0;
    padding: 0;
    font-family: Arial;
}

h1 {
    font-family: Roboto Slab;
    font-size: 2rem;
    font-weight: bold;
}


/* NAVBAR CSS START */
.firstNavbar {
    padding: 0;
    background: white;
}

.co h5{
    font-weight: bold;
    color: #c40202;
}

.co i {
    font-size: 40px;
    position: relative;
    top: 10px;
    right: 12px;
    color: #c40202;
}

.navDetails {
    display: flex;
}

@media only screen and (max-width: 993px) {
    .navDetails {
        display: none;
    }
}

.secondNavbar {
    padding: 0;
    background: white;
    z-index: 99;
}

.secondNavbar .container {
    padding: 0;
}

.secondNavbar .container .collapse ul li {
    border-left: 1px solid #e8b70d;
    padding: 7px 14px;
}

.secondNavbar .container .collapse ul li .nav-link {
    font-weight: 600;
    color: black;
    font-size: 1rem;
}

.secondNavbar .container .collapse ul li .nav-link::after {
    content: '';
    width: 0;
    border-radius: 20px;
    height: 3px;
    background-color: #e8b70d;
    margin: auto;
    display: block;
}

.secondNavbar .container .collapse ul li .nav-link:hover::after {
    width: 100%;
    transition: 0.3s linear;
}

.secondNavbar .container .collapse ul li .nav-link:hover {
    color: #e8b70d;
}

.secondNavbar .container .collapse ul li .active {
    font-weight: 600;
    color: #e8b70d;
    font-size: 1rem;
}

/* NAVBAR CSS END */

/* SLIDER START */
.carousel-item {
    height: 28.7rem;
    background: #000;
    color: white;
    position: relative;
    background-position: center;
    background-size: cover;
}

.title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-bottom: 50px;
}

.overlay-image {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-position: center;
    background-size: cover;
    opacity: 0.4;
}

@media only screen and (max-width: 993px) {
    .carousel-item {
        height: 28rem;
    }
}

@media only screen and (max-width: 575px) {
    .carousel-item {
        height: 22rem;
    }
}

/* SLIDER END */

/* VIDEO SECTION  START */
.videoContainerFluid {
    background: #f8f8f8;
}

.videoContainer {
    padding: 70px 50px;
}

.videoContainer h1 {
    color: #e8b70d;
}

@media only screen and (max-width: 575px) {
    .videoContainer {
        padding: 20px 0 20px 0;
    }
}

@media only screen and (max-width: 767px) {
    .videoBlock2 {
        flex-direction: column-reverse;
    }
}

/* VIDEO SECTION  END */

/* CARD SECTION START */

.cardSection {
    background-image: url(../img/mohit_iron_industries2.webp);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    background-position: center;

}

.cards {
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    padding: 20px;
    grid-gap: 40px;
}

.head{
    color: white;
    z-index: 3;
    padding-top: 10px;
    word-spacing: 5px;
    letter-spacing: 2px;
}

.card{
    background-color: #1c1b29;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0,0,0,0.18);
}

.cont{
    position: relative;
    clip-path: polygon(0 0,100% 0, 100% 85%, 0 100%);
}

.overlay {
    background: #000000ca;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.cardGrid{
    display: grid;
    place-items: center center;
}

.image{
    width: 100%;
    border-radius: 20px 20px 0 0;
}

.cont:after{
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px 20px 0 0;
    opacity: 0.3;
    transition: 0.5s;
}

.card1 .cont:after{
    background-image: linear-gradient(135deg, #0100ec, #fb36f4);
}
.card2 .cont:after{
    background-image: linear-gradient(135deg, #2bdce3, #42ffdb);
}
.card3 .cont:after{
    background-image: linear-gradient(135deg, #ffab1d, #f8501c);
}

.cardDetails{
    padding: 20px 10px;
}

.cardDetails h3{
    color: white;
    font-weight: 600;
    font-size: 18px;
    margin: 10px 0 15px 0;
}

.cardDetails p{
    color: #a0a0a0;
    font-size: 15px;
    line-height: 30px;
    font-weight: 400;
}

.card:hover .cont:after{
    opacity: 0;
}

/* CARD SECTION END */

/* FOOTER  START */
/* FIRST FOOT START */
.footerContainerFluid {
    background: #171717;
}

.firstFoot {
    border: 1px solid #515151;
    padding: 10px 0;
}

.centerDiv img{
    transition: .2s linear;
    cursor: pointer;
}

.centerDiv img:hover{
    transform: scale(1.1);
}

/* POPUP IMAGE START */
.popup-image{
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .9);
    height: 100%;
    width: 100%;
    z-index: 100;
    display: none;
}     

.popup-image img{
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid #fff;
    border-radius: 5px;
    width: 450px;
    object-fit: cover;
}

@media(max-width:768px){
.popup-image img{
    width: 95%;
}
}
/* POPUP IMAGE END */

.sitemap ul {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.sitemap ul li {
    list-style-type: none;
    color: #e8b70d;
    margin: 4px 0;
    display: inline-block;
}


.sitemap ul li a {
    text-decoration: none;
    color: #e8b70d;
    transition: 0.3s;
}

.sitemap ul li a:hover {
    color: white;
}


@media only screen and (max-width: 992px) {
    .sitemap ul li {
        margin: 0 0;
    }

    .sitemap ul{
        padding: 0;
    }

    .sitemap ul li a {
        font-size: 0.7rem;
    }
}

@media only screen and (max-width: 767px) {
    .sitemap ul {
        /* flex-direction: row; */
        margin: 10px 0;
    }

    .sitemap ul li {
        margin: 0 auto;
    }
}

/* FIRST FOOT END */

/* SECOND FOOT START */
.secondFoot {
    border: 1px solid #515151;
    padding: 10px 0;
}

.secondFoot h5 {
    font-family: Roboto Slab;
    font-size: 1.5rem;
    font-weight: bold;
    color: #e8b70d;
}

.secondFoot p {
    font-size: 0.8rem;
    color: white;
}

.centerDiv{
    border-left: 1px solid #e8b70d;
    border-right: 1px solid #e8b70d;
}

/* SECOND FOOT END */

/* THIRD FOOT START */
.thirdFoot{
    border: 1px solid #515151;
}

.thirdFoot p{
    color: white;
    margin: 15px 0;
    text-align: center;
}
/* THIRD FOOT END */

/* FOOTER  END */