

 body {
            font-family: Arial, Helvetica, sans-serif;
            padding: 0px;
            margin: 0px;
            background-color: #c2b9b0;
            } 
        
        /*                  nav bar                 */

        .navbar {
            overflow: hidden;
            background-color: #7e685a;
        }

        .navbar a {
            float: right;
            font-size: 16px;
            color: #c2cad0;
            text-align: center;
            padding: 34px 26px;
            text-decoration: none;
        }

        #logo{
            width : 100px;
            height: 50px;
            padding: 20px;
        }

        /*                  Dropdown MEnu               */
        .dropdown {
            float: right;
            overflow: hidden;
        }

        .dropdown .dropbtn {
            font-size: 16px;
            border: none;
            outline: none;
            color: #c2cad0;
            padding: 34px 26px;
            background-color: inherit;
            margin: 0;
        }

        .navbar a:hover,
        .dropdown:hover .dropbtn {
            background-color: #afd275;
            transition: .6s;
            color: #7e685a;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #7e685a;
            min-width: 160px;
            box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
            z-index: 1;
            transition: .4s;
        }

        .dropdown-content a {
            float: none;
            color: #c2cad0;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            text-align: left;
        }

        .dropdown-content a:hover {
            background-color: #333;
            color: white;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }


        /* __________________________________________________________________________________________ */


        /* CONTACT US  */
        #con{
            width: 800px;
            height: 440px;
            position: absolute;
            top: 74%;
            left: 50%;
            transform: translate(-50%,-50%);
            background-color: #f8f8f8;
            padding: 10;
            padding-left: 30px;
            z-index: -1;
            border-radius: 40px;
        }
        #con h4{
            color: #6495ED;
        }
        table{
            border: 2px solid #a0a0a0;
            width: 700px;
        }
        table tr td{
            border: 2px solid #a0a0a0;
            font-size: 14px;
            padding: 6px;
        }

        table,th,td{
            border-collapse: collapse;
        }

        table th{
            text-align: left;
            font-size: 15px;
            padding: 6px;
            border: 2px solid #a0a0a0;
        }

        iframe{
            width: 100%;
            height: 150px;
        }


        /* ___________________________________________________________________________________________________________________ */

        /* GALLERY */
        .div-group{
    width: 100%;
    margin-top:0 auto;
    display:grid;
    grid-template-columns:repeat(3,22.5rem);
    justify-content: center;
}

.div-group .box1{
    margin: 10px auto;
    position: relative;
    width: 280px;
    height: 180px;
    background-color: white;
    overflow: hidden;
    border-radius: 20px;
}
.div-group .box1:hover{
    background-color: rgb(240,240,240);
    filter: grayscale(100%);
    transform:scale(1.1);
    transition:.5s all;
}
.im1{
    width: 100%;
}


/* ABOUT US PAGE */
#au1{
  color: blue;
}
.au2{
    color: red;
}
.au3{
    float: right;
    width: 250px;
}
#au{
    /* background-color: red; */
    width: 700px;
    height :600px;
    position: absolute;
    top:65%;
    left:50%;
    transform: translate(-50%,-50%);
    padding: 10px;
}

#au p{
    font-size: 14px;
}

#au h3 span{
    font-style: italic;
    font-weight: lighter;
    font-size: 18px;
}
#aup2{
    float: left;
    height: 250px;
}
#aup1{
    color: blue;
}
#aup{ width: 700px;
    height :400px;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    padding: 10px;
}


/* about1.1 */
#vc1{
    position: fixed;
}
#vc{
    float: left;
    width: 200px;
}
#vc1 p{
    position: relative;;
      font-size: 13px;
}
#vc2{
    color:blue;
}



/* courses  */
#cor{
    margin: -20px;
    position:absolute;
    top:160%;
    left:50%;
    transform: translate(-50%,-50%);
    padding: 10px;
    
}
.cor1{
    color:blue;
    
}



/* for carousel */
.mySlides {display: none}
.slideshow-container img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}



/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}

hr{
    border: 1px solid black;
    width: 65%;
}

/* for placement records */
.place{
  max-width: 1000px;
  position: relative;
  margin: auto;
  background-color: #edeae7;
  padding: 10px;
  border-radius: 30px;
  height: 130px;
    text-align: center;
  display:flex;
  margin-top: 40px;
  justify-content:center;
}

.place span{
    font-size: 25px;
}

.place p{
    font-size: 14px;
}

.place .sub-div{
    width: 160px;
    position: relative;
    margin: auto;
    float: left;
    padding: 5px;
    background-color: #8e7e6e;
    color: white;
    border-radius: 20px;
    text-align: center;
}

.place .sub-div:hover{
    transform: scale(1.1);
    transition: .5s all;
}

.place h2{
    width: 160px;
    position: relative;
    margin: auto;
    color: #8e7e6e;
}