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

} */

body {
  font-family: 'Inter', sans-serif;
  font-family: 'Josefin Sans', sans-serif;
  font-family: 'Roboto', sans-serif;
}

/* Enquery section css */

#enquery-sec {
  display: flex;
  justify-content: space-around;
  width: 100%;
  height: 7vh;
  background-color: blueviolet;
  color: white;
  font-weight: 500;
}

#enquery-sec label {
  margin-top: 13px;
}

@media screen and (max-width:955px) {
  #enquery-sec {
    width: 100%;
    height: 10vh;
  }
}

@media screen and (max-width:550px) {
  #enquery-sec {
    width: 100%;
    height: 11vh;
    background-color: blueviolet;
  }

  #enquery-sec label {
    margin-top: 18px;
  }
}

.card-img-top {
  margin-top: 20px;
  margin-left: 100px;
  align-content: center;
  height: 100px;
  width: 30%;
}


.text-container {
  background-color: rgb(10, 46, 113);
  color: white;
  text-decoration: none;
  padding: 10px;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 25px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.card {
  background-color: rgb(217, 229, 251);
  text-align: center;
  width: 100%;
  height: 25vh;
}

@media screen and (max-width:1100px) {
  .card {
    text-align: center;
    width: 100%;
    height: 30vh;
  }
}

@media screen and (max-width:550px) {
  .card {
    text-align: center;
    width: 100%;
    height: 23vh;
  }
}

@media screen and (max-width:800px) {
  .card {
    text-align: center;
    width: 100%;
    height: 25vh;
  }
}


.it-software {
  width: 100%;
  background-color: rgb(0, 162, 255);
  padding: 10px;
  font-weight: bold;
}

.card-body {
  background-color: rgb(0, 0, 0);
  color: white;
  position: absolute;
  z-index: 999999;
}



/* contact page */
#contact-form {
  background-color: rgb(10, 46, 113);
  width: 100%;
  height: auto;
  color: white;
  text-decoration: none;
  padding: 10px;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 25px;
  /* font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; */
}

.request {
  font-size: 15px;
  font-weight: lighter;
}

#contact-input input {
  padding: 12px 20px;
  margin: 10px 0;
  box-sizing: border-box;
}

#submit-btn {
  margin-top: 20px;
  margin-left: 15px;
  padding: 5px 30px;
  /* background-color:rgb(160, 29, 29); */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  height: 45px;
  width: 25%;
  text-decoration: none;
  color: white;
  font-size: 15px;
  box-sizing: border-box;
}


/* navigation bar */
#topnav {
  padding: 10px;
  background-color: rgb(23, 23, 114);
  margin: 0px;
  display: flex;
  justify-content: space-around;
}

#topnav li {
  display: inline;
  padding: 7px;
  color: white;
  cursor: pointer;
}

#topnav li:hover {
  color: orange;
}

/* @media only screen and (min-width: 600px) {
  #topnav {
    padding: 3px;
    display: flex;
    justify-content: space-around;
  }

} */




/* accordion section css */

.accordion {
  background-color: #f0f8ff;
  color: #444;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  transition: 0.4s;
  font-weight: 700;

}

.accordion:hover {
  background-color: rgb(10, 10, 217);
  color: white;
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: 400;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: #f0ffff;
  overflow: hidden;
  font-weight: 500;
}


/* fade-up-text-css */

.fade-up-text {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 1s;
  margin-left: 20px
}

/* .site-map{
  display: block;
} */

#site-map li {
  list-style-type: none;
  color: white;
  cursor: pointer;
  text-align: -webkit-match-parent;
  display: block;
}

li a {
  color: white;
  text-decoration: none;
  line-height: 200%;
}

li a:hover {
  color: aliceblue;
  text-decoration: none;
}


.each-line {
  display: grid;
  grid-template-columns: 20px auto;
  column-gap: 12px;
}


/* why enroll course section */

.why-enroll {
  width: 100%;
  height: 27vh;
  box-shadow: 0px 0px 8px -2px;
}

.why-enroll-second {
  text-align: center;
  padding: 10px;
  margin: 5px;
  font-weight: 500;
  font-size: 14px;
}

@media screen and (max-width:1050px) {
  .why-enroll {
    width: 100%;
    height: 32vh;
  }
}

@media screen and (max-width:600px) {
  .why-enroll {
    width: 100%;
    height: 22vh;
  }
}


#courses-dropdown a:hover{
  background-color: blue;
  color: white;
}