@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    width: 100%;
    max-height: 1500px;
    overflow-x: hidden;

}

/*  Starting of Navigation Bar */

.navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    padding: 2px 10px 2px 50px;
    width: 100%;
    border: 1px solid #D9D9D9;
    box-shadow: 0px 4px 4px rgb(0 0 26 / 25%);
    /* border-radius: 10px; */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.navbar a {
    display: block;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
    color: #000;
    /* font-weight: 500; */
    transition: all 0.2s ease;

}

.navbar a:hover {
    color: #106672;
    font-weight: 600;
    /* border: 1px solid #000; */
    transform: scale(1.3);
}

.navbar a img {
    width: 80px;
}

.logo {
    margin-right: 50px;
}

.list {
    list-style: none;
    display: flex;
    gap: 25;
}

#toggler,
.navbar label {
    display: none;
    font-size: 300px;
}

.navbar i {
    font-size: 34px;
}

/*  Ending of Navigation Bar */


.top-image-content{
    width: 100%;
    height: 100vh;
    background-image: url('img/about-bg4.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    margin-top: 60px;
}

.interview-questions-answers-container{
    width: 90%;
    /* border: 2px solid gray; */
    margin: 80px auto;
}

.interview-questions-answers{
    display: flex;
    justify-content: space-between;
    /* margin: 60px 50px; */
}
.interview-questions-answers img{
    width: 45%;
    height: auto;
    margin-right: 30px;
}
.interview-questions-answers-content{
    margin: 20px 40px;
    line-height: 1.4;   
    text-align: justify;
    font-size: 18px;

}
.interview-questions-answers-content h1{
    margin-bottom: 10px;
    font-size: 30px;
}



.dedicated-placement-department-container{
    width: 90%;
    /* border: 2px solid gray; */
    margin: 80px auto;
}
.dedicated-placement-department{
    display: flex;
    justify-content: space-between;
    /* margin: 60px 50px; */
}
.dedicated-placement-department-container img{
    width: 45%;
    height: auto;
    margin-left: 30px;
}
.dedicated-placement-department-content{
    margin: 30px 40px;
    line-height: 1.4;
    text-align: justify;
    font-size: 18px;
}
.dedicated-placement-department-content h1{
    margin-bottom: 10px;
    font-size: 30px;

}




.classification-of-it-jobs{
    width: 90%;
    /* border: 2px solid gray; */
    margin: 80px auto;
}
.classification-of-it-jobs{
    display: flex;
    justify-content: space-between;
    /* margin: 60px 50px; */
}
.classification-of-it-jobs img{
    width: 45%;
    height: auto;
    margin-right: 30px;
}
.classification-of-it-jobs-content{
    margin: 20px 40px;
    line-height: 1.4;   
    text-align: justify;
    font-size: 18px;
}
.classification-of-it-jobs-content h1{
    margin-bottom: 10px;
    font-size: 30px;

}






























/* Smaller Mobile Phones */
@media screen and (max-width: 480px) {
    .top-image-content {
        margin: 0;
        padding: 0;
    }

    .menu {
        width: 100%;
        max-height: 0;
        overflow: hidden;
    }

    .list {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .navbar label {
        display: inline-flex;
        align-items: center;
        cursor: pointer;
    }

    #toggler:checked~.menu {
        max-height: 100%;
    }


    

    
}


/* Large Smartphones and Tablets */
@media screen and (max-width: 768px) {
    .menu {
        width: 100%;
        max-height: 0;
        overflow: hidden;
    }

    .list {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .navbar label {
        display: inline-flex;
        align-items: center;
        cursor: pointer;
    }

    #toggler:checked~.menu {
        max-height: 100%;
    }




    .interview-questions-answers img{
        width: 90%;
        height: auto;
        margin: auto;
    }
    .dedicated-placement-department img{
        width: 90%;
        height: auto;
        margin: auto;
    }
    .classification-of-it-jobs img{
        width: 90%;
        height: auto;
        margin: auto;
    }
    
}


/* Large Tablets and laptops */
@media screen and (max-width: 1000px) {
    .navbar {
        padding: 2px 10px 2px 40px;
    }

    .navbar a img {
        width: 70px;
    }

    .navbar a {
        margin: 0 10px;
        font-size: 1rem;
    }

    .interview-questions-answers{
        /* display: flex; */
        flex-direction: column;
    }
    .dedicated-placement-department{
        flex-direction: column-reverse;
    }
    .classification-of-it-jobs{
        flex-direction: column;
    }

    .interview-questions-answers img{
        width: 90%;
        height: auto;
        margin: auto;
    }
    .dedicated-placement-department img{
        width: 90%;
        height: auto;
        margin: auto;
    }
    .classification-of-it-jobs img{
        width: 90%;
        height: auto;
        margin: auto;
    }
    
}


/* Large Tablets and laptops */
@media screen and (max-width: 1050px) and (min-width: 1010px) {
    .interview-questions-answers{
        flex-direction: row-reverse;
    }
    .classification-of-it-jobs{
        flex-direction: row-reverse;
    }
}







/* Starting of Footer Section  */

.footer{
    background-color: #000;
    padding: 30px 50px;
}
.footer-container{
    max-width: 1170px;
    background-color: #000;
    margin: auto;
}
.footer-row{
    display: flex;
    flex-wrap: wrap;
}
.footer ul{
    list-style: none;
    padding-left: 0;
}
.footer-column{
    width: 18%;
    padding: 0 15px;
}
.footer-contact-column{
    width: 32%;
    padding: 0 15px;
}
.footer-column, .footer-contact-column, h4{
    font-size: 14px;
    color: rgb(255, 199, 95);
    text-transform: capitalize;
    margin-bottom: 25px;
    font-weight: 500;
    position: relative;
}

.footer h4{
    font-size: 20px;
}
.foote-column, .footer-contact-column ul li:not(:last-child){
    margin-bottom: 10px;
}

.footer-column, .footer-contact-column, ul, li, a{
    font-size: 16px;
    line-height: 30px;
    text-decoration: none;
    font-weight: 300;
    color: rgb(180, 180, 180);
    display: block;
    transition: all 0.3s ease;
}
i{
    font-size: 20px;
    margin-right: 10px;
}

.footer-column, .footer-contact-column, ul, li, a:hover{
    color: #fff;
}

@media(max-width: 767px){
    .footer-column, .footer-contact-column{
        width: 50%;
        margin-bottom: 30px;
    }
}
@media(max-width: 574px){
    .footer-column, .footer-contact-column{
        width: 80%;
        margin-bottom: 30px;
    }
}


/* Ending of Footer Section  */

