.our-faculties-section {
  background: #e8f4ff;
  padding: 1.5rem;
}

.main_facuties_container h2 {
  font-weight: 600;
  font-size: 1.5rem;
  color: #363636;
  border-bottom: 5px solid #ffd23f;
  width: fit-content;
  margin: auto;
  text-transform: capitalize;
  padding-bottom: 0.2rem;
  margin-bottom: 1.5rem;
}

.card_container_box {
  width: 90%;
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-behavior: smooth;
  margin-inline: auto;
}

.card_container_box::-webkit-scrollbar {
  border: none;
  width: 0px;
}

.card_container_box .card_flex_box_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin-inline: auto;
}

.main_card {
  border: 1px solid rgba(186, 186, 186, 0.5);
  width: 265px;
  height: 300px;
  margin: 0px 16px;
  position: relative;
  border-radius: 10px;
  transition: all 0.6s;
}

.main_card .img_section {
  height: 63%;
  width: 100%;
  transition: all 0.6s;
}

.main_card .img_section img {
  height: 100%;
  width: 100%;
  border-radius: 10px;
}
.main_card:hover .img_section {
  height: 0px;
  z-index: -1;
}

.faculties_content_section {
  position: absolute;
  height: 110px;
  overflow: hidden;
  transition: all 0.6s;
  color: #363636;
  padding: 10px;
  cursor: pointer;
}

.faculties_content_section::-webkit-scrollbar {
  border: 0px;
  border: 0px;
}

.main_card:hover .faculties_content_section {
  top: 0px;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #33308b;
  color: #fff;
  border-radius: 10px;
  display: grid;
  align-content: center;
}

.main_card:hover .content {
  color: #fff;
}

.faculties_content_section .name {
  font-family: "Outfit";
  font-size: 15px;
  font-weight: 700;
}

.faculties_content_section .title {
  font-family: "Outfit";
  font-size: 14px;
  font-weight: 500;
  margin: 7px 0px;
  opacity: 0.9;
}
.faculties_content_section .content {
  color: #9a9a9a;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  opacity: 0.9;
  text-align: justify;
}

@media (min-width: 200px) and (max-width: 550px) {
  .faculties_direction_btn {
    display: none;
  }
}
