/* Color Variables */
:root {
  --lato-family: "Lato", Arial, sans-serif;
  --poppins-family: "Poppins", Arial, sans-serif;
  --primary: #112269;
  --secondary: #d62c1f;
  --red: #eb2227;
  --yellow: #feB316;
  --blue: #001440;
  --lightBlue: #1a67ce;
  --skyBlue: #ebf2ff;
  --gray: #f7f7f7;
  --black: #000;
  --lt-black: #333;
  --white: #fff;
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 360px;
  color: var(--lt-black);
  font: 400 14px/1.5 var(--lato-family);
}
@media (min-width: 1024px) {
  body {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  body.nav-active {
    overflow: hidden;
  }
}

/* Input Styles */
.text-input {
  color: var(--black);
  background: var(--white);
  font: 400 14px/20px var(--poppins-family);
  padding: 8px 15px;
  text-align: left;
  height: 42px;
  border-radius: 6px;
  border: 1px solid var(--primary);
  transition: 0.3s;
}
@media (min-width: 1024px) {
  .text-input {
    padding: 8px 20px;
  }
}
.text-input::placeholder {
  color: #8d8d8d;
  opacity: 1;
}
.text-input:focus {
  outline: none;
  border-color: #808d94;
}

textarea.text-input {
  height: 120px;
  resize: none;
}

/* Button Styles */
.btn {
  font: 500 14px/20px "Poppins", Arial, sans-serif;
  padding: 8px 13px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: var(--secondary);
  background-color: transparent;
  transition: 0.3s;
  cursor: pointer;
  border: 2px solid var(--secondary);
  min-width: 130px;
  text-transform: uppercase;
}
.btn:hover {
  color: var(--white);
  background-color: var(--secondary);
}
.btn .icon {
  flex-shrink: 0;
}
.btn.btn-white {
  color: var(--white);
  border-color: var(--white);
}
.btn.btn-white:hover {
  color: var(--black);
  background-color: var(--white);
}

/* Wrapper Styles */
.wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 81px;
}
@media (min-width: 768px) {
  .wrapper {
    padding-top: 92px;
  }
}
@media (min-width: 1024px) {
  .wrapper {
    padding-top: 124px;
  }
}

/* Container Styles */
.container {
  max-width: 1220px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Header Styles */
.header {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 11;
  padding: 15px 0;
  background: var(--white);
  transition: padding 0.5s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (min-width: 1024px) {
  .header {
    padding: 22px 0;
  }
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.header .logo {
  width: 185px;
  display: block;
}
@media (min-width: 768px) {
  .header .logo {
    width: 225px;
  }
}
@media (min-width: 1024px) {
  .header .logo {
    width: 295px;
  }
}
.header .logo a {
  display: block;
}
.header .logo a img {
  width: 100%;
  height: auto;
  display: block;
}

/* Sticky Header Styles */
.sticky-header .header:not(.not-sticky) {
  position: fixed;
  padding: 10px 0;
}

/* Mobile Nav Opener Styles */
.nav-opener {
  position: absolute;
  right: 15px;
  width: 24px;
  height: 20px;
  border-top: 2px solid var(--secondary);
  transition: all 0.4s ease;
  display: none;
}
.nav-active .nav-opener {
  border-top: none;
}
@media (max-width: 767px) {
  .nav-opener {
    display: block;
  }
}
.nav-active .nav-opener {
  z-index: 2;
}
@media (max-width: 767px) {
  .nav-active .nav-opener {
    border-top-color: var(--white);
  }
}
.nav-opener:after, .nav-opener:before {
  background: var(--secondary);
  left: 0;
  right: 0;
  top: 6px;
  height: 2px;
  content: "";
  position: absolute;
  transition: all 0.4s ease;
}
.nav-active .nav-opener:after, .nav-active .nav-opener:before {
  top: 10px;
  transform: rotate(45deg);
  background: var(--white);
}
.nav-opener:after {
  top: 14px;
}
.nav-active .nav-opener:after {
  transform: rotate(-45deg);
}

/* Nav Holder Styles */
.nav-holder {
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
@media (max-width: 767px) {
  .nav-holder {
    padding: 80px 0;
    width: 300px;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--primary);
    position: fixed;
    display: block;
    transition: all 0.4s ease;
    transform: translate(100%, 0);
    overflow: auto;
  }
  .nav-active .nav-holder {
    transform: none;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.2);
  }
}
.resize-active .nav-holder {
  transition: none;
}
.nav-holder .btn-holder {
  width: 100%;
}
@media (min-width: 768px) {
  .nav-holder .btn-holder {
    width: inherit;
  }
}
.nav-holder .btn-holder .btn {
  margin: 20px 24px 0;
  width: calc(100% - 48px);
}
@media (min-width: 768px) {
  .nav-holder .btn-holder .btn {
    margin: 0;
    width: auto;
  }
}

/* Menu Styles */
.menu {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font: 400 14px/1.5 var(--lato-family);
}
@media (min-width: 768px) {
  .menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
@media (min-width: 768px) {
  .menu li {
    border-bottom: 0;
    padding: 0 10px;
  }
}
@media (min-width: 1024px) {
  .menu li {
    padding: 0 15px;
  }
}
.menu li.active > a {
  color: #ff3526;
}
@media (min-width: 768px) {
  .menu li.active > a {
    color: var(--secondary);
  }
}
.menu li.active > a:after {
  width: 100%;
}
.menu a {
  text-decoration: none;
  transition: all 0.4s ease;
  display: block;
  color: var(--white);
  padding: 16px 24px 12px;
}
@media (min-width: 768px) {
  .menu a {
    padding: 10px 0;
    color: var(--primary);
    position: relative;
  }
}
.menu a:after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  background: var(--secondary);
  height: 2px;
  width: 0;
  transition: 0.3s;
  display: none;
}
@media (min-width: 768px) {
  .menu a:after {
    display: block;
  }
}
.menu a:hover {
  color: #ff3526;
}
@media (min-width: 768px) {
  .menu a:hover {
    color: var(--secondary);
  }
}
.menu a:hover:after {
  width: 100%;
}

/* Main Styles */
.main {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Visual Block Styles */
.visual-block {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.visual-block .visual-image {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.visual-block .visual-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.visual-block .container {
  position: relative;
  z-index: 1;
}
.visual-block .textbox {
  padding: 45px 0;
  min-height: 300px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}
@media (min-width: 768px) {
  .visual-block .textbox {
    justify-content: center;
    min-height: 436px;
  }
}
@media (min-width: 1024px) {
  .visual-block .textbox {
    max-width: 900px;
  }
}
.visual-block h1 {
  color: var(--white);
  margin: 0 0 12px;
  line-height: 1;
  font-weight: 300;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  font-size: 36px;
}
@media (min-width: 768px) {
  .visual-block h1 {
    font-size: 50px;
  }
}
@media (min-width: 1024px) {
  .visual-block h1 {
    font-size: 65px;
  }
}
@media (min-width: 1200px) {
  .visual-block h1 {
    font-size: 80px;
  }
}
.visual-block p {
  margin: 0 0 30px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.visual-block p:last-child {
  margin: 0;
}

/* Search Block Styles */
.search-block {
  width: 100%;
  background-color: var(--primary);
  padding: 30px 0 40px;
}
.search-block h2 {
  color: var(--white);
  margin: 0 0 20px;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .search-block h2 {
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  .search-block h2 {
    font-size: 36px;
  }
}

/* Search Form Styles */
.search-form {
  width: 100%;
}

/* Advance Search Style */
.advance-search {
  width: 100%;
}
.advance-search .search-opener {
  font: 600 14px/1.5 var(--poppins-family);
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-right: 22px;
  transition: 0.3s;
  margin-top: 22px;
}
.advance-search .search-opener:after {
  width: 13px;
  height: 8px;
  content: "";
  background: url("../images/arrow-down.svg") no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.advance-search .search-opener:hover {
  opacity: 0.7;
}
.advance-search .advance-slide {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}
.advance-search .advance-slide .advance-search-form {
  padding-top: 20px;
  max-width: 100%;
  gap: 10px;
}
@media (min-width: 1024px) {
  .advance-search .advance-slide .advance-search-form {
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .advance-search .advance-slide .advance-search-form .form-fields {
    gap: 20px;
  }
}
.advance-search.advance-active .search-opener:after {
  transform: translateY(-50%) rotate(-180deg);
}
.advance-search.advance-active .advance-slide {
  max-height: 500px;
}
@media (min-width: 768px) {
  .advance-search.advance-active .advance-slide {
    max-height: 300px;
  }
}
@media (min-width: 1024px) {
  .advance-search.advance-active .advance-slide {
    max-height: 175px;
  }
}
@media (min-width: 1200px) {
  .advance-search.advance-active .advance-slide {
    max-height: 105px;
  }
}

/* Advance Search Form Styles */
.advance-search-form {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 1024px) {
  .advance-search-form {
    gap: 25px;
  }
}
@media (min-width: 1200px) {
  .advance-search-form {
    flex-wrap: nowrap;
    gap: 40px;
    max-width: 1010px;
  }
}
.advance-search-form .form-fields {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -7px;
  width: calc(100% + 14px);
}
@media (min-width: 768px) {
  .advance-search-form .form-fields {
    margin: 0 -15px;
    width: calc(100% + 30px);
  }
}
@media (min-width: 1024px) {
  .advance-search-form .form-fields {
    flex-wrap: nowrap;
    gap: 30px;
    margin: 0;
    flex-grow: 1;
    min-width: 0;
  }
}
@media (min-width: 1200px) {
  .advance-search-form .form-fields {
    width: auto;
    gap: 40px;
  }
}
.advance-search-form .form-group {
  width: 50%;
  padding: 7px;
}
@media (min-width: 768px) {
  .advance-search-form .form-group {
    padding: 15px;
  }
}
@media (min-width: 1024px) {
  .advance-search-form .form-group {
    width: auto;
    flex: 1;
    padding: 0;
  }
}
.advance-search-form label {
  font-size: 18px;
  font-weight: 500;
  color: #606EA8;
  display: block;
  margin: 0 0 3px;
}
@media (min-width: 768px) {
  .advance-search-form label {
    margin: 0 0 8px;
  }
}
.advance-search-form .custom-select {
  position: relative;
  width: 100%;
}
.advance-search-form .custom-select:after {
  width: 13px;
  height: 8px;
  content: "";
  background: url("../images/arrow-down.svg") no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: none;
}
.advance-search-form select {
  width: 100%;
  font: 16px/20px var(--lato-family);
  background: var(--primary);
  color: var(--white);
  height: 41px;
  border: 0;
  padding: 0 25px 0 0;
  border-bottom: 1px solid var(--white);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.advance-search-form .text-input {
  width: 100%;
  color: var(--white);
  border-color: var(--white);
  background-color: var(--primary);
}
.advance-search-form .text-input::placeholder {
  color: var(--white);
}
.advance-search-form .btn {
  flex-shrink: 0;
  color: var(--primary);
  background: var(--white);
  font-family: var(--lato-family);
  font-weight: 600;
  margin-left: auto;
  width: 100%;
}
@media (min-width: 1024px) {
  .advance-search-form .btn {
    width: auto;
  }
}
.advance-search-form .btn:hover {
  color: var(--white);
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.advance-search-form .btn.btn-send {
  color: #fff;
  background-color: #606EA8;
  border-color: #606EA8;
  min-width: 115px;
}
.advance-search-form .btn.btn-send:hover {
  color: #112269;
  background-color: #fff;
  border-color: #fff;
}

/* Footer Styles */
.footer {
  overflow: hidden;
  background-color: var(--primary);
  color: var(--white);
  padding: 30px 0;
  font-size: 14px;
  line-height: 1.5;
}
.footer .footer-logo {
  width: 185px;
  display: block;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .footer .footer-logo {
    width: 225px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1024px) {
  .footer .footer-logo {
    width: 295px;
    margin-bottom: 50px;
  }
}
.footer .footer-logo a {
  display: block;
}
.footer .footer-logo a img {
  width: 100%;
  height: auto;
  display: block;
}
.footer .title {
  display: block;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 15px;
}

/* Footer Columns Styles */
.footer-columns {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .footer-columns {
    flex-wrap: nowrap;
    gap: 30px;
    margin-bottom: 50px;
  }
}
.footer-columns .col {
  width: 50%;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .footer-columns .col {
    width: auto;
    min-width: 150px;
    max-width: 220px;
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .footer-columns .col {
    min-width: 200px;
    max-width: 280px;
  }
}

/* Social Networks Styles */
.social-networks {
  list-style: none;
  padding: 5px 0 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media (min-width: 1024px) {
  .social-networks {
    gap: 20px;
  }
}
.social-networks li a {
  display: block;
  transition: 0.3s;
}
.social-networks li a:hover {
  opacity: 0.5;
}

/* Footer Links Styles */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 16px;
}
.footer-links li:last-child {
  margin-bottom: 0;
}
.footer-links li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 10px;
  background: url("../images/arrow-right.svg") no-repeat;
  background-size: contain;
}
.footer-links li a {
  color: var(--white);
  display: inline-block;
  transition: 0.3s;
  text-decoration: none;
}
.footer-links li a:hover {
  color: var(--red);
}

/* Contact List Styles */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .contact-list li {
    gap: 12px;
  }
}
.contact-list li:last-child {
  margin-bottom: 0;
}
.contact-list li .icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-list li a {
  color: var(--white);
  display: inline-block;
  transition: 0.3s;
  text-decoration: none;
}
.contact-list li a:hover {
  color: var(--red);
}
.contact-list li address {
  font-style: normal;
}

/* Copyrights Styles */
.copyrights {
  text-align: center;
}

.paging-holder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

/* Paging Styles */
.paging {
  list-style: none;
  padding: 10px 15px;
  margin: 0 0 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  background-color: #f2f3f5;
  border-radius: 30px;
}
.paging li {
  color: #999;
  font-weight: 600;
  font-size: 14px;
}
.paging li a {
  color: #999;
  font-weight: 500;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
  padding: 0 6px;
}
.paging li:hover a, .paging li.active a {
  color: #262B66;
  font-weight: 600;
}
.paging li.active {
  color: #262B66;
  font-weight: 600;
}

/* Convocation Block Styles */
.convocation-block {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 30px 0;
}

/* Filters Block Styles */
.filters-block {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 0 0 20px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .filters-block {
    flex-wrap: nowrap;
  }
}
.filters-block .btn {
  color: #c8c8c8;
  font-size: 12px;
  line-height: 16px;
  text-transform: capitalize;
  border: 1px solid #ccc;
  min-width: 99px;
}
@media (max-width: 1023px) {
  .filters-block .btn {
    margin-left: auto;
  }
}
.filters-block .btn:hover {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

/* Filters List Styles */
.filters-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
@media (min-width: 1024px) {
  .filters-list {
    width: auto;
  }
}
.filters-list .filters-tag {
  background-color: #f5f5f5;
  border-radius: 6px;
  color: var(--primary);
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
@media (min-width: 768px) {
  .filters-list .filters-tag {
    gap: 10px;
  }
}
@media (min-width: 1024px) {
  .filters-list .filters-tag {
    font-size: 12px;
    padding: 8px 10px;
  }
}
@media (min-width: 1200px) {
  .filters-list .filters-tag {
    gap: 20px;
  }
}
.filters-list .text {
  display: block;
  padding: 0 0 1px;
}
.filters-list .btn-del {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 3px;
  transition: 0.3s;
  position: relative;
}
.filters-list .btn-del:before, .filters-list .btn-del:after {
  width: 1px;
  height: 8px;
  background-color: #999;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: 0.3s;
}
.filters-list .btn-del:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.filters-list .btn-del:hover {
  background: var(--primary);
}
.filters-list .btn-del:hover:before, .filters-list .btn-del:hover:after {
  background-color: #fff;
}

/* Table Block Styles */
.table-block {
  width: 100%;
}
@media (min-width: 768px) {
  .table-block {
    overflow: hidden;
  }
}
.table-block h3 {
  font-weight: 300;
  font-size: 27px;
}
@media (min-width: 768px) {
  .table-block h3 {
    margin-bottom: 30px;
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  .table-block h3 {
    font-size: 36px;
  }
}

/* Table Scroller Styles */
.table-scroller {
  overflow: auto;
  margin: 0 -15px 10px;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .table-scroller {
    margin: 0 0 10px;
    padding: 0;
  }
}

/* Table Styles */
.table {
  border-collapse: collapse;
  width: 100%;
  color: #222;
  font-size: 12px;
  border: 0;
  margin-bottom: 15px;
  min-width: 600px;
}
@media (min-width: 1024px) {
  .table {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .table {
    font-size: 16px;
  }
}
.table tr {
  border-bottom: 1px solid #eee;
}
.table thead tr:first-child {
  border-bottom: 0;
}
.table th {
  font-weight: 600;
  text-align: left;
  line-height: 1.1;
  background-color: #f2f3f5;
}
.table th:first-child {
  border-radius: 10px 0 0 0;
}
.table th:last-child {
  text-align: right;
  border-radius: 0 10px 0 0;
}
.table th,
.table td {
  padding: 10px 7px;
}
@media (min-width: 768px) {
  .table th,
  .table td {
    padding: 10px;
  }
}
.table th:first-child, .table th:nth-child(2),
.table td:first-child,
.table td:nth-child(2) {
  min-width: 82px;
}
@media (min-width: 768px) {
  .table th:first-child, .table th:nth-child(2),
  .table td:first-child,
  .table td:nth-child(2) {
    max-width: 160px;
  }
}
.table td {
  vertical-align: top;
}
.table td:last-child {
  vertical-align: bottom;
  text-align: right;
}
.table .name {
  color: #262B66;
  display: block;
}
.table .year {
  display: block;
  color: #999;
  margin-top: 8px;
}
.table h3 {
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
  color: #000;
  max-width: 605px;
  margin: 0;
}
@media (min-width: 480px) {
  .table h3 {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .table h3 {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  .table h3 {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .table h3 {
    font-size: 20px;
  }
}
.table .btn-download {
  background-color: #F2F3F5;
  height: 32px;
  width: 100px;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  color: #999;
  font-weight: 500;
  border-radius: 20px;
  text-decoration: none;
  transition: 0.3s;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .table .btn-download {
    margin-bottom: 7px;
    width: 110px;
    gap: 10px;
  }
}
@media (min-width: 1024px) {
  .table .btn-download {
    width: 120px;
  }
}
@media (min-width: 1200px) {
  .table .btn-download {
    width: 130px;
  }
}
.table .btn-download:after {
  width: 12px;
  height: 16px;
  content: "";
  background-image: url("../images/pdf.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (min-width: 1200px) {
  .table .btn-download:after {
    width: 15px;
    height: 20px;
  }
}
.table .btn-download:hover {
  color: #fff;
  background-color: #EB2227;
}
.table .btn-download:hover:after {
  background-image: url("../images/pdf-white.svg");
}
.table .table-tags {
  list-style: none;
  padding: 0;
  margin: 12px 0 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
@media (min-width: 768px) {
  .table .table-tags {
    margin: 12px 0 7px;
  }
}
@media (min-width: 1200px) {
  .table .table-tags {
    gap: 15px;
  }
}
.table .table-tags .tag {
  background-color: #F2F3F5;
  border-radius: 6px;
  color: #999;
  padding: 3px 8px;
  font-weight: 600;
}
@media (min-width: 480px) {
  .table .table-tags .tag {
    padding: 4px 8px;
  }
}
@media (min-width: 1200px) {
  .table .table-tags .tag {
    padding: 6px 10px;
  }
}
.table .year,
.table .tag,
.table .btn-download {
  font-size: 12px;
}
@media (min-width: 1024px) {
  .table .year,
  .table .tag,
  .table .btn-download {
    font-size: 13px;
  }
}
@media (min-width: 1200px) {
  .table .year,
  .table .tag,
  .table .btn-download {
    font-size: 14px;
  }
}

/* Nice Select Styles */
.nice-select {
  -webkit-tap-highlight-color: transparent;
  border-bottom: solid 1px #606EA8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 40px;
  line-height: 40px;
  color: #606EA8;
  outline: none;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: auto;
}
@media (min-width: 1024px) {
  .nice-select {
    font-size: 16px;
  }
}
.nice-select:hover {
  border-color: #d0dae5;
}
.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: #88bfff;
}
.nice-select::after {
  border-bottom: 2px solid #606EA8;
  border-right: 2px solid #606EA8;
  content: "";
  display: block;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  width: 9px;
  height: 9px;
}
.nice-select .current {
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  padding-right: 25px;
  max-width: 255px;
}
.nice-select.open:after {
  transform: rotate(-135deg);
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: #e7ecf2;
  color: #90a1b5;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #cdd5de;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small:after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(-21px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  max-height: 282px;
  overflow: auto;
}
.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 1.5;
  list-style: none;
  outline: none;
  padding-left: 15px;
  padding-right: 29px;
  padding-top: 8px;
  padding-bottom: 8px;
  text-align: left;
  transition: all 0.2s;
  color: #112269;
  white-space: normal;
}
.nice-select .option:hover, .nice-select .option:focus {
  color: #fff;
  background-color: #112269;
}
.nice-select .option.selected.focus {
  color: #fff;
  background-color: #475fc0;
}
.nice-select .option.selected {
  font-weight: bold;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #90a1b5;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}
.no-csspointerevents .nice-select.open .list {
  display: block;
}
.scholar-info-count {
  font-size: 14px;
  color: #d62c1f;
  margin-bottom: 20px;
}