/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.pt-course-finder {
  max-width: 1000px !important;
  min-height: 400px;
}
.countries-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}
.countries-img-wrap {
  background-color: #ffe53b;
  background-image: linear-gradient(147deg, #ffe53b 0%, #ff2525 74%);
  min-height: 140px;
}
.countries-wrap article {
  padding: 5px 15px;
  font-size: 18px;
  text-align: right;
  box-sizing: border-box;
}
.countries-wrap a {
  text-decoration: none;
  /* box-shadow: 2px 2px 8px 0px #919191; */
  box-shadow: rgba(0, 0, 0, 0.17) 0px 2px 12px;
}

.universities-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}
.universities-wrap article {
  box-sizing: border-box;
  box-shadow: rgba(0, 0, 0, 0.17) 0px 2px 12px;
  border-radius: 8px;
  min-height: 200px;
}
.universities-wrap a {
  text-decoration: none;
}
.universities-wrap article p {
  margin: 0;
  padding: 0;
}
.universities-wrap article .university-name {
  font-size: 18px;
  font-weight: bold;
}
.universities-wrap article .university-location {
  font-size: 14px;
}
.universities-anchor-img {
  height: 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1c75bc;
  filter: brightness(0.8);
}
.university-info {
  padding: 15px;
}
.scholorship-offered {
  background: white;
  width: 100%;
  border-radius: 0 0 8px 8px;
  display: flex;
  text-decoration: none;
  justify-content: space-between;
  padding: 5px;
  box-sizing: border-box;
  align-items: center;
}
.scholorship-offered p:nth-child(1) {
  font-size: 14px;
}
.scholorship-offered p:nth-child(2) {
  font-weight: 900;
}
.scholorship-offered p:nth-child(2) span:nth-child(1) {
  font-size: 12px;
}
#pt-form-1 .countriesList {
  width: 100%;
  padding: 12px 8px;
  color: #616161;
  border: 1px solid #b8b8b8;
  border-radius: 6px;
  margin-top: 5px;
  margin-bottom: 30px;
}
#pt-form-2 .countriesList {
  width: 100%;
  padding: 12px 8px;
  color: #616161;
  border: 1px solid #b8b8b8;
  border-radius: 6px;
}
#pt-uni-filter-wrap {
  min-width: 1000px;
}
#pt-form-2 {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
#pt-form-2 label {
  display: flex;
  justify-content: flex-end;
  width: 50%;
  gap: 15px;
  align-items: center;
}
.banner-img-wrap {
  height: 250px;
  background: rgb(22, 7, 139);
  background: linear-gradient(
    264deg,
    rgba(22, 7, 139, 1) 0%,
    rgba(45, 77, 253, 1) 100%
  );
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0.8);
}
.university-detail-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
.university-details h3,
.university-details h5 {
  margin: 0;
}

.uni-detail-programs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 50px;
  row-gap: 10px;
}
.uni-detail-programs a {
  text-decoration: none;
  color: navy;
}
.uni-detail-program:hover {
  color: black;
}

.uni-detail-scholarship {
  margin: 0;
  font-style: italic;
  font-weight: bold;
  text-decoration: underline;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .countries-wrap {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .universities-wrap {
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
  .university-detail-info {
    flex-direction: column;
    align-items: start;
  }
  .uni-detail-programs {
    grid-template-columns: 1fr 1fr;
  }
  #pt-form-2 {
    flex-direction: column;
  }
  #pt-form-2 label {
    width: 100%;
  }
}

@media screen and (max-width: 576px) {
  .universities-wrap {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
  .uni-detail-programs {
    grid-template-columns: 1fr;
  }
}
/* .uni-detail-program {
  text-decoration: none;
  border: 1px solid #c1c1c1;
  padding: 5px;
  display: inline-block;
  margin: 3px;
  font-size: 15px;
} */

/**
New Design
**/
.filter-item input {
  border-radius: 4px !important;
  border: 1px solid #aeaeae;
}
.filter-item input:checked {
  background-color: #8abb2a;
  border-color: #8abb2a;
}

.result-item {
  transition: all 0.3s;
}
.result-item:hover {
  border-color: rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25) !important;
}
.uni-name-location {
  max-width: 265px;
}
.descipline-filter {
  height: 300px;
  overflow-y: scroll;
}
.filter-item {
  display: flex;
  gap: 15px;
  justify-items: center;
  padding-block: 5px;
}
.university-location {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
