
.heroImg.ad{
  background-image: url("../image/dolvic-building.jpg");
}
.admission{
    display: flex;
    justify-content: space-between;
    margin: 60px 35px;
    padding: 15px;
    width: inherit;
}
/* .admission > div{
    margin-left: 15px;
} */
.admission div:nth-child(1){
    width: 75%;
    background-color: white;
    padding: 20px 15px;
}
.admission div.form{
    width: 250px;
    background-color: inherit;
}
.admission div.form .download,
.admission div.form .regCenters{
    box-shadow: 0 0 2px purple;
    background-color: white;  
    width: 100%;
    margin-bottom: 30px;
    padding: 20px 15px;
}
.tab {
    overflow: hidden;
    /* border: 1px solid #ccc; */
    background-color: #cacaca69;
  }

  /* Style the buttons that are used to open the tab content */
  .tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 0;
    border-right: 1px solid rgba(100, 41, 97, 0.329);
    padding: 15px 30px;
    transition: 0.3s;
    margin-right: 2px;
    transition: all .7s ease;
  }

  /* Change background color of buttons on hover */
  .tab button:hover {
    background-color: rgb(100, 41, 97);
    color: white;
  }

  /* Create an active/current tablink class */
  .tab button.active {
    background-color: rgb(100, 41, 97);
    color: white;
  }

  /* Style the tab content */
  .tabcontent {
    display: none;
    padding: 40px 12px 20px;
    border: 1px solid #ccc;
    border-top: none;
    animation: fadeEffect 1s; /* Fading effect takes 1 second */
  }

  /* Go from zero to full opacity */
  @keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
  }
  .collapsible {
    background-color:  rgba(71, 20, 65, 0.671);
    color: rgb(223, 223, 223);
    cursor: pointer;
    padding: 10px 18px;
    width: 100%;
    border: none;
    border-radius: 0;
    text-align: left;
    outline: none;
    font-size: 17px;
    font-weight: 450;
    border-bottom: 1px solid rgb(226, 198, 226);
  }
  /* .active, .collapsible:hover {
    background-color: #ccc;
    color: rgb(59, 21, 53);
  } */
  div.detail {
    padding: 0 18px;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background-color: rgb(255, 255, 255);
    transition: max-height 0.2s ease-out;
}
.detail h5{
  padding: 20px 0 0px;
}

.collapsible:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: white;
    float: right;
    margin-left: 5px;
  }

  .collapsible.active:after {
    content: '\2796'; /* Unicode character for "minus" sign (-) */
  }
.detail ul li i{
  color:rgb(167, 39, 147);
}

@media only screen and (max-width: 840px) {

  .admission{
    margin: 60px 15px;
  }
  .admission div:nth-child(1){
      width: 65%;
  }
  .tab button {
    padding: 15px 20px;
  }
  .collapsible {
    padding: 7px 8px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 500px) {

  .admission{
    flex-direction: column;
    align-items: space-between;
    margin: 30px 5px;
    padding: 5px;
    width: inherit;
  }
  .admission p.heading{
    text-align: center;
    margin-bottom: 20px;
  }
  .admission p.md-text{
    text-align: center;
    line-height: 2em;
  }
  .admissionPageImg{
      height: 200px;
  }
  .admission div:nth-child(1){
      width: 100%;
      background-color: white;
      padding: 10px 5px;
  }
  .admission div.form{
    margin-top: 30px;
      width:100%;
      background-color: inherit;
  }
  #info h3{
    text-align: center;
    margin-top: 10px;
  }
  .detail h6{
    text-align: center;
  }
  .tab button{
    padding: 7px 10px;
    font-size: 13px;
  } 
  .tabcontent{
    padding: 20px 5px 10px;
  }
  .tabcontent ul li{
    text-align: left;
    line-height: 2em;
    margin-left: -30px;
  }
  .collapsible{
    padding: 7px 8px;
    font-size: 14px;
  }
  .regCenters p:nth-child(2){
    text-align: left;
    font-weight: 300;
  }
}