@import url('https://fonts.googleapis.com/css2?family=Belanosima&family=Nunito:wght@400;600;700&family=Poppins:wght@400;700&family=Roboto:wght@400;700&display=swap');

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

header{
    height: 90px;
    width: 100%;
    background-color: lavender;
    display: flex;
    justify-content: space-around;
    align-items: center;


}

header > button{
    font-size: 18px;
    padding: 15px 25px;
    background-color: orange;
    color: black;
    border: none;
    cursor: pointer;
    font-family: poppins;
}
header > .logo > a > img{
    width: 200px;
}

header > nav > a {
    font-size: 18px;
    text-decoration: none;
    font-family: nunito;
    color: black;
    margin: 0px 20px;
    font-weight: bold;
    transition: color 0.5s ease-in-out;
}

header > nav > a:hover{
    color: red;
}


.banner{
    height: 100vh;

    background: rgba(0,0,0,0.5)url('./assets/sec-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: darken;

    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;

    color: white;
}

.banner > h1{
    font-size: 5rem;
    font-family: poppins;
    font-weight: lighter;
}
.banner > h3{
    font-size: 2rem;
    font-family: poppins;
    font-weight: lighter;
}





.about-us{
    background-color: rgb(54, 89, 8);
    text-align: center;
    padding: 50px 70px;
}
.about-us > h1{
    font-size: 38px;
    letter-spacing: 2px;
    font-family: roboto;
    margin-bottom: 40px;
}
.about-us > .content{
    height: 300px;
    
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    text-align: left;
    align-items: center;

}
.about-us > .content > .img{
    background-color: black;
    width: 40%;
    height: 100%;
    display: inline-block;
    border-radius: 10px;
    background: rgba(0,0,0,0.2)url(https://mlrit.ac.in/wp-content/uploads/2022/03/7P5A1257.jpg);
    background-position: center;
    background-size: cover;
    box-shadow: 1px 1px 10px black;
    background-blend-mode: darken;
}

.about-us .content .matter{
    align-self: center;
    padding: 20px;
    width: 55%;
    height: 100%;
    font-family: poppins;
    text-transform: uppercase;
    font-weight: lighter;
    text-align: justify;
    
    
}
.about-us .content .matter h4{
    margin: 30px 0px;
    color: blanchedalmond;
    font-weight: lighter;
    font-size: 18px;
}



.quote {
    
    height: 150px;
    background-color: rgba(215, 226, 211, 0.9);
    background-size: cover;
    background-position: center;
    background-blend-mode: lighten;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    font-size: 18px;
    font-style: italic;
}

.quote > blockquote > cite{
    margin-left: 20px;
    font-style: normal;
}

.services-section{
    background-color: rgba(10, 22, 40, 1);
    padding: 50px 20px;
    text-align: center;
}

.services-section > h1{
    color: white;
    font-family: roboto;
    font-size: 48px;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.services-section > .services{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}


.services-section > .services > .service > img{
    width: 550px;
    height: 400px;
    border-radius: 20px;
}

.services-section > .services > .service{
    margin: 40px;
    position: relative;
    overflow: hidden;
}

.services-section  .services  .service  .overlay{
    position: absolute;
    top:0;
    left: 0%;
    background-color: rgba(0,0,0,0.6);
    width: 550px;
    height: 400px;
    border-radius: 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;

}
.services-section  .services  .service  .overlay  h1{
    font-size: 48px;
    font-family: poppins;
    color: white;
}

.services-section .services .service:hover .overlay{
    opacity: 1;
    pointer-events: auto;
}

.big-quote{
    height: 400px;
    background: rgba(0, 0, 0, 0.7)url( https://images.unsplash.com/photo-1580086319619-3ed498161c77?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1169&q=800 );
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: darken;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.big-quote > h4,h1{
    color: white;
}


.big-quote > h1{
    font-family: poppins;
    font-size: 42px;
    font-weight: lighter;
}
.big-quote > h1 > span{
    font-family: nunito;
}

.big-quote > h4{
    text-align: end;
    font-size: 20px;
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    width: 75%;
    margin: 10px 0px;

}





.choose{
    height: 78vh;
    background-color: #292929;
    text-align: center;
    padding: 50px 50px;
}
.choose  h1{
    font-family: roboto;
    font-size: 28px;
    letter-spacing: 1.2px;
    margin-bottom: 50px;
}
.choose .tiles{
    width: 100%;
    /* border: 2px solid white; */
    height: 50vh;
    display: flex;
    justify-content: space-around;
}

.tile1 , .tile2 , .tile3 , .tile4 {
    width: 20%;
    height: 100%;
    background-color: rgb(185, 3, 185);
    border-radius: 20px;
    padding: 10px 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tile1:hover, .tile2:hover , .tile3:hover , .tile4:hover{
    background-color: rgb(235, 1, 235);
}

.icon{
    width: 120px;
    height: 120px;
}

#tile-1{
    background-image: url( https://img.icons8.com/?size=512&id=qXX2DZ77VCSu&format=png );
    background-size: cover;
    background-position: center;
}

#tile-2{
    background-image: url( https://img.icons8.com/?size=512&id=36917&format=png  );
    background-size: cover;
    background-position: center;
    margin-bottom: 5%;
}
#tile-3{
    background-image: url( https://img.icons8.com/?size=512&id=9794&format=png );
    background-size: cover;
    background-position: center;
    width: 105px;
    height: 105px;
    margin-bottom: 5%;
}
#tile-4{
    background-image: url( https://img.icons8.com/?size=512&id=11220&format=png );
    background-size: cover;
    background-position: center;
}


.data{
    width: 100%;
    height: 20%;
    margin-top: 10%;
    padding: 10px;
}

.data > h1{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
}












.contact{
    /* background-color: rgba(235, 129, 129, 0.9); */
    background-color: #073b4c;
    height: 680px;
    padding: 50px;
    text-align: center;

}

.contact > h1{
    letter-spacing: 2px;
    font-family: roboto;
    font-size: 38px;
    margin-bottom: 20px;
    color: white;
}
.contact > h4{
    letter-spacing: 1px;
    font-family: poppins;
    font-size: 18px;
    margin-bottom: 50px;
    color: white;
    font-weight: lighter;
    padding: 0px 120px;
}
.contact > .three-blocks{
    display: flex;
    flex-direction: row;
    justify-content: space-around;

}


.contact > .three-blocks > .block-one,.block-two {
    height: 400px;
    background-color: white;
    border-radius: 20px;
}


.contact > .three-blocks > .block-two{
    width: 35%;
}

.contact > .three-blocks > .block-one{
    /* padding: 10px 10px; */

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    background-color: white;
    width: 55%;
}


.contact > .three-blocks > .block-one > .div1, .div2, .div3 , .div4{
    /* border: 2px solid black; */
    width: 45%;
    height: 45%;
    margin: 10px 10px;

}


.block-two iframe{
    width: 100%;
    border-radius: 20px;
}


.block-one > .div1, .div2, .div3, .div4 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    /* border: 2px solid red; */
}
 .first{
    width: 120px;
    height: 120px;
}


.second{
    height: 150px;
    /* border: 2px solid red; */
    text-align: left;
    padding-left: 10px;

    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
}

.second > h2 {
    font-size: 18px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.second > h4{
    font-size: 14px;
    font-family: roboto;
    font-weight: lighter;
}



#location-data , #mail-data{
    width: 250px;
}
#contact-data, #website-data{
    width: 250px;
}



#location{
    background-image: url(https://img.icons8.com/?size=512&id=64515&format=png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 90%;

}
#website{
    background-image: url(https://img.icons8.com/?size=512&id=111139&format=png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}
#contact-div{
    background-image: url(https://img.icons8.com/?size=512&id=91298&format=png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}
#mail{
    background-image: url(https://img.icons8.com/?size=512&id=GNO9f2CARaea&format=png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}


.links-block{
    width: 5%;
    border-radius: 20px;
    /* border: 2px solid black; */
    /* background-color: white; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
.links-block > a > div{
    width: 50px;
    height: 50px;
    /* border: 2px solid black; */
    border-radius: 24px;
}

.links-block > div > a{
    cursor: pointer;
}

.links-block > a > #facebook {
    background: url(https://img.icons8.com/?size=512&id=uLWV5A9vXIPu&format=png);
    background-position: center;
    background-size: cover;
}

.links-block > a > #instagram{
    background: url(https://img.icons8.com/?size=512&id=Xy10Jcu1L2Su&format=png);
    background-position: center;
    background-size: cover;
}

.links-block > a >  #twitter{
    background: url( https://img.icons8.com/?size=512&id=13963&format=png );
    background-position: center;
    background-size: cover;
}

.links-block > a > #linkedin{
    background: url(https://img.icons8.com/?size=512&id=xuvGCOXi8Wyg&format=png);
    background-position: center;
    background-size: cover;
}

.links-block > a > #youtube {
    background: url(https://img.icons8.com/?size=512&id=9a46bTk3awwI&format=png);
    background-position: center;
    background-size: cover;
}




.video-join{
    position: relative;
    height: 70vh;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.video-join > .video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;

}


.video-join > h1{
    color: white;
    font-size: 32px;
    font-family: verdana;
    letter-spacing: 2px;

    text-transform: uppercase;
    
}


.video-join > button{
    margin-top: 60px;
    font-size: 24px;
    background-color: grey;
    color: white;
    cursor: pointer;
    border: 1px solid white;
    padding: 12px 35px;
    border-radius: 50px;
}

.video-join > button:hover{
    background-color:  rgb(255, 165, 0, 50%);
    border: 0px;
}





footer{
    height: 280px;
    /* background-color: rgba(0, 0, 0, 0.8); */
    background-color: black;
    /* background-color: rgb(28, 27, 27); */

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer > .logo-content > a > i{
    color: white;
    font-size: 24px;
    margin: 20px;
    cursor: pointer;
    
}


footer > .logo-content, .address-content, .menu-content{
    width: 33%;
    height: 100%;
    /* border: 2px solid red; */
}

footer > .logo-content{
    padding: 40px 30px;
    font-family: Arial, Helvetica, sans-serif;
}
footer > .logo-content > h1{
    letter-spacing: 2px;
    margin-bottom: 20px;
    margin-left: 80px;
    font-size: 28px;
}
.address-content{
    padding: 30px;
}

.address-content > h1 {
    font-family: roboto;
    font-size: 28px;
    letter-spacing: 2px;
    color: white;
    margin-bottom: 20px;
}
.address-content > h4{
    color: white;
    font-family: poppins;
    font-size: 18px;
    font-weight: lighter;
}

.menu-content{
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: left;
    padding-left: 80px;
}

.menu-content > h1{
    font-family: roboto;
    margin-bottom: 15px;
    letter-spacing: 2px;
    font-size: 28px;
}

.menu-content > a{
    text-decoration: none;
    color: white;
    font-family: roboto;
    font-size: 18px;
    margin: 10px 0px;
}

.menu-content > a > i{
    margin-right: 5px;
}


