@import url("https://use.typekit.net/mol7rtc.css");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
* {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
}

body {
  font-family: "aktiv-grotesk", sans-serif;
  margin: 0;
  padding: 0;
  font-size: 20px;
  line-height: 1.4em;
  color: #707579;
}

a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-decoration: underline;
  color: #707070;
}

a:hover {
  color: #444040;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 700;
  color: #08121A;
}

.grid-container {
  max-width: 100%;
  width: 1318px;
  margin: 0 auto;
  padding: 0 20px;
}

.directory__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.directory__Cl {
  padding: 0 20px;
  margin-bottom: 40px;
  max-width: 320px;
  font-size: 16px;
}

.directory__box .student_thumb {
  width: 265px;
  height: 265px;
  margin: 0 auto;
  border-radius: 50%;
  background: #f5f5f5;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.directory__box .student_thumb img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-height: 280px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 1;
  width: auto;
  height: auto;
}

.directory__box .student_thumb img.hover_img {
  opacity: 0;
  visibility: hidden;
}

.directory__box .student_thumb .popup_link {
  position: absolute;
  margin: 0 auto;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  text-align: center;
  z-index: 2;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  visibility: hidden;
  opacity: 0;
}

.directory__box .student_thumb .popup_link a {
  color: #ffffff;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: inline-block;
  border-radius: 50%;
  z-index: 1;
  position: relative;
}

.directory__box .student_thumb .popup_link span {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  color: #ffffff;
}

.directory__box .student_thumb::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
}

.directory__box:hover .student_thumb::after {
  opacity: 1;
  visibility: visible;
}

.directory__box:hover .student_thumb .normal_img {
  opacity: 0;
  visibility: hidden;
}

.directory__box:hover .student_thumb .hover_img, .directory__box:hover .student_thumb .popup_link {
  opacity: 1;
  visibility: visible;
}

.directory__box .student_info {
  text-align: center;
}

.directory__box .student_info h4 {
  font-size: 21px;
  margin: 0 0 10px;
  font-weight: bold;
}

.directory__box .student_info h4 .s_name {
  display: block;
}

.directory__box .student_info p {
  line-height: 1.2em;
  margin: 0;
}

.custom-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 110.145ms 0ms;
  transition: opacity 110.145ms 0ms;
}

.custom-popup__holder {
  max-width: 1000px;
  width: 90%;
  max-height: 80vh;
  background: #fff;
  border-radius: 8px;
  padding: 50px;
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  -webkit-transition: opacity 400ms, -webkit-transform 400ms;
  transition: opacity 400ms, -webkit-transform 400ms;
  transition: opacity 400ms, transform 400ms;
  transition: opacity 400ms, transform 400ms, -webkit-transform 400ms;
  -webkit-transition-delay: 300ms;
          transition-delay: 300ms;
  overflow: auto;
  /* Track */
  /* Handle */
}

@media only screen and (max-width: 639px) {
  .custom-popup__holder {
    padding: 28px;
  }
}

.custom-popup__holder::-webkit-scrollbar {
  width: 7px;
}

.custom-popup__holder::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.custom-popup__holder::-webkit-scrollbar-thumb {
  background: #888;
}

.custom-popup__title {
  font-size: 34px;
  line-height: 1.2em;
  margin-bottom: 40px;
  color: #08121A;
  font-weight: 700;
  text-align: center;
}

@media only screen and (max-width: 639px) {
  .custom-popup__title {
    font-size: 24px;
    margin-bottom: 19px;
  }
}

.custom-popup__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.custom-popup__left {
  width: 65%;
  padding: 0 35px 0 0;
}

@media only screen and (max-width: 991px) {
  .custom-popup__left {
    width: 100%;
    padding: 0 0 30px 0;
  }
}

.custom-popup__left p label {
  display: block;
  color: #000000;
  font-weight: 600;
  margin: 0;
}

.custom-popup__right {
  width: 35%;
}

@media only screen and (max-width: 991px) {
  .custom-popup__right {
    width: 100%;
  }
}

.custom-popup__right .student_thumb::after {
  display: none;
}

.custom-popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  -webkit-transition: .3s transform;
  transition: .3s transform;
}

.custom-popup__close:before, .custom-popup__close:after {
  content: '';
  position: absolute;
  left: 15px;
  top: 3px;
  display: block;
  width: 2px;
  height: 26px;
  background: #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.custom-popup__close:after {
  left: 15px;
  top: 3px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.custom-popup__close:hover {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.custom-popup.is-active {
  opacity: 1;
  pointer-events: auto;
}

.custom-popup.is-active .custom-popup__holder {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.loading-buffering-img {
  width: 100%;
  text-align: center;
}

/* New Features */
.directory__Cl {
  font-size: 16px;
}

@media only screen and (max-width: 480px) {
  .directory__Cl {
    font-size: 14px;
  }
}

.directory__Cl .student_info h4 {
  font-size: 18px;
}

@media only screen and (max-width: 480px) {
  .directory__Cl .student_info h4 {
    font-size: 16px;
  }
}

.mobile-tel-link {
  width: 100%;
  margin: 5px 0;
}

.desktop-tel-link {
  display: inline-block;
  width: 100%;
}

.column-column2 .directory__Cl {
  width: 50%;
  max-width: 100%;
}

@media only screen and (max-width: 639px) {
  .column-column2 .directory__Cl {
    width: 100%;
  }
}

.column-column3 .directory__Cl {
  width: 33%;
  max-width: 100%;
}

@media only screen and (max-width: 768px) {
  .column-column2 .directory__Cl, .column-column3 .directory__Cl, .column-column4 .directory__Cl {
    width: 50%;
  }
}

.column-column1 .directory__Cl {
  max-width: 100%;
  width: 100%;
  margin-bottom: 30px;
}

.column-column1 .directory__Cl > .directory__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  align-items-margin: 0;
}

.column-column1 .directory__Cl > .directory__box > .student_thumb {
  margin: 0;
}

.column-column1 .directory__Cl > .directory__box > .student_info {
  text-align: left;
  width: calc(100% - 265px);
  margin-left: 35px;
}

@media only screen and (max-width: 1350px) {
  .column-column1 .directory__Cl > .directory__box > .student_info {
    width: calc(100% - 150px);
  }
}

@media only screen and (max-width: 480px) {
  .column-column1 .directory__Cl > .directory__box > .student_info {
    width: calc(100% - 120px);
    margin-left: 18px;
  }
}

@media only screen and (max-width: 1350px) {
  .wp-block-columns .column-column1 .directory__Cl > .directory__box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media only screen and (max-width: 1350px) {
  .wp-block-columns .column-column1 .directory__Cl > .directory__box > .student_info {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
}

.directory__box .student_info p br {
  display: none;
}

@media only screen and (max-width: 1350px) {
  .directory__box .student_thumb {
    width: 150px;
    height: 150px;
  }
}

@media only screen and (max-width: 480px) {
  .directory__box .student_thumb {
    width: 120px;
    height: 120px;
  }
}

@media only screen and (max-width: 1350px) {
  .directory__box .student_thumb img {
    max-height: 150px;
  }
}

@media only screen and (max-width: 480px) {
  .directory__box .student_thumb img {
    max-height: 120px;
  }
}

.directory.directory-two-cols .directory__inner {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.directory.directory-two-cols .directory__Cl {
  width: 100%;
  max-width: none;
}

.directory.directory-two-cols .directory__Cl .directory__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.directory.directory-two-cols .directory__Cl .student_thumb {
  width: 200px;
  height: 250px;
  border-radius: 0;
  margin: 0;
}

@media only screen and (max-width: 479px) {
  .directory.directory-two-cols .directory__Cl .student_thumb {
    width: 200px;
    height: 250px;
    margin: 0 auto;
  }
}

.directory.directory-two-cols .directory__Cl .student_thumb .popup_link {
  display: none;
}

.directory.directory-two-cols .directory__Cl .student_info {
  width: calc( 100% - 200px);
  text-align: left;
  padding-left: 20px;
}

@media only screen and (max-width: 479px) {
  .directory.directory-two-cols .directory__Cl .student_info {
    width: calc( 100% - 0px);
    padding-left: 0;
    padding-top: 20px;
  }
}

.directory.directory-two-cols .directory__Cl .student_info > p {
  font-size: 17px;
}

.directory.directory-two-cols .directory__Cl .student_info > p > a {
  display: block;
  margin: 0 0 10px;
  color: #bc1119;
}

.directory.directory-two-cols .s_designation {
  text-transform: uppercase;
  color: #000;
  font-size: 18px;
  display: block;
  padding: 0 0 10px;
}

.department_title {
  width: 100%;
  padding: 0 20px;
}

.filter_option_search {
  position: relative;
  margin-right: 20px;
  max-width: 250px;
  width: 100%;
}

.filter_option_search input[type="text"] {
  height: 44px;
  border-radius: 0;
  padding: 0 46px 0 15px;
  width: 100%;
}

.filter_option_search input[type="text"]::-webkit-input-placeholder {
  color: #404040;
}

.filter_option_search input[type="text"]:-ms-input-placeholder {
  color: #404040;
}

.filter_option_search input[type="text"]::-ms-input-placeholder {
  color: #404040;
}

.filter_option_search input[type="text"]::placeholder {
  color: #404040;
}

.filter_option_search input[type="submit"] {
  position: absolute;
  right: 0;
  border: 0;
  background-color: transparent;
  font-size: 0;
  width: 44px;
  height: 44px;
  background-image: url(../images/search-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}

.clear-filter-btn button {
  border: 0;
  background: transparent;
  padding: 0 25px 0 0;
  color: #bc1119;
  position: relative;
}

.clear-filter-btn button::before {
  content: "";
  width: 18px;
  height: 2px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #bc1119;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.clear-filter-btn button::after {
  content: "";
  width: 18px;
  height: 2px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #bc1119;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.fiter_area {
  padding: 0 !important;
  margin: 0 !important;
}

.fiter_area label {
  color: #08121A;
  font-weight: bold;
}

.fiter_area .filter_flex > * {
  width: 100%;
  max-width: 100%;
  margin: 0 0 10px;
}

.fiter_area .filter_option_dropdown {
  width: 100%;
  max-width: 100%;
}

.fiter_area .filter_option_dropdown select {
  max-width: 100%;
}

.directoryNew_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.directoryNew_main__left {
  width: 30%;
}

@media only screen and (max-width: 991px) {
  .directoryNew_main__left {
    width: 100%;
  }
}

.directoryNew_main__left__inner {
  position: -webkit-sticky;
  position: sticky;
  top: 50px;
}

.directoryNew_main__right {
  width: 70%;
  padding: 0 0 0 70px;
}

@media only screen and (max-width: 991px) {
  .directoryNew_main__right {
    width: 100%;
    padding: 40px 0 0 0;
  }
}

.pess_form_cover {
  padding: 40px 0 0 0;
}

.pess_form_cover form .gform_fields .gfield textarea {
  height: 100px !important;
}

.pess_form_cover form .gform_fields .gfield .name_first label, .pess_form_cover form .gform_fields .gfield .name_last label {
  display: none;
}

.page-id-30634 .entry-content {
  overflow: visible;
}

@media only screen and (max-width: 991px) {
  .directory.directory-single-cols .directoryNew_main__left p br {
    display: none;
  }
}

.directory.directory-single-cols .directory__inner {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media only screen and (max-width: 781px) {
  .directory.directory-single-cols .directory__inner {
    margin: 0;
  }
}

.directory.directory-single-cols .directory__Cl {
  width: 100%;
  max-width: none;
  border-bottom: 1px solid #ccc;
  padding-bottom: 40px;
}

@media only screen and (max-width: 781px) {
  .directory.directory-single-cols .directory__Cl {
    padding-left: 0;
    padding-right: 0;
  }
}

.directory.directory-single-cols .directory__Cl .directory__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.directory.directory-single-cols .directory__Cl .student_thumb {
  margin: 0;
  width: 150px;
  height: 150px;
}

@media only screen and (max-width: 479px) {
  .directory.directory-single-cols .directory__Cl .student_thumb {
    margin: 0 auto;
  }
}

.directory.directory-single-cols .directory__Cl .student_thumb img {
  top: 0;
  bottom: auto;
}

@media only screen and (max-width: 639px) {
  .directory.directory-single-cols .directory__Cl .student_thumb img {
    max-height: 220px;
  }
}

.directory.directory-single-cols .directory__Cl .student_info {
  width: calc( 100% - 150px);
  text-align: left;
  padding-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 479px) {
  .directory.directory-single-cols .directory__Cl .student_info {
    width: calc( 100% - 0px);
    padding-left: 0;
    padding-top: 20px;
    text-align: center;
  }
}

.directory.directory-single-cols .directory__Cl .student_info > p {
  font-size: 17px;
}

.directory.directory-single-cols .directory__Cl .student_info > p > a {
  display: block;
  margin: 0 0 10px;
  color: #bc1119;
}

.directory.directory-single-cols .directory__Cl .student_info p {
  line-height: 1.5em;
}

@media only screen and (max-width: 1279px) {
  .directory.directory-single-cols .directory__Cl .student_info p {
    margin: 0;
  }
}

.directory.directory-single-cols .directory__Cl .student_info__left {
  width: 60%;
  padding-right: 20px;
}

@media only screen and (max-width: 1279px) {
  .directory.directory-single-cols .directory__Cl .student_info__left {
    width: 100%;
    padding-right: 0;
  }
}

@media only screen and (max-width: 1279px) {
  .directory.directory-single-cols .directory__Cl .student_info__left p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media only screen and (max-width: 479px) {
  .directory.directory-single-cols .directory__Cl .student_info__left p {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .directory.directory-single-cols .directory__Cl .student_info__left p br {
    display: none;
  }
}

.directory.directory-single-cols .directory__Cl .student_info__left p br:last-child {
  display: none;
}

.directory.directory-single-cols .directory__Cl .student_info__right {
  width: 40%;
  padding: 0 0 0 40px;
  border-left: 1px solid #ccc;
}

@media only screen and (max-width: 1279px) {
  .directory.directory-single-cols .directory__Cl .student_info__right {
    width: 100%;
    padding: 20px 0 0 0;
    border-left: 0;
  }
}

.directory.directory-single-cols .directory__Cl .student_info__right .location_text {
  margin-bottom: 20px;
  font-size: 18px;
  color: #000000;
}

@media only screen and (max-width: 1279px) {
  .directory.directory-single-cols .directory__Cl .student_info__right .location_text {
    margin-bottom: 10px;
  }
}

.directory.directory-single-cols .directory__Cl .student_info__right .office_location {
  font-size: 18px;
  color: #000000;
}

.directory.directory-single-cols .s_designation {
  font-size: 18px;
  display: block;
  padding: 0 0 25px;
  color: #000000;
}

@media only screen and (max-width: 1279px) {
  .directory.directory-single-cols .s_designation {
    padding: 0 0 15px;
  }
}

@media only screen and (max-width: 639px) {
  .directory.directory-single-cols .s_designation {
    font-size: 16px;
  }
}

@media only screen and (max-width: 639px) {
  .directory.directory-single-cols .s_designation br {
    display: none;
  }
}

@media only screen and (max-width: 1279px) {
  .directory.directory-single-cols .filter_option_search {
    margin-right: 15px;
  }
}

.directory.directory-single-cols .filter_new_layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 60px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 1279px) {
  .directory.directory-single-cols .filter_new_layout {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.directory.directory-single-cols .filter_new_layout .clear-filter-btn {
  margin-left: 15px;
}

@media only screen and (max-width: 1279px) {
  .directory.directory-single-cols .filter_new_layout .clear-filter-btn {
    width: 100%;
    margin: 0;
  }
}

.directory.directory-single-cols .filter_new_layout .filter-option {
  margin: 0;
  padding: 0;
}

.directory.directory-single-cols .filter_new_layout .filter_flex {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.directory.directory-single-cols .filter_new_layout .filter_flex label {
  margin-right: 20px;
}

.directory.directory-single-cols .filter_new_layout .filter_flex .filter_option_dropdown {
  margin-right: 0;
}

@media only screen and (max-width: 1279px) {
  .directory.directory-single-cols .filter_new_layout .filter_flex > * {
    width: 100%;
    max-width: 100%;
    margin: 0 0 10px !important;
  }
}

@media only screen and (max-width: 1279px) {
  .directory.directory-single-cols .filter_new_layout .filter_flex > * select {
    max-width: 100%;
  }
}

.directory.directory-single-cols .custom-popup .directory__box {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.directory.directory-single-cols .custom-popup .directory__box .student_info {
  padding: 20px 0 0;
  width: 100%;
  text-align: center;
  display: inline-block;
}

.directory.directory-single-cols .custom-popup .directory__box .student_info__left {
  width: 100%;
}

.directory.directory-single-cols .custom-popup .directory__box .student_info__right {
  width: 100%;
  padding: 20px 0 0 0;
}

.alignwide .grid-container {
  width: 100%;
  padding: 0;
}

.mobile-tel-link {
  display: none;
}

@media only screen and (max-width: 1279px) {
  .mobile-tel-link {
    display: inline-block;
  }
}

@media only screen and (max-width: 1279px) {
  .desktop-tel-link {
    display: none;
  }
}

.alpha_filter {
  width: 100%;
  margin: 30px 0 0;
}

.alpha_filter a {
  width: 32px;
  height: 32px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  text-decoration: none;
  line-height: normal;
  font-size: 16px;
  font-weight: bold;
  color: #bc1119;
  margin: 0 1px;
  position: relative;
}

.alpha_filter a:hover {
  color: #e82f3a;
  text-decoration: none;
}

.alpha_filter a.current {
  background: #000000;
  border-radius: 3px;
  color: #ffffff;
}

.alpha_filter a:first-child {
  margin-right: 9px;
}

.alpha_filter a:first-child::after {
  content: "";
  width: 2px;
  height: 17px;
  position: relative;
  right: -12px;
  background: #707579;
}

@media only screen and (max-width: 781px) {
  .directory_main .wp-block-columns .wp-block-column:first-child {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.directory.inline-listing-cols .directory__inner .directory__Cl {
  width: 50%;
  max-width: 50%;
}

@media only screen and (max-width: 767px) {
  .directory.inline-listing-cols .directory__inner .directory__Cl {
    width: 100%;
    max-width: 100%;
  }
}

.directory.inline-listing-cols .directory__inner .directory__Cl .directory__box .student_info {
  margin-left: 0px;
  width: 100%;
  text-align: left;
}
/*# sourceMappingURL=directory-style.css.map */