/* == HEADER == */
body.headbar-d .site-branding,
body.headbar-d .site-member {
  display: none;
}

.site-header--m {
  display: none;
}

.site-header {
  min-height: var(--s-header-height);
  background-color: var(--s-bg);
  line-height: 1;
}

.site-header > .s-container {
  position: relative;
  min-height: var(--s-header-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.site-header a {
  color: var(--s-text);
}

.site-header._heading {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform .3s ease-out;
  transition: -webkit-transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out;
}

.site-header.nav-up {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.site-header--d {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.site-header--d .site-header--topmenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: var(--s-accent2);
  min-height: var(--s-header-topmenu-height);
}

.site-header--d .site-header--topmenu .site-branding {
  position: absolute;
  top: 0;
}

.site-header--d .site-header--topmenu ._inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  font-size: calc(var(--s-header-text-size) - 2px);
}

.site-header--d .site-header--topmenu .menu {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.site-header--d .site-header--topmenu .menu .wpml-ls-item > a {
  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;
  background-color: #fff;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  color: var(--s-accent);
  padding: 8px;
  font-size: 10px;
  margin-right: var(--s-space);
  margin-left: var(--s-space);
}

.site-header--d .site-header--topmenu ._circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  color: var(--s-accent);
  padding: 8px;
}

.site-header--d .site-header--mainmenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: var(--s-accent);
  min-height: var(--s-header-mainmenu-height);
}

.site-header--d .site-header--mainmenu ._inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: var(--s-header-text-size);
}

.site-header--d .site-header--mainmenu ._inner ul.menu > li {
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.site-header--d .site-header--mainmenu ._inner ul.menu > li > a {
  padding: 6px 0px;
  margin: 10px 10px;
}

.site-header--d .site-header--mainmenu ._inner ul.menu > li:last-child, .site-header--d .site-header--mainmenu ._inner ul.menu > li:last-child > a {
  padding-right: 0;
  margin-right: 0;
}

.site-header--d .site-header--mainmenu ._inner ul.menu > li.menu-item-has-children:last-child .sub-menu {
  width: auto;
}

.site-header--d .site-header--mainmenu ._inner ul.menu > li.menu-item-has-children .sub-menu {
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  max-width: 340px;
  width: 340px;
}

.site-header--d .site-header--mainmenu ._inner ul.menu > li.menu-item-has-children .sub-menu li a:hover {
  color: var(--s-accent);
}

.site-header--d .site-header--mainmenu ._inner ul.menu > li.menu-item-has-children > a {
  border-bottom: 5px solid transparent;
}

.site-header--d .site-header--mainmenu ._inner ul.menu > li.menu-item-has-children > a::after {
  content: url("../img/i/chevron-down-white.svg");
  margin-left: calc(var(--s-space) /2);
  width: 12px;
  height: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: all 300ms 0s ease-in-out;
  transition: all 300ms 0s ease-in-out;
}

.site-header--d .site-header--mainmenu ._inner ul.menu > li.menu-item-has-children:hover > a {
  border-bottom: 5px solid white;
}

.site-header--d .site-header--mainmenu ._inner ul.menu > li.menu-item-has-children:hover > a::after {
  -webkit-transform: rotate(360deg);
  transform: rotate(180deg);
}

.site-header--d .site-header--mainmenu ._inner .sub-menu a {
  color: var(--s-submenu-text);
}

.site-header--d .site-header--mainmenu ._inner .menu-sublayer a {
  font-size: calc(var(--s-header-text-size) - 2px);
  padding-left: var(--s-space);
  opacity: .85;
}

.site-header-space {
  min-height: var(--s-header-height);
}

.site-branding {
  position: relative;
  top: auto;
  left: auto;
  -webkit-transform: none;
          transform: none;
  background-color: #fff;
  min-height: var(--s-header-height);
}

.site-branding img {
  max-height: var(--s-header-height);
}

.site-title {
  font-size: 24px;
}

.site-description {
  display: inline-block;
  margin: 0;
  padding-left: 15px;
  opacity: 0.75;
  padding-top: 2px;
}

.site-nav-d {
  margin-left: auto;
}

.site-nav-d > div {
  height: 100%;
}

.site-nav-d .children {
  display: none;
}

.site-nav-d ul {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: 100%;
}

.site-nav-d li {
  height: 100%;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.site-nav-d li a {
  padding: 10px 15px;
}

.site-nav-d li:hover > .sub-menu {
  opacity: 1;
  max-height: 100vh;
  top: 70%;
  height: auto;
  z-index: 91;
  overflow: visible;
}

.site-nav-d .sub-menu {
  display: block;
  text-align: left;
  overflow: hidden;
  opacity: 0;
  height: auto;
  max-height: 0;
  position: absolute;
  z-index: 90;
  top: calc(100% + 5px);
  -webkit-filter: drop-shadow(var(--s-shadow));
          filter: drop-shadow(var(--s-shadow));
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: var(--s-bg);
  min-width: 180px;
}

.site-nav-d .sub-menu li {
  height: auto;
  line-height: 1.4;
  position: relative;
  padding: 0 var(--s-space);
}

.site-nav-d .sub-menu li a {
  padding: 10px 0;
  display: block;
  color: var(--s-text);
  text-align: left;
  border-bottom: 1px solid var(--s-line);
}

.site-nav-d .sub-menu li:last-child > a {
  border-bottom: none;
}

.site-nav-d .sub-menu li:hover .sub-menu {
  top: 0;
  z-index: 92;
}

.site-nav-d .sub-menu .sub-menu {
  left: 100%;
  top: 5px;
}

.site-nav-d .sub-menu .sub-menu::before {
  display: none;
}

.site-nav-d .sub-menu .sub-menu .sub-menu {
  display: none;
}

.site-member {
  position: relative;
  margin-left: 20px;
  right: auto;
  top: auto;
  -webkit-transform: none;
          transform: none;
}

.site-member .m-user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.site-member .info {
  padding-left: 8px;
  display: block;
}

.site-search {
  position: initial;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
  padding-right: 0;
}

.site-toggle {
  display: none;
}

/* == BODY == */
.main-header .bc {
  display: initial;
}

.main-header .bc span {
  font-size: 15px;
  font-weight: 300;
}

.main-header .bc a {
  color: white;
}

/* CONTENT ITEM */
.content-item.-hero {
  border-radius: var(--s-border-radius);
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 73fr 38fr;
      grid-template-columns: 73fr 38fr;
}

.content-item.-hero .pic {
  margin-bottom: 0;
}

.content-item.-hero .pic > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.content-item.-hero .pic img {
  max-height: 600px;
}

.content-item.-hero .info {
  padding: 30px;
}

.main-body.-rightbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.main-body.-rightbar .widget-area {
  width: 240px;
  padding-left: var(--s-space);
}

.main-body.-rightbar .content-area {
  width: calc(100% - 240px);
}

.main-body.-leftbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.main-body.-leftbar .widget-area {
  width: 240px;
  padding-right: var(--s-space);
}

.main-body.-leftbar .content-area {
  width: calc(100% - 240px);
}

.main-body.-leftrightbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* FORM - Page Template */
@media (min-width: 1025px) {
  body.page-template-page-form .site-content {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}

.page-form {
  padding: 15px 25px 1px;
  max-width: 920px;
}

.site.-header-desktop-overlay .page-form {
  background-color: #fff;
  margin-top: -80px;
  position: relative;
}

/* SINGLE - AUTHOR PROFILE */
.entry-author {
  margin-top: 40px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.entry-author .pic {
  margin: 0;
  padding-right: var(--s-space);
  min-width: 100px;
}

/* COMMENTS */
.comments-area {
  margin-bottom: 30px;
}

.comment-form-author {
  float: left;
  width: 32%;
  margin-right: 2%;
}

.comment-form-email {
  float: left;
  width: 32%;
  margin-right: 2%;
}

.comment-form-url {
  float: left;
  width: 32%;
}

/* FOOTER */
.site-footer-space {
  height: var(--s-footer-height);
}

.site-login {
  max-height: 400px;
}

.site-footbar {
  text-align: left;
}

.site-footbar .widget {
  margin-bottom: 0;
  line-height: 2;
}

.site-footbar h3 {
  font-size: 17px;
}

.site-footbar .widget-related-link {
  margin: 0 auto;
}

.site-footbar .widget-related-link .-link {
  color: #fff;
  display: initial;
  border: none;
}

.site-footbar .widget-related-link .-link:hover {
  color: var(--s-accent);
}

.site-footbar .widget-social .icon-link {
  width: 35px;
  height: 35px;
  margin-top: calc(var(--s-space) / 2);
}

.site-footbar .widget-social .icon-link svg {
  max-width: 20px;
  width: 20px;
  height: 100%;
}

/*
  #    #   ##   #####  ###### #    #  ####  ###### 
  #   #   #  #  #    # #      ##   # #    # #      
  ####   #    # #    # #####  # #  # #      #####  
  #  #   ###### #    # #      #  # # #      #      
  #   #  #    # #    # #      #   ## #    # #      
  #    # #    # #####  ###### #    #  ####  ###### 
*/
.btn-global .kt-btn-wrap a.button {
  border-radius: 10px;
}

.column-width-55 {
  max-width: 55%;
}

.column-width-40 {
  max-width: 40%;
}

.text-indent {
  text-indent: 30px;
}

/*
  #    #  ####  #    # ###### #####    ##    ####  ###### 
  #    # #    # ##  ## #      #    #  #  #  #    # #      
  ###### #    # # ## # #####  #    # #    # #      #####  
  #    # #    # #    # #      #####  ###### #  ### #      
  #    # #    # #    # #      #      #    # #    # #      
  #    #  ####  #    # ###### #      #    #  ####  ###### 
*/
.homepage-banner {
  max-height: var(--c-banner-height-d);
  overflow: hidden;
}

.homepage-banner .nav {
  display: none;
}

.homepage-banner.s-slider.-dots-in .dots {
  bottom: 40px;
}

.homepage-banner .dots .dot.active {
  width: 13px;
}

.homepage-banner .-image {
  width: 100%;
  height: var(--c-banner-height-d);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.homepage-banner .-video {
  position: absolute;
  width: 100%;
  height: auto;
}

/*
    ##   #    # #    #  ####  #    # #    #  ####  ###### 
   #  #  ##   # ##   # #    # #    # ##   # #    # #      
  #    # # #  # # #  # #    # #    # # #  # #      #####  
  ###### #  # # #  # # #    # #    # #  # # #      #      
  #    # #   ## #   ## #    # #    # #   ## #    # #      
  #    # #    # #    #  ####   ####  #    #  ####  ###### 
*/
.announce-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.announcement.-homepage .announce-filter-container {
  width: auto;
}

.announcement.-homepage .announce-filter-container span {
  display: inline;
}

.announcement.-homepage .announce-filter-container a {
  color: var(--s-text);
  display: block;
}

.announcement.-homepage .announce-filter-container select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23343434' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 0px;
  border: none;
  color: #343434;
  padding: 0 var(--s-space) 0 0;
  width: 130px;
}

.announcement.-announcepage .announce-filter-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.announcement.-announcepage .announce-filter-container select {
  width: 220px;
  border-radius: 10px;
  margin-left: var(--s-space);
}

.announcement.-announcepage .announce-filter-container.-faculty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.card-announcement {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.card-announcement:hover {
  cursor: pointer;
}

.card-announcement:hover .info {
  color: var(--s-accent);
}

.card-announcement .date {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  padding: 4px var(--s-space);
  border-right: 1px solid var(--s-border);
  font-size: 20px;
  font-weight: 500;
}

.card-announcement .info {
  padding: 4px var(--s-space);
}

.card-announcement .info .is_lasted {
  padding: 3px calc(var(--s-space) / 1.5);
  margin-right: calc(var(--s-space) / 1.5);
  background-color: var(--s-accent);
  font-size: 12px;
  color: #fff;
}

/*
  #####  #  ####  #    # # ##### #   # 
  #    # # #    # ##   # #   #    # #  
  #    # # #      # #  # #   #     #   
  #    # # #  ### #  # # #   #     #   
  #    # # #    # #   ## #   #     #   
  #####  #  ####  #    # #   #     #   
*/
.content-item.-list.card-dignity {
  margin-bottom: var(--s-space);
  background-color: var(--c-card-background);
}

.content-item.-list.card-dignity .info .entry-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.content-item.-list.card-dignity .info .entry-header .entry-title {
  font-size: 16px;
  font-weight: 500;
}

.content-item.-list.card-dignity .info .entry-header .entry-title a {
  color: var(--s-text);
}

.content-item.-list.card-dignity .info .entry-header .entry-meta {
  color: #909090;
}

.content-item.-list.card-dignity .btn {
  min-width: 100px;
  background-color: var(--s-accent);
  color: #fff;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
}

.content-item.-list.card-dignity .btn span {
  font-size: 12px;
  margin-top: 8px;
}

/*
  #####  ###### #####    ##   #####  ##### #    # ###### #    # ##### 
  #    # #      #    #  #  #  #    #   #   ##  ## #      ##   #   #   
  #    # #####  #    # #    # #    #   #   # ## # #####  # #  #   #   
  #    # #      #####  ###### #####    #   #    # #      #  # #   #   
  #    # #      #      #    # #   #    #   #    # #      #   ##   #   
  #####  ###### #      #    # #    #   #   #    # ###### #    #   #   
*/
.department .block-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: var(--s-space);
}

.department .block-title.-homepage {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.department .block-title.-homepage a {
  display: block;
}

.department .block-title a {
  display: none;
}

.department .nav .prev, .department .nav .next {
  background-color: var(--s-accent);
  border-radius: 8px;
  color: #fff;
  -webkit-transition: opacity 0;
  transition: opacity 0;
  top: calc(50% - 60px);
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: var(--s-space);
  padding-right: var(--s-space);
}

.department .nav .prev::before, .department .nav .next::before {
  border-top-color: #fff;
  border-right-color: #fff;
}

.department .nav .prev {
  left: -65px;
}

.department .nav .next {
  right: -65px;
}

/*
  #    # ###### #    #  ####  
  ##   # #      #    # #      
  # #  # #####  #    #  ####  
  #  # # #      # ## #      # 
  #   ## #      ##  ## #    # 
  #    # ###### #    #  ####  
*/
.news.-newspage .announce-filter-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.news.-newspage .announce-filter-container select {
  width: 220px;
  border-radius: 10px;
  margin-left: var(--s-space);
}

.news.-newspage .announce-filter-container.-faculty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.news.-newspage .content-item.-card.card-news {
  background-color: #fff;
}

.news.-newspage .content-item.-card.card-news .entry-meta {
  display: none;
}

.content-item.-hero.card-news-hero {
  background-color: var(--c-card-background);
  -ms-grid-columns: 50fr 50fr;
      grid-template-columns: 50fr 50fr;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.content-item.-hero.card-news-hero .info .entry-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}

.content-item.-hero.card-news-hero .info .entry-header .entry-title a {
  color: var(--s-text);
}

.content-item.-hero.card-news-hero .info .entry-header .entry-meta {
  color: #909090;
  font-size: 16px;
}

.content-item.-card.card-news {
  margin-bottom: calc(var(--s-space) / 2);
  background-color: var(--c-card-background);
}

.content-item.-card.card-news .info .entry-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.content-item.-card.card-news .info .entry-header .entry-title {
  font-size: 16px;
  font-weight: 500;
  display: block;
  line-height: 1.5;
  height: 72px;
  overflow: hidden;
}

.content-item.-card.card-news .info .entry-header .entry-title a {
  color: var(--s-text);
}

.content-item.-card.card-news .info .entry-header .entry-meta {
  margin-top: var(--s-space);
  color: #909090;
}

/*
   ####   ####  #    #  ####  #        ##   #####   ####  #    # # #####  
  #      #    # #    # #    # #       #  #  #    # #      #    # # #    # 
   ####  #      ###### #    # #      #    # #    #  ####  ###### # #    # 
       # #      #    # #    # #      ###### #####       # #    # # #####  
  #    # #    # #    # #    # #      #    # #   #  #    # #    # # #      
   ####   ####  #    #  ####  ###### #    # #    #  ####  #    # # #      
*/
.scholarship .announce-filter-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.scholarship .announce-filter-container select {
  width: 220px;
  border-radius: 10px;
  margin-left: var(--s-space);
}

.content-item.-list.card-scholarship {
  margin-bottom: var(--s-space);
  border: 1px solid var(--s-border);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.content-item.-list.card-scholarship .pic {
  width: 40%;
}

.content-item.-list.card-scholarship .info {
  padding: calc(var(--s-space) * 2);
}

.content-item.-list.card-scholarship .info .entry-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.content-item.-list.card-scholarship .info .entry-header .entry-title {
  font-size: 20px;
  font-weight: 500;
}

.content-item.-list.card-scholarship .info .entry-header .entry-meta {
  margin-top: var(--s-space);
  margin-bottom: var(--s-space);
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: var(--s-text);
}

.content-item.-list.card-scholarship .info .entry-header .entry-meta p {
  height: 100px;
  margin-bottom: 0;
  overflow: hidden;
}

.content-item.-list.card-scholarship .info .entry-header .btn {
  padding: calc(var(--s-space) / 2) calc(var(--s-space) * 2);
  border-radius: 10px;
  background-color: var(--s-accent);
  color: white;
}

/*
   ####  ######   ##   #####   ####  #    # 
  #      #       #  #  #    # #    # #    # 
   ####  #####  #    # #    # #      ###### 
       # #      ###### #####  #      #    # 
  #    # #      #    # #   #  #    # #    # 
   ####  ###### #    # #    #  ####  #    # 
*/
.search-page {
  margin-top: calc(var(--s-space) * 2);
  margin-bottom: calc(var(--s-space) * 2);
}

.search-page .search-header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
}

.search-page .search-header h1 {
  margin-bottom: calc(var(--s-space) * 2);
}

.search-page .search-header .search-form input {
  border-radius: 0;
}

/*
  #####   ####   ####  ##### 
  #    # #    # #        #   
  #    # #    #  ####    #   
  #####  #    #      #   #   
  #      #    # #    #   #   
  #       ####   ####    #    
*/
.post-thumbnail .entry-header .entry-title, .post-single .entry-header .entry-title {
  font-size: 20px;
}

/*
  #####   ####  #   #   ##   #      
  #    # #    #  # #   #  #  #      
  #    # #    #   #   #    # #      
  #####  #    #   #   ###### #      
  #   #  #    #   #   #    # #      
  #    #  ####    #   #    # ###### 
*/
.royal-wish {
  margin: 0 0 var(--s-space) 0;
}

.wp-block-kadence-column.c-fade {
  min-height: 350px;
}

.wp-block-kadence-column.c-fade .kt-inside-inner-col {
  opacity: 80%;
}

.wp-block-kadence-column.c-fade .kt-inside-inner-col::before {
  content: '';
  background: #f8f8f8;
  background: -webkit-gradient(linear, left top, right top, from(#f8f8f8), color-stop(35%, rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, #f8f8f8 0%, rgba(255, 255, 255, 0) 35%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f8f8f8",endColorstr="#ffffff",GradientType=1);
  width: 100%;
  height: 100%;
}

.wp-block-kadence-column.c-fade div {
  min-height: 350px;
}

@media (max-width: 1024px) {
  .wp-block-kadence-column.c-fade {
    min-height: 550px;
  }
  .wp-block-kadence-column.c-fade div {
    min-height: 550px;
  }
}

/* 
  #    # #  ####  #####  ####  #####  #   # 
  #    # # #        #   #    # #    #  # #  
  ###### #  ####    #   #    # #    #   #   
  #    # #      #   #   #    # #####    #   
  #    # # #    #   #   #    # #   #    #   
  #    # #  ####    #    ####  #    #   #   
*/
.history-center-m {
  margin-right: 30px !important;
}

.history-dased {
  max-width: 5%;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.history-height-top > div {
  height: 480px;
}

/*
   ####    ##   #####  #####  
  #    #  #  #  #    # #    # 
  #      #    # #    # #    # 
  #      ###### #####  #    # 
  #    # #    # #   #  #    # 
   ####  #    # #    # #####  
*/
.announcement .content-item.-card .pic, .news .content-item.-card .pic {
  height: 160px;
}
/*# sourceMappingURL=desktop.css.map */