@import url("https://fonts.googleapis.com/css2?family=Duru+Sans&display=swap");
body::-webkit-scrollbar {
  width: 0.5em; }

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }

body::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey; }

header {
  display: block;
  position: relative;
  width: 100%; }

.navbar {
  display: flex;
  width: 100%;
  position: fixed;
  justify-content: space-between;
  height: 60px;
  align-items: center;
  font-family: "Duru Sans", sans-serif;
  font-weight: 600;
  padding: 0 140px;
  z-index: 99;
  background-color: #fff; }
  .navbar .logo img {
    max-width: 225px; }
  .navbar ul {
    display: flex; }
    .navbar ul li {
      position: relative; }
      .navbar ul li:last-child a {
        margin-right: 0; }
      .navbar ul li a {
        font-size: 12px;
        margin-right: 30px;
        display: inline-block;
        color: #1f1b1c;
        height: 100px;
        line-height: 100px;
        z-index: 2;
        position: relative;
        cursor: pointer; }
        .navbar ul li a:hover {
          color: #940001; }
  .navbar .lang-cont {
    width: 80px; }
    @media (max-width: 1024px) {
      .navbar .lang-cont {
        display: none; } }
    .navbar .lang-cont a {
      display: inline-block;
      color: #222222; }

img {
  width: 100%; }

.circle-img {
  -webkit-border-radius: 200px;
  -moz-border-radius: 200px;
  border-radius: 200px;
  overflow: hidden; }
  .circle-img img {
    -webkit-border-radius: 200px;
    -moz-border-radius: 200px;
    border-radius: 200px; }

.gray-bg {
  background-color: #f6f6f6; }

.dark-bg {
  background-color: #1f1b1c;
  color: #fff; }

.btn-primary {
  background-color: #1f1b1c;
  border: 1px solid #1f1b1c;
  color: #fff;
  cursor: pointer; }
  .btn-primary:hover {
    background-color: #fff;
    color: #1f1b1c; }
  .btn-primary.border {
    border: 1px solid #1f1b1c;
    background-color: #fff;
    color: #1f1b1c; }
    .btn-primary.border:hover {
      background-color: #1f1b1c;
      color: #fff; }

.btn-secondary {
  background-color: #1f1b1c;
  color: #1f1b1c; }
  .btn-secondary:hover {
    background-color: #1f1b1c;
    color: #1f1b1c; }

.text-link {
  color: #940001;
  border-bottom: 1px solid #940001;
  transition: all .3s ease;
  font-weight: 600; }
  .text-link:hover {
    border-bottom: 0; }

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

.w-100 {
  width: 100%; }

.mt-60 {
  margin-top: 60px; }

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center; }

.text-max-width {
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
  line-height: 30px; }

.short-text-width {
  max-width: 450px;
  text-align: center;
  margin: 0 auto;
  line-height: 28px; }

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px; }
  .form-group label {
    margin-bottom: 10px; }
    .form-group label.error {
      font-size: 11px;
      color: #ff0000;
      margin-bottom: 10px; }
  .form-group button[type="submit"] {
    max-width: 200px;
    height: 40px;
    width: 100%;
    margin-left: auto;
    font-weight: 700;
    text-transform: uppercase; }

.form-control {
  border: 1px solid #f2f2f2;
  height: 40px;
  border-radius: 3px;
  line-height: 1.5;
  background-color: #f9f9f9;
  padding: 7px 10px;
  transition: all .3s ease;
  font-size: 14px; }
  .form-control.error {
    border: 1px solid tomato; }
  .form-control:focus {
    background-color: #fff; }

textarea.form-control {
  height: 100px; }

.flex-grid {
  width: 1120px;
  margin: 0 auto;
  display: flex; }
  .flex-grid .col {
    flex: 1; }
  .flex-grid.full-width {
    width: 100%;
    margin: 0 auto; }
  .flex-grid.s-b {
    justify-content: space-between; }
  .flex-grid.align-center {
    align-items: center; }
  .flex-grid .content {
    display: flex;
    align-items: center; }
    .flex-grid .content .page-img {
      margin: 0 50px 0 0; }
      .flex-grid .content .page-img img {
        min-width: 275px;
        max-width: 300px;
        box-shadow: -1px 19px 25px rgba(0, 0, 0, 0.15);
        border-radius: 10px; }
      .flex-grid .content .page-img p {
        margin-top: 5px; }

.text-left {
  text-align: left;
  margin: inherit; }

.justify-space-button {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.mt-0 {
  margin-top: 0; }

.pt-0 {
  padding-top: 0; }

.bottom-bg {
  height: 450px; }
  .bottom-bg img {
    width: 100%;
    margin-bottom: -2px;
    height: 500px; }

.mt-50 {
  margin-top: 50px; }

section {
  font-family: "Duru Sans", sans-serif;
  padding: 70px 0;
  position: relative; }
  section h2 {
    text-transform: capitalize;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 35px;
    line-height: 42px;
    font-family: "Duru Sans", sans-serif; }
  section p {
    margin-bottom: 30px;
    line-height: 26px;
    font-size: 14px;
    text-align: justify; }
    section p:last-child {
      margin-bottom: 0; }
  section .btn-group {
    margin-top: 50px; }
  section .btn {
    height: 50px;
    width: 160px;
    margin-right: 30px;
    border: 0;
    font-size: 14px;
    transition: all .3s ease; }
    section .btn:last-child {
      margin-right: 0; }
  section .img-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center; }
  section .box {
    max-width: 345px;
    height: 400px;
    flex-grow: 1;
    flex: 1 1 calc(33.3% - 30px);
    margin: 60px 30px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer; }
    section .box:after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background-color: rgba(0, 0, 0, 0.7);
      opacity: 0;
      z-index: 2;
      transition: all .55s ease; }
    section .box p {
      text-align: center;
      transition: all .55s ease;
      opacity: 0;
      visibility: hidden;
      color: #fff;
      font-size: 18px;
      font-weight: 500;
      z-index: 8;
      padding: 0 40px; }
    section .box button {
      background-color: #940001;
      color: #1f1b1c;
      z-index: 9;
      position: absolute;
      left: 0;
      bottom: 0;
      border: 0;
      max-width: 250px;
      height: 60px;
      font-size: 15px;
      text-transform: uppercase;
      font-weight: 600;
      width: 100%;
      transition: all .5s ease; }
    section .box:hover p {
      opacity: 1;
      visibility: visible; }
    section .box:hover:after {
      opacity: 1; }
    section .box:hover button {
      max-width: 100%;
      right: 0; }
    section .box:last-child {
      margin-right: 0; }
    section .box.box-1 {
      background: url("../images/img-1.png") no-repeat center center; }
    section .box.box-2 {
      background: url("../images/img-2.png") no-repeat center center; }
    section .box.box-3 {
      background: url("../images/img-3.png") no-repeat center center; }
  section .list {
    padding: 0;
    margin: 0;
    max-width: 540px; }
    section .list li a {
      background-color: #fff;
      padding: 30px 45px;
      margin-bottom: 15px;
      transition: all .3s ease;
      display: inline-block;
      color: #1f1b1c;
      text-align: center; }
      section .list li a h6 {
        font-weight: 700;
        margin-bottom: 15px; }
      section .list li a:hover {
        -webkit-box-shadow: 8px 13px 20px rgba(0, 0, 0, 0.05);
        -moz-box-shadow: 8px 13px 20px rgba(0, 0, 0, 0.05);
        box-shadow: 8px 13px 20px rgba(0, 0, 0, 0.05); }

header .navbar {
  display: flex;
  justify-content: space-between;
  height: 60px;
  align-items: center;
  font-family: "Duru Sans", sans-serif;
  font-weight: 600;
  padding: 0 100px; }
  header .navbar .logo img {
    max-width: 225px; }
  header .navbar ul {
    display: flex; }
    header .navbar ul li {
      position: relative; }
      header .navbar ul li a {
        font-size: 14px;
        margin-right: 30px;
        display: inline-block;
        color: #1f1b1c;
        height: 100px;
        line-height: 100px;
        z-index: 2;
        position: relative; }
      header .navbar ul li:last-child a {
        margin-right: 0; }

.sub-header {
  display: block;
  height: 200px;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll; }
  .sub-header h2 {
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #fff;
    padding: 20px 30px;
    margin: 0; }

footer {
  font-family: "Duru Sans", sans-serif;
  padding-bottom: 35px;
  background-color: #f7f7f7; }
  footer .footer-wrap {
    max-width: 1120px;
    margin: 0 auto; }
  footer .list-wrap {
    display: block;
    justify-content: space-between;
    margin: 30px 0 35px 0;
    border-top: 2px solid #1f1b1c;
    border-bottom: 1px solid #ddd;
    padding: 70px 0; }
    footer .list-wrap ul {
      width: 100%;
      text-align: center; }
      footer .list-wrap ul li {
        display: inline-block;
        padding: 10px 20px; }
        footer .list-wrap ul li a {
          display: inline-block;
          transition: all .3s ease;
          font-size: 14px;
          color: #1f1b1c; }
          footer .list-wrap ul li a:hover {
            color: #940001; }
  footer .e-bulletin {
    display: block;
    text-align: center;
    padding: 20px 0 0 0; }
    footer .e-bulletin h6 {
      display: block;
      font-size: 20px;
      padding: 10px 0;
      font-weight: 700;
      color: #333333; }
    footer .e-bulletin input {
      display: inline-block;
      min-width: 200px;
      padding: 5px 15px;
      border: 1px #cccccc solid; }
    footer .e-bulletin button {
      vertical-align: top; }
    footer .e-bulletin .result-ebulletin {
      display: block;
      padding: 15px 0 0 0;
      font-size: 12px; }
      footer .e-bulletin .result-ebulletin.success {
        color: #00af00; }
      footer .e-bulletin .result-ebulletin.error {
        color: #ff6347; }
  footer .justify-space-button {
    font-size: 12px; }

.subpage-header {
  position: relative;
  background-color: #fff;
  padding: 30px 60px;
  margin-bottom: 0;
  font-size: 30px;
  display: block;
  text-align: center; }

.subpage-content {
  padding: 0 160px; }
  .subpage-content h3 {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
    border-bottom: 1px solid #cecece;
    padding-bottom: 10px; }

.banner {
  position: relative; }
  .banner:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #474445; }
  .banner img {
    height: 200px;
    position: relative; }

#news .news-card {
  display: flex;
  margin-bottom: 30px;
  padding: 30px;
  background-color: #f2f2f2;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius: 3px; }
  #news .news-card .img {
    margin-right: 30px; }
    #news .news-card .img img {
      max-width: 250px; }

#speciality .flex-center {
  flex-direction: column; }
  #speciality .flex-center .flex-grid {
    margin: 50px 0; }
    #speciality .flex-center .flex-grid:nth-child(odd) {
      flex-direction: row-reverse; }
    #speciality .flex-center .flex-grid .col {
      margin-right: 100px; }
      #speciality .flex-center .flex-grid .col.img img {
        max-height: 500px; }

#teams .filter-cont, .teams .filter-cont {
  display: block;
  width: 100%;
  text-align: right;
  padding: 10px 15px; }
  @media (max-width: 1024px) {
    #teams .filter-cont, .teams .filter-cont {
      text-align: center; } }
  #teams .filter-cont a, .teams .filter-cont a {
    display: inline-block;
    padding: 8px 10px;
    border: 1px #940001 solid;
    margin: 1px;
    font-size: 12px;
    color: #1e1e1e;
    text-align: center; }
    @media (max-width: 1024px) {
      #teams .filter-cont a, .teams .filter-cont a {
        width: 48%; } }
    #teams .filter-cont a:hover, .teams .filter-cont a:hover {
      background-color: #c10001;
      color: #fff; }
    #teams .filter-cont a.active, .teams .filter-cont a.active {
      background-color: #940001;
      color: #fff; }

#teams .flex-grid, .teams .flex-grid {
  flex-wrap: wrap; }

#teams .subpage-content, .teams .subpage-content {
  display: flex;
  flex-wrap: wrap;
  margin-right: -25px; }

#teams .personal-card, .teams .personal-card {
  border: 1px solid #f2f2f2;
  padding: 0;
  border-radius: 4px;
  margin: 0 14px 14px 0;
  flex: 1 1 calc(20% - 14px);
  max-width: calc(20% - 14px); }
  #teams .personal-card:last-child, .teams .personal-card:last-child {
    margin-right: 0; }
  #teams .personal-card ul li, .teams .personal-card ul li {
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    font-family: "Duru Sans", sans-serif;
    color: #1f1b1c; }
    #teams .personal-card ul li:hover, .teams .personal-card ul li:hover {
      background-color: #f9f9f9; }
    #teams .personal-card ul li a, .teams .personal-card ul li a {
      display: block;
      color: #1f1b1c;
      padding: 20px 0; }
      #teams .personal-card ul li a .img-crop, .teams .personal-card ul li a .img-crop {
        display: block;
        width: 100%;
        height: 195px;
        overflow: hidden; }
    #teams .personal-card ul li span, .teams .personal-card ul li span {
      display: block;
      color: #940001;
      padding: 5px 0; }
      #teams .personal-card ul li span.title, .teams .personal-card ul li span.title {
        font-weight: 400;
        color: #333;
        font-size: 12px;
        font-style: italic; }

#articles h6,
#books h6,
#articles-detail h6 {
  font-family: "Duru Sans", sans-serif;
  margin-bottom: 25px;
  font-size: 20px;
  line-height: 30px;
  display: block;
  padding: 0 0 15px 0;
  align-items: center; }
  #articles h6 span,
  #books h6 span,
  #articles-detail h6 span {
    font-size: 16px;
    color: #797979; }

#articles .header-info,
#books .header-info,
#articles-detail .header-info {
  display: block;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px; }
  #articles .header-info span,
  #books .header-info span,
  #articles-detail .header-info span {
    font-size: 14px;
    color: #a9a9a9; }
    #articles .header-info span i,
    #books .header-info span i,
    #articles-detail .header-info span i {
      margin: 0 5px; }
  #articles .header-info h6,
  #books .header-info h6,
  #articles-detail .header-info h6 {
    margin-bottom: 0; }

#articles .info a,
#books .info a,
#articles-detail .info a {
  color: #940001;
  font-size: 13px; }
  #articles .info a:hover,
  #books .info a:hover,
  #articles-detail .info a:hover {
    border-bottom: 1px solid #940001;
    padding-bottom: 5px; }

#articles .description,
#books .description,
#articles-detail .description {
  margin: 30px; }
  #articles .description p,
  #books .description p,
  #articles-detail .description p {
    margin-bottom: 10px; }

#articles .item,
#books .item,
#articles-detail .item {
  margin: 20px 0; }

/*
#articles,
#books,
#articles-detail  {
  .header-info {
    span {
      display: inline-block;
      width: 80%;
      font-size: 14px;
      color: #a9a9a9;
      padding: 10px 0;
      @media (max-width: 1024px) {
        width: 100%;
      }
      i {
        margin: 0 5px;
      }
    }
    .social-share {
      display: inline-block;
      width: 20%;
      padding: 5px 20px 5px 5px;
      text-align: right;
      @media (max-width: 1024px) {
        width: 100%;
        text-align: left;
      }
      span {
        display: inline-block;
        width: auto;
        font-size: 14px;
        vertical-align: top;
        color: #222222;
        padding-right: 5px;
      }
    }
    a {
      display: inline-block;
      padding: 5px;
      font-size: 24px;
      color: #222222;
      &:hover {
        color: #1da1f2;
      }
    }
    h6 {
      display: block;
      margin-bottom: 0;
    }
  }

}
*/
#articles .page-img img,
#articles-detail .page-img img {
  max-height: 300px; }

#articles-detail .page-img {
  margin-bottom: 50px; }

#books .book-detail {
  display: flex; }

.annonsment .notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1120px; }
  .annonsment .notice p {
    margin-bottom: 0; }

.mobil-button {
  display: none;
  position: fixed;
  padding: 5px 5px;
  background-color: #f3f3f3;
  border: 1px #e7e7e7 solid;
  z-index: 99;
  right: 10px;
  top: 15px;
  width: 36px; }
  .mobil-button i {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #940001;
    margin: 3px 0; }

.left-img-content {
  display: flex; }
  .left-img-content .img {
    margin: 0 50px 0 0; }
    .left-img-content .img img {
      min-width: 275px;
      max-width: 300px;
      box-shadow: -1px 19px 25px rgba(0, 0, 0, 0.15);
      border-radius: 10px; }
    .left-img-content .img .short-cont {
      display: block;
      padding-top: 20px; }
      .left-img-content .img .short-cont a {
        display: block;
        padding: 8px 0 8px 30px;
        font-size: 12px;
        color: #222;
        background-attachment: scroll;
        background-repeat: no-repeat;
        background-position: left center; }
        .left-img-content .img .short-cont a:hover {
          color: tomato; }
        .left-img-content .img .short-cont a.cv-pdf {
          background-image: url("/assets/images/icon-pdf.png"); }
        .left-img-content .img .short-cont a.email-cont {
          background-image: url("/assets/images/icon-email.png"); }
        .left-img-content .img .short-cont a.twitter-cont {
          background-image: url("/assets/images/icon-twitter.png"); }
        .left-img-content .img .short-cont a.linkedin-cont {
          background-image: url("/assets/images/icon-linkedin.png"); }
        .left-img-content .img .short-cont a.academia-cont {
          background-image: url("/assets/images/icon-academia.png"); }
        .left-img-content .img .short-cont a.orcid-cont {
          background-image: url("/assets/images/icon-orcid.png"); }
        .left-img-content .img .short-cont a.phone-number {
          background-image: url("/assets/images/icon-phone.png"); }

#books_videos {
  padding: 0;
  overflow: hidden;
  text-align: center; }
  #books_videos h2 {
    font-size: 26px;
    margin-bottom: 10px; }
  #books_videos .col {
    padding: 20px 0; }
    #books_videos .col.right-side {
      background-color: #940001;
      position: relative;
      padding: 50px;
      border-radius: 0 0 0 10px; }
      #books_videos .col.right-side h2 {
        color: #fff; }
      #books_videos .col.right-side:after {
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        background-color: #940001;
        right: calc(-100% + 1px);
        top: 0; }
  #books_videos .books {
    display: flex; }
    #books_videos .books .books-detail {
      width: 33.33%;
      margin: 0 5px 0 0;
      line-height: 20px;
      padding: 10px 10px 10px 10px;
      font-size: 11px;
      background-color: #fff;
      text-align: center;
      margin-top: 20px; }
      #books_videos .books .books-detail h6 {
        min-height: 100px; }
      #books_videos .books .books-detail .img {
        margin-top: 20px;
        background-color: #f6f6f6; }
        #books_videos .books .books-detail .img img {
          width: 100%;
          height: auto; }
  #books_videos .all-books-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #940001;
    font-size: 14px;
    color: #fff;
    margin-top: 20px; }
    #books_videos .all-books-button:hover {
      background-color: #ae0001; }

.flex-center.about-us .flex-grid .col:first-child {
  padding-right: 50px; }

@media (max-width: 1024px) {
  header .navbar {
    height: auto;
    justify-content: center;
    padding: 15px 0; }
    header .navbar .logo img {
      width: 100px; }
  .mobil-button {
    display: block; }
  .desktop-menu {
    display: none; }
  .flex-grid {
    display: block;
    padding: 0 40px;
    width: 320px; }
  .owl-item .item .text-cont {
    bottom: 0 !important;
    left: 0 !important;
    margin: 15px; }
  .owl-item .item .text-small {
    font-size: 12px !important;
    margin-bottom: 10px !important; }
  .owl-item .item h2 {
    font-size: 20px !important;
    margin-bottom: 10px !important; }
  .owl-item .item p {
    font-size: 12px;
    line-height: normal !important; }
  footer .footer-wrap {
    padding: 0 30px; }
    footer .footer-wrap .list-wrap {
      flex-wrap: wrap; }
      footer .footer-wrap .list-wrap ul {
        display: block;
        width: 100%;
        margin-bottom: 20px; }
  .about-us .flex-grid .col:last-child {
    margin: 0 auto;
    margin-left: 0 !important;
    top: unset !important; }
  .subpage-content {
    padding: 0; }
  .subpage-header {
    width: 100%; }
  #teams .personal-card, .teams .personal-card {
    flex: 1 1 100%;
    max-width: 100%; }
    #teams .personal-card ul li:first-child, .teams .personal-card ul li:first-child {
      font-size: 18px; }
    #teams .personal-card ul li:nth-child(2), .teams .personal-card ul li:nth-child(2) {
      font-size: 14px; }
  #articles .header-info,
  #books .header-info {
    flex-direction: column;
    align-items: flex-start; }
    #articles .header-info h6,
    #books .header-info h6 {
      font-size: 20px;
      margin-bottom: 10px; }
  #speciality .flex-center .flex-grid .col {
    margin-right: 0; }
  section {
    padding: 35px 0; }
    section h2 {
      font-size: 24px; }
  .annonsment .notice {
    width: 100%; }
    .annonsment .notice p {
      line-height: 22px; }
  #books_videos .books {
    flex-direction: column; }
    #books_videos .books .books-detail {
      width: 100%; }
  #articles .item,
  #books .item,
  #articles-detail .item {
    margin: 25px 0; }
  #articles .header-info,
  #books .header-info,
  #articles-detail .header-info {
    flex-direction: column; }
    #articles .header-info h6,
    #books .header-info h6,
    #articles-detail .header-info h6 {
      margin-bottom: 15px;
      line-height: 28px;
      font-size: 20px;
      text-align: center; }
  .left-img-content {
    flex-direction: column; }
    .left-img-content .img {
      margin: 0 0 30px 0; }
  .flex-grid {
    padding: 0; }
  #about h6 {
    text-align: center; } }

@media (max-width: 1280px) {
  header .navbar {
    padding: 15px 20px;
    justify-content: flex-start; }
  .subpage-content {
    padding: 0 20px; }
  #teams .subpage-content {
    margin-right: 0; }
  #books .item {
    margin: 25px 0; } }
