* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Sarabun";
}

@-webkit-keyframes "inM" {
  50% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    background-color: #0e6476;
    -webkit-transform: rotate(45deg);
  }
}
@keyframes "inM" {
  50% {
    transform: rotate(0deg);
  }
  100% {
    background-color: #0e6476;
    transform: rotate(45deg);
  }
}
@-webkit-keyframes "outM" {
  50% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
  }
}
@keyframes "outM" {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}
@-webkit-keyframes "inT" {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(7px) rotate(0deg);
  }
  100% {
    background-color: #0e6476;
    -webkit-transform: translateY(7px) rotate(135deg);
  }
}
@keyframes "inT" {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(7px) rotate(0deg);
  }
  100% {
    background-color: #0e6476;
    transform: translateY(7px) rotate(135deg);
  }
}
@-webkit-keyframes "outT" {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(7px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(7px) rotate(135deg);
  }
}
@keyframes "outT" {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(7px) rotate(0deg);
  }
  100% {
    transform: translateY(7px) rotate(135deg);
  }
}
@-webkit-keyframes "inBtm" {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-7px) rotate(0deg);
  }
  100% {
    background-color: transparent;
    -webkit-transform: translateY(-7px) rotate(135deg);
  }
}
@keyframes "inBtm" {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-7px) rotate(0deg);
  }
  100% {
    background-color: transparent;
    transform: translateY(-7px) rotate(135deg);
  }
}
@-webkit-keyframes "outBtm" {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-7px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-7px) rotate(135deg);
  }
}
@keyframes "outBtm" {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-7px) rotate(0deg);
  }
  100% {
    transform: translateY(-7px) rotate(135deg);
  }
}
.nav-trigger {
  display: none;
  cursor: pointer;
  width: 66px;
  height: 60px;
  padding: 20px;
  position: relative;
  right: 20px;
  z-index: 650;
}
@media only screen and (max-width: 1023px) {
  .nav-trigger {
    display: block;
  }
}
.nav-trigger i {
  background-color: #0e6476;
  border-radius: 0px;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
}
.nav-trigger i:nth-child(1) {
  -webkit-animation: outT 0.6s backwards;
  animation: outT 0.6s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.nav-trigger i:nth-child(2) {
  margin: 6px 0;
  -webkit-animation: outM 0.6s backwards;
  animation: outM 0.6s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.nav-trigger i:nth-child(3) {
  -webkit-animation: outBtm 0.6s backwards;
  animation: outBtm 0.6s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.nav-trigger.active i:nth-child(1) {
  -webkit-animation: inT 0.6s forwards;
  animation: inT 0.6s forwards;
  -webkit-animation-timing-function: cubic-bezier(0.1, 0.51, 0.31, 0.75);
  animation-timing-function: cubic-bezier(0.1, 0.51, 0.31, 0.75);
}
.nav-trigger.active i:nth-child(2) {
  -webkit-animation: inM 0.6s forwards;
  animation: inM 0.6s forwards;
  -webkit-animation-timing-function: cubic-bezier(0.1, 0.51, 0.31, 0.75);
  animation-timing-function: cubic-bezier(0.1, 0.51, 0.31, 0.75);
}
.nav-trigger.active i:nth-child(3) {
  -webkit-animation: inBtm 0.6s forwards;
  animation: inBtm 0.6s forwards;
  -webkit-animation-timing-function: cubic-bezier(0.1, 0.51, 0.31, 0.75);
  animation-timing-function: cubic-bezier(0.1, 0.51, 0.31, 0.75);
}

#text.formatted a {
  color: #0e6476;
  font-weight: 500;
  text-decoration: underline;
}

.nav-section {
  align-items: center;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10vw;
  padding-right: 10vw;
  font-family: "Montserrat";
  height: 100px;
  display: flex;
  position: relative;
}
@media only screen and (max-width: 1439px) {
  .nav-section {
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
@media only screen and (max-width: 1023px) {
  .nav-section {
    flex-wrap: wrap;
    padding: 0;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #a3a3a3;
  }
}
@media only screen and (max-width: 1023px) {
  .nav-section .logo {
    height: 100px;
    display: flex;
    align-items: center;
    padding-left: 20px;
  }
}
.nav-section .logo h1 {
  margin: 0;
  color: #0e6476;
  font-size: 32px;
  font-family: "Montserrat";
  font-weight: bold;
}
@media only screen and (max-width: 1023px) {
  .nav-section .logo h1 {
    font-size: 20px;
  }
}

ul {
  margin: 0;
}

.nav-desktop {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media only screen and (max-width: 1023px) {
  .nav-desktop {
    display: none;
  }
}
.nav-desktop .nav-menu {
  list-style: none;
  display: flex;
  padding: 0 10px;
  align-items: center;
}
.nav-desktop .nav-menu li {
  padding: 0 10px;
}
@media only screen and (max-width: 1439px) {
  .nav-desktop .nav-menu li {
    padding: 0 5px;
  }
}
.nav-desktop .nav-menu li a {
  text-align: center;
  padding: 5px 10px;
  border-bottom: 2px solid transparent;
  color: #424752;
  transition: all 250ms ease-out;
  font-size: 16px;
}
.nav-desktop .nav-menu li a:hover {
  color: #0e6476;
  border-bottom-color: #0e6476;
}
@media only screen and (max-width: 1439px) {
  .nav-desktop .nav-menu li a {
    font-size: 14px;
    padding: 5px 5px;
  }
}
.nav-desktop .lang-container {
  color: #424752;
  margin-left: 10px;
  font-size: 16px;
}
.nav-desktop .lang-container a.currentlang {
  font-weight: bold;
  color: #0e6476;
}
.nav-desktop .lang-container a:hover {
  color: #0e6476;
}

.search-holder form {
  display: flex;
  align-items: center;
  margin: 0;
}
.search-holder form input {
  width: 0;
  border: 0;
  outline: 0;
  display: none;
  height: 40px;
  transition: all 200ms ease-out;
  background-color: #9e9e9e;
}
.search-holder form input.open {
  width: 250px;
}
.search-holder a {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0e6476;
  margin-right: 10px;
}
.search-holder a img {
  height: 20px;
}

.nav-mobile-wrap {
  display: none;
}

.nav-mobile {
  display: none;
  width: 100%;
  background-color: transparent;
  z-index: 100;
  position: relative;
  justify-content: flex-end;
  border-bottom: 1px solid #a3a3a3;
}
@media only screen and (max-width: 1023px) {
  .nav-mobile {
    padding: 0px 0px;
  }
  .nav-mobile .nav-menu {
    display: flex;
    width: 100%;
    background-color: white;
    align-items: center;
    flex-direction: column;
    list-style: none;
    padding: 40px 40px;
  }
  .nav-mobile .nav-menu li {
    text-align: center;
    padding: 10px;
    font-size: 20px;
    color: #424752;
    font-weight: 400;
    border-bottom: 1px solid #0e6476;
  }
  .nav-mobile .nav-menu li:last-child {
    border-bottom: none;
  }
}

.frontend-hero {
  height: 440px;
  background: url("/img/USZ_subpage header_02.jpg") no-repeat 40% 50%;
  position: relative;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  margin-bottom: 80px;
}
.frontend-hero.big {
  height: 800px;
  background: url("/img/USZ_Logo_Mockup_02_.jpg") no-repeat center;
  background-size: cover;
}
@media only screen and (max-width: 1023px) {
  .frontend-hero.big {
    min-height: 50vw;
    height: auto;
  }
}
@media only screen and (max-width: 1023px) {
  .frontend-hero {
    min-height: 40vw;
  }
}
@media only screen and (max-width: 767px) {
  .frontend-hero {
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 60px 30px;
    padding-top: 90px;
  }
}
.frontend-hero .frontend-hero-decor-bar {
  height: 80px;
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #0e6476;
  mix-blend-mode: multiply;
}
.frontend-hero .frontend-hero-latest-wrap {
  display: flex;
  flex-direction: column;
  color: white;
  z-index: 10;
  margin-bottom: -80px;
  margin-left: 10vw;
}
@media only screen and (max-width: 1023px) {
  .frontend-hero .frontend-hero-latest-wrap {
    margin-left: 5vw;
  }
}
@media only screen and (max-width: 767px) {
  .frontend-hero .frontend-hero-latest-wrap {
    margin-left: 0;
    margin-bottom: -120px;
  }
}
.frontend-hero .frontend-hero-latest-wrap > div {
  width: 540px;
  padding: 0 0;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1023px) {
  .frontend-hero .frontend-hero-latest-wrap > div {
    width: 540px;
    padding: 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .frontend-hero .frontend-hero-latest-wrap > div {
    width: 80vw;
  }
}
.frontend-hero .frontend-hero-latest-wrap .latest-top {
  background-color: #0e6476;
  padding-top: 40px;
  padding-bottom: 40px;
  color: white;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .frontend-hero .frontend-hero-latest-wrap .latest-top {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.frontend-hero .frontend-hero-latest-wrap .latest-top .swiper-slide-inner {
  padding: 0 40px;
  max-width: 540px;
  display: block;
}
@media only screen and (max-width: 767px) {
  .frontend-hero .frontend-hero-latest-wrap .latest-top .swiper-slide-inner {
    max-width: 80vw;
    padding: 0 30px;
  }
}
.frontend-hero .frontend-hero-latest-wrap .latest-top .swiper-wrapper {
  align-items: center;
}
.frontend-hero .frontend-hero-latest-wrap .latest-top .current-paper {
  margin: 0;
  font-size: 18px;
  padding: 0 40px;
}
@media only screen and (max-width: 767px) {
  .frontend-hero .frontend-hero-latest-wrap .latest-top .current-paper {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .frontend-hero .frontend-hero-latest-wrap .latest-top .current-paper {
    font-size: 16px;
  }
}
.frontend-hero .frontend-hero-latest-wrap .latest-top .current-author {
  margin: 0;
  margin-top: 20px;
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .frontend-hero .frontend-hero-latest-wrap .latest-top .current-author {
    font-size: 22px;
    margin-top: 10px;
  }
}
.frontend-hero .frontend-hero-latest-wrap .latest-top .current-title {
  margin: 0;
  font-size: 16px;
}
.frontend-hero .frontend-hero-latest-wrap .latest-pagination {
  height: 80px;
  background-color: #424752;
  justify-content: center;
  font-size: 18px;
  letter-spacing: 8px;
  font-weight: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0px;
}
@media only screen and (max-width: 767px) {
  .frontend-hero .frontend-hero-latest-wrap .latest-pagination {
    padding: 0 0px;
  }
}
@media only screen and (max-width: 767px) {
  .frontend-hero .frontend-hero-latest-wrap .latest-pagination {
    font-size: 16px;
  }
}
.frontend-hero .frontend-hero-latest-wrap .latest-pagination img {
  height: 80px;
  padding: 31px 40px;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .frontend-hero .frontend-hero-latest-wrap .latest-pagination img {
    padding: 31px 30px;
  }
}
.frontend-hero .frontend-hero-latest-wrap .latest-pagination span {
  text-align: center;
  margin-left: 12px;
}
@media only screen and (max-width: 767px) {
  .frontend-hero .frontend-hero-latest-wrap .latest-pagination span {
    margin-left: 5px;
  }
}
.frontend-hero .frontend-hero-latest-wrap .latest-download {
  height: 80px;
  background-color: #8a94ab;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}
@media only screen and (max-width: 767px) {
  .frontend-hero .frontend-hero-latest-wrap .latest-download {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .frontend-hero .frontend-hero-latest-wrap .latest-download {
    font-size: 16px;
  }
}
.frontend-hero .frontend-hero-latest-wrap .latest-download img {
  height: 40px;
}
@media only screen and (max-width: 767px) {
  .frontend-hero .frontend-hero-latest-wrap .latest-download img {
    height: 30px;
  }
}

.cont {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding: 0px 10px;
}
@media only screen and (max-width: 1023px) {
  .cont {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

.welcome-section {
  padding-top: 90px;
}
@media only screen and (max-width: 767px) {
  .welcome-section {
    padding-top: 60px;
  }
}

.welcome-collapse-wrap {
  display: flex;
  align-items: center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .welcome-collapse-wrap {
    flex-direction: column;
  }
}
.welcome-collapse-wrap .welcome-col-1 {
  color: #0e6476;
  font-weight: bold;
  font-family: "Montserrat";
  font-size: 22px;
  min-width: 250px;
}
@media only screen and (max-width: 767px) {
  .welcome-collapse-wrap .welcome-col-1 {
    min-width: auto;
  }
}
.welcome-collapse-wrap .welcome-col-2 {
  padding-right: 30px;
}
@media only screen and (max-width: 767px) {
  .welcome-collapse-wrap .welcome-col-2 {
    padding-right: 0;
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
.welcome-collapse-wrap .welcome-col-2 .collapsed {
  display: none;
}
.welcome-collapse-wrap .welcome-col-3 {
  display: flex;
  align-items: center;
}
.welcome-collapse-wrap .welcome-col-3 .collapse-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  background: #0e6476;
  border-radius: 50px;
}
.welcome-collapse-wrap .welcome-col-3 .collapse-button.opened img:nth-child(1) {
  display: none;
}
.welcome-collapse-wrap .welcome-col-3 .collapse-button.opened img:nth-child(2) {
  display: block;
}
.welcome-collapse-wrap .welcome-col-3 .collapse-button img {
  width: 14px;
}
.welcome-collapse-wrap .welcome-col-3 .collapse-button img.collapse-opened {
  display: none;
}

.category-menu-section {
  padding: 20px 0;
  padding-top: 90px;
}
@media only screen and (max-width: 767px) {
  .category-menu-section {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 90px;
    background-color: #f1f6fb;
  }
}
.category-menu-section .category-menu {
  display: flex;
  background-color: #f1f6fb;
  flex-direction: row;
  align-items: center;
  padding: 7px;
  border-radius: 40px;
  height: 64px;
}
@media only screen and (max-width: 767px) {
  .category-menu-section .category-menu {
    border-radius: 0;
    padding: 5px;
    min-height: 64px;
    height: auto;
    flex-wrap: wrap;
  }
}
.category-menu-section .category-menu a {
  text-transform: uppercase;
  font-size: 16px;
  color: #424752;
  font-weight: bold;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: background-color 150ms ease-out;
  flex-grow: 1;
}
@media only screen and (max-width: 767px) {
  .category-menu-section .category-menu a {
    border-radius: 0;
    height: 50px;
  }
}
.category-menu-section .category-menu a:hover {
  background-color: rgba(14, 100, 118, 0.1294117647);
}
.category-menu-section .category-menu a.active {
  background-color: #0e6476;
  color: white;
}
.category-menu-section .category-menu .category-menu-divider {
  flex-grow: 0;
  height: 26px;
  width: 1px;
  background-color: #8a94ab;
  margin: 0 5px;
}
@media only screen and (max-width: 767px) {
  .category-menu-section .category-menu .category-menu-divider {
    display: none;
  }
}

.mini-form {
  background-color: #F1F6FB;
  min-width: 40%;
  height: 50px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0;
}
.mini-form input {
  height: 100%;
  flex: 1;
  background-color: #F1F6FB;
  padding: 0 20px;
  font-size: 18px;
}
.mini-form input:focus {
  outline: none;
}
.mini-form button {
  background-color: #F1F6FB;
  height: 50px;
  width: 50px;
}

h4.kereses-message {
  font-size: 18px;
  font-weight: 400;
}

.kereses-section h3 {
  font-weight: 600;
  margin: 0;
  padding: 10px 0 0 0;
}
.kereses-section a p {
  transition: all 250ms ease-in-out;
}
.kereses-section a:hover p {
  color: #0e6476;
}

.szerkesztoseg-section, .kozlesi-section, .kapcsolat-section {
  padding: 0px 0;
}
@media only screen and (max-width: 1023px) {
  .szerkesztoseg-section, .kozlesi-section, .kapcsolat-section {
    padding: 0px 15px;
  }
}
.szerkesztoseg-section p, .kozlesi-section p, .kapcsolat-section p {
  font-size: 16px;
  color: #424752;
  line-height: 1.3;
}
.szerkesztoseg-section p em, .kozlesi-section p em, .kapcsolat-section p em {
  font-weight: 600;
}
.szerkesztoseg-section .szerkesztoseg-title, .kozlesi-section .szerkesztoseg-title, .kapcsolat-section .szerkesztoseg-title {
  text-transform: uppercase;
  color: #0e6476;
  font-family: "Montserrat";
  font-size: 35px;
  text-align: center;
  margin: 0;
  margin-bottom: 10px;
  padding: 0;
  font-weight: bold;
}
@media only screen and (max-width: 1023px) {
  .szerkesztoseg-section .szerkesztoseg-title, .kozlesi-section .szerkesztoseg-title, .kapcsolat-section .szerkesztoseg-title {
    font-size: 25px;
  }
}
.szerkesztoseg-section .szerkesztoseg-subtitle, .kozlesi-section .szerkesztoseg-subtitle, .kapcsolat-section .szerkesztoseg-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1023px) {
  .szerkesztoseg-section .szerkesztoseg-subtitle, .kozlesi-section .szerkesztoseg-subtitle, .kapcsolat-section .szerkesztoseg-subtitle {
    margin-bottom: 40px;
  }
}
.szerkesztoseg-section .szerkesztoseg-subtitle p, .kozlesi-section .szerkesztoseg-subtitle p, .kapcsolat-section .szerkesztoseg-subtitle p {
  font-size: 25px;
  font-family: "Montserrat";
  font-weight: 500;
  text-align: center;
  color: #8a94ab;
  text-transform: uppercase;
  margin: 0 50px;
}
@media only screen and (max-width: 1023px) {
  .szerkesztoseg-section .szerkesztoseg-subtitle p, .kozlesi-section .szerkesztoseg-subtitle p, .kapcsolat-section .szerkesztoseg-subtitle p {
    font-size: 20px;
  }
}
.szerkesztoseg-section .szerkesztoseg-subtitle hr, .kozlesi-section .szerkesztoseg-subtitle hr, .kapcsolat-section .szerkesztoseg-subtitle hr {
  flex-grow: 1;
  border-bottom-width: 2px;
  color: #8a94ab;
}
.szerkesztoseg-section .szerkesztoseg-impressum, .kozlesi-section .szerkesztoseg-impressum, .kapcsolat-section .szerkesztoseg-impressum {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 70px;
  border-bottom-width: 2px;
  padding-bottom: 70px;
  color: #8a94ab;
}
@media only screen and (max-width: 1023px) {
  .szerkesztoseg-section .szerkesztoseg-impressum, .kozlesi-section .szerkesztoseg-impressum, .kapcsolat-section .szerkesztoseg-impressum {
    margin-bottom: 60px;
    padding-bottom: 60px;
  }
}
.szerkesztoseg-section .szerkesztoseg-impressum p, .kozlesi-section .szerkesztoseg-impressum p, .kapcsolat-section .szerkesztoseg-impressum p {
  font-size: 20px;
  font-family: "Montserrat";
  font-weight: 400;
  color: #8a94ab;
  text-transform: uppercase;
  margin: 0 50px;
}
@media only screen and (max-width: 1023px) {
  .szerkesztoseg-section .szerkesztoseg-impressum p, .kozlesi-section .szerkesztoseg-impressum p, .kapcsolat-section .szerkesztoseg-impressum p {
    font-size: 16px;
  }
}
.szerkesztoseg-section .szerkesztoseg-impressum p span, .kozlesi-section .szerkesztoseg-impressum p span, .kapcsolat-section .szerkesztoseg-impressum p span {
  font-weight: 500;
}
.szerkesztoseg-section .szerkesztoseg-impressum hr, .kozlesi-section .szerkesztoseg-impressum hr, .kapcsolat-section .szerkesztoseg-impressum hr {
  flex-grow: 1;
  border-bottom-width: 2px;
  color: #8a94ab;
}
.szerkesztoseg-section .szerkesztoseg-impressum .impressum-right, .szerkesztoseg-section .szerkesztoseg-impressum .impressum-left, .kozlesi-section .szerkesztoseg-impressum .impressum-right, .kozlesi-section .szerkesztoseg-impressum .impressum-left, .kapcsolat-section .szerkesztoseg-impressum .impressum-right, .kapcsolat-section .szerkesztoseg-impressum .impressum-left {
  flex: 1;
}
.szerkesztoseg-section .szerkesztoseg-impressum .impressum-right, .kozlesi-section .szerkesztoseg-impressum .impressum-right, .kapcsolat-section .szerkesztoseg-impressum .impressum-right {
  text-align: right;
}
.szerkesztoseg-section .szerkeszto-wrap, .kozlesi-section .szerkeszto-wrap, .kapcsolat-section .szerkeszto-wrap {
  max-width: 970px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  margin-bottom: 100px;
}
@media only screen and (max-width: 1023px) {
  .szerkesztoseg-section .szerkeszto-wrap, .kozlesi-section .szerkeszto-wrap, .kapcsolat-section .szerkeszto-wrap {
    max-width: auto;
  }
}
.szerkesztoseg-section .szerkeszto-wrap .szerkeszto-l, .kozlesi-section .szerkeszto-wrap .szerkeszto-l, .kapcsolat-section .szerkeszto-wrap .szerkeszto-l {
  flex: 0 0 300px;
  background-position: center;
  background-size: cover;
}
@media only screen and (max-width: 1023px) {
  .szerkesztoseg-section .szerkeszto-wrap .szerkeszto-l, .kozlesi-section .szerkeszto-wrap .szerkeszto-l, .kapcsolat-section .szerkeszto-wrap .szerkeszto-l {
    flex: 0 0 230px;
  }
}
@media only screen and (max-width: 767px) {
  .szerkesztoseg-section .szerkeszto-wrap .szerkeszto-l, .kozlesi-section .szerkeszto-wrap .szerkeszto-l, .kapcsolat-section .szerkeszto-wrap .szerkeszto-l {
    flex: 0 0 160px;
  }
}
.szerkesztoseg-section .szerkeszto-wrap .szerkeszto-r, .kozlesi-section .szerkeszto-wrap .szerkeszto-r, .kapcsolat-section .szerkeszto-wrap .szerkeszto-r {
  flex: 1;
}
.szerkesztoseg-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-t, .kozlesi-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-t, .kapcsolat-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-t {
  height: 80px;
  background-color: #d9e6e9;
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
  .szerkesztoseg-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-t, .kozlesi-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-t, .kapcsolat-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-t {
    height: 60px;
    display: none;
  }
}
.szerkesztoseg-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-t div, .kozlesi-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-t div, .kapcsolat-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-t div {
  width: 100px;
  background-color: #0e6476;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1023px) {
  .szerkesztoseg-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-t div, .kozlesi-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-t div, .kapcsolat-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-t div {
    width: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .szerkesztoseg-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-t div, .kozlesi-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-t div, .kapcsolat-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-t div {
    width: 60px;
  }
}
.szerkesztoseg-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-t div img, .kozlesi-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-t div img, .kapcsolat-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-t div img {
  height: 46px;
}
@media only screen and (max-width: 1023px) {
  .szerkesztoseg-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-t div img, .kozlesi-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-t div img, .kapcsolat-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-t div img {
    height: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .szerkesztoseg-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-t div img, .kozlesi-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-t div img, .kapcsolat-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-t div img {
    height: 30px;
  }
}
.szerkesztoseg-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-b, .kozlesi-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-b, .kapcsolat-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-b {
  background-color: #f1f6fb;
  padding: 50px;
}
@media only screen and (max-width: 1023px) {
  .szerkesztoseg-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-b, .kozlesi-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-b, .kapcsolat-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-b {
    padding: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .szerkesztoseg-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-b, .kozlesi-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-b, .kapcsolat-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-b {
    padding: 20px;
  }
}
.szerkesztoseg-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-b .author-name, .kozlesi-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-b .author-name, .kapcsolat-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-b .author-name {
  font-size: 30px;
  font-weight: 800;
  color: #0e6476;
  text-transform: uppercase;
  margin: 0;
}
@media only screen and (max-width: 1023px) {
  .szerkesztoseg-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-b .author-name, .kozlesi-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-b .author-name, .kapcsolat-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-b .author-name {
    font-size: 22px;
  }
}
.szerkesztoseg-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-b .author-title, .kozlesi-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-b .author-title, .kapcsolat-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-b .author-title {
  color: #424752;
  margin: 0;
}
.szerkesztoseg-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-b .author-content, .kozlesi-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-b .author-content, .kapcsolat-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-b .author-content {
  font-weight: bold;
  line-height: 2;
  color: #424752;
}
.szerkesztoseg-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-b .author-content a, .kozlesi-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-b .author-content a, .kapcsolat-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-b .author-content a {
  color: #0e6476;
}
@media only screen and (max-width: 1023px) {
  .szerkesztoseg-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-b .author-content, .kozlesi-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-b .author-content, .kapcsolat-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-b .author-content {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .szerkesztoseg-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-b .author-content, .kozlesi-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-b .author-content, .kapcsolat-section .szerkeszto-wrap .szerkeszto-r .szerkeszto-r-b .author-content {
    line-height: 1.5;
  }
}

.news-section {
  padding-top: 90px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 1023px) {
  .news-section {
    padding-top: 40px;
    padding-bottom: 0;
  }
}
.news-section nav {
  margin-bottom: 50px;
}
.news-section .news {
  min-height: 315px;
  display: flex;
  align-items: stretch;
  margin-bottom: 50px;
}
.news-section .news:nth-child(even) .news-content-wrap {
  order: 2;
}
.news-section .news:nth-child(even) .news-content-wrap .news-content-date .news-date {
  order: 2;
}
@media only screen and (max-width: 1023px) {
  .news-section .news {
    min-height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .news-section .news {
    flex-direction: column;
    min-height: auto;
  }
}
.news-section .news .news-content-wrap {
  background-color: #f1f6fb;
  flex-grow: 1;
  width: 60%;
}
@media only screen and (max-width: 1023px) {
  .news-section .news .news-content-wrap {
    width: 80%;
  }
}
@media only screen and (max-width: 767px) {
  .news-section .news .news-content-wrap {
    width: auto;
  }
}
.news-section .news .news-content-wrap .news-content-date {
  height: 80px;
  background-color: #8a94ab;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}
.news-section .news .news-content-wrap .news-content-date .news-date {
  font-size: 18px;
  color: white;
  padding: 0 30px;
}
@media only screen and (max-width: 1023px) {
  .news-section .news .news-content-wrap .news-content-date .news-date {
    font-size: 16px;
  }
}
.news-section .news .news-content-wrap .news-content-date .news-date-img-wrap {
  padding: 0 30px;
  background-color: #424752;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1023px) {
  .news-section .news .news-content-wrap .news-content-date .news-date-img-wrap {
    padding: 0 20px;
  }
}
.news-section .news .news-content-wrap .news-content-date .news-date-img-wrap img {
  height: 40px;
}
@media only screen and (max-width: 1023px) {
  .news-section .news .news-content-wrap .news-content-date .news-date-img-wrap img {
    height: 30px;
  }
}
.news-section .news .news-content-wrap .news-content-text-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 30px;
  padding-bottom: 15px;
  padding-right: 150px;
  flex-direction: column;
}
@media only screen and (max-width: 1023px) {
  .news-section .news .news-content-wrap .news-content-text-wrap {
    padding-right: 20px;
    padding: 20px;
  }
}
.news-section .news .news-content-wrap .news-content-text-wrap .news-content-title {
  margin: 0;
  font-size: 32px;
  font-weight: bold;
  color: #0e6476;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1023px) {
  .news-section .news .news-content-wrap .news-content-text-wrap .news-content-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.news-section .news .news-content-wrap .news-content-text-wrap .news-content-extract {
  margin: 0;
  font-size: 16px;
  color: #424752;
}
@media only screen and (max-width: 1023px) {
  .news-section .news .news-content-wrap .news-content-text-wrap .news-content-extract {
    font-size: 14px;
  }
}
.news-section .news .news-content-wrap .news-content-button-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 30px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1023px) {
  .news-section .news .news-content-wrap .news-content-button-wrap {
    margin-bottom: 20px;
    padding-right: 20px;
  }
}
.news-section .news .news-content-wrap .news-content-button-wrap a {
  align-items: center;
  justify-content: center;
  display: flex;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  background-color: #0e6476;
}
.news-section .news .news-content-wrap .news-content-button-wrap a img {
  height: 14px;
}
.news-section .news .news-image {
  width: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1023px) {
  .news-section .news .news-image {
    width: 50%;
  }
}

footer {
  background-color: #f1f6fb;
}

.footer-top {
  padding: 90px 0px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1023px) {
  .footer-top {
    flex-direction: column;
    padding: 30px 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer-top {
    flex-direction: column;
    padding: 30px 0;
  }
}
.footer-top .footer-top-col1 {
  flex-grow: 2;
  border-bottom: 1px solid #a1a1a1;
  height: 60px;
  display: flex;
  width: 440px;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1023px) {
  .footer-top .footer-top-col1 {
    width: auto;
  }
}
@media only screen and (max-width: 1023px) {
  .footer-top .footer-top-col1 {
    order: 2;
    width: auto;
    padding: 30px;
    height: auto;
    text-align: center;
    border-bottom: 0px solid #000;
  }
}
@media only screen and (max-width: 767px) {
  .footer-top .footer-top-col1 {
    order: 2;
    width: auto;
    padding: 30px;
    height: auto;
    text-align: center;
    border-bottom: 0px solid #000;
  }
}
.footer-top .footer-top-col1 p {
  font-size: 16px;
  color: #8a94ab;
  margin: 0;
}
.footer-top .footer-top-col2 {
  flex-shrink: 1;
  flex-grow: 0;
}
@media only screen and (max-width: 767px) {
  .footer-top .footer-top-col2 {
    order: 1;
  }
}
.footer-top .footer-top-col2 .mu-logo {
  height: 60px;
  margin: 0 30px;
}
@media only screen and (max-width: 767px) {
  .footer-top .footer-top-col2 .mu-logo {
    margin: 0;
    height: 50px;
  }
}
.footer-top .footer-top-col3 {
  flex-grow: 2;
  border-bottom: 1px solid #a1a1a1;
  height: 60px;
  width: 440px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media only screen and (max-width: 1023px) {
  .footer-top .footer-top-col3 {
    width: auto;
  }
}
@media only screen and (max-width: 767px) {
  .footer-top .footer-top-col3 {
    order: 3;
  }
}
@media only screen and (max-width: 767px) {
  .footer-top .footer-top-col3 {
    height: auto;
    width: auto;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border-bottom: 0px solid #a1a1a1;
    border-top: 1px solid #a1a1a1;
    padding-top: 20px;
  }
}
.footer-top .footer-top-col3 p {
  font-size: 16px;
  color: #8a94ab;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .footer-top .footer-top-col3 p {
    width: 100%;
    text-align: center;
  }
}
.footer-top .footer-top-col3 img {
  margin-left: 20px;
  height: 40px;
}
@media only screen and (max-width: 767px) {
  .footer-top .footer-top-col3 img {
    margin: 10px;
  }
}

.footer-bottom {
  background-color: #0e353d;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .footer-bottom {
    text-align: center;
    font-size: 14px;
  }
}
.default-button {
  height: 50px;
  background-color: #0e6476;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  padding: 0 25px;
  width: 210px;
}
@media only screen and (max-width: 767px) {
  .default-button {
    width: 170px;
    height: 50px;
  }
}
.default-button img {
  height: 18px;
}
.default-button span {
  text-align: center;
  font-size: 18px;
  color: white;
  font-weight: bold;
  flex: 1;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .default-button span {
    font-size: 16px;
  }
}

.hir-back-button {
  margin-bottom: 50px;
}

.hir-section {
  padding-top: 50px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 1023px) {
  .hir-section {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

.hir-header {
  display: flex;
  align-items: stretch;
  height: 80px;
}
.hir-header .col1,
.hir-header .col3 {
  background-color: #f1f6fb;
  color: #0e6476;
  display: flex;
  align-items: center;
  flex-grow: 1;
  padding: 0 30px;
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
}
@media only screen and (max-width: 1023px) {
  .hir-header .col1,
.hir-header .col3 {
    font-size: 25px;
    padding: 0 20px;
  }
}
.hir-header .col1 p,
.hir-header .col3 p {
  margin: 0;
  padding: 0;
}
.hir-header .col2 {
  background-color: #d9e6e9;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .hir-header .col2 {
    width: 80px;
  }
}
.hir-header .col2 img {
  height: 40px;
}
@media only screen and (max-width: 767px) {
  .hir-header .col2 img {
    height: 30px;
  }
}
.hir-header .col3 {
  font-size: 18px;
  font-weight: 400;
  justify-content: flex-end;
}

.hir-content-wrap {
  padding: 45px;
}
@media only screen and (max-width: 767px) {
  .hir-content-wrap {
    padding: 30px 20px;
  }
}
.hir-content-wrap .hir-title {
  font-size: 32px;
  font-weight: bold;
  color: #0e6476;
  margin-top: 0;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .hir-content-wrap .hir-title {
    font-size: 24px;
  }
}
.hir-content-wrap .hir-content {
  color: #424752;
  line-height: 1.6;
}

#szemle_view {
  margin: 60px 0;
}
@media only screen and (max-width: 1023px) {
  #szemle_view {
    margin: 30px 0px;
  }
}

.szemle_view_container {
  height: 800px;
}
@media only screen and (max-width: 1023px) {
  .szemle_view_container {
    height: 100%;
  }
}

.absztraktok-section {
  padding: 100px 0;
}
@media only screen and (max-width: 1023px) {
  .absztraktok-section {
    padding: 60px 15px;
  }
}
.absztraktok-section .absztraktok-buttons-cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .absztraktok-section .absztraktok-buttons-cont {
    flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  .absztraktok-section .absztraktok-buttons-cont a, .absztraktok-section .absztraktok-buttons-cont form {
    width: 100%;
    margin: 10px;
  }
}
.absztraktok-section .absztraktok-years {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.absztraktok-section .absztraktok-years a img {
  height: 18px;
}
.absztraktok-section .absztraktok-years p {
  font-size: 35px;
  font-family: "Montserrat";
  font-weight: bold;
  color: #0e6476;
  margin: 0 100px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .absztraktok-section .absztraktok-years p {
    font-size: 24px;
    margin: 0 60px;
  }
}
.absztraktok-section .absztraktok-cont {
  margin-top: 50px;
  padding: 50px 0;
}
@media only screen and (max-width: 767px) {
  .absztraktok-section .absztraktok-cont {
    margin-top: 30px;
    padding: 30px 0;
  }
}
.absztraktok-section .absztraktok-cont .absztrakt {
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .absztraktok-section .absztraktok-cont .absztrakt {
    margin-bottom: 30px;
  }
}
.absztraktok-section .absztraktok-cont .absztrakt .absztrakt-top {
  width: 100%;
  height: 80px;
  display: flex;
  background-color: #f1f6fb;
}
.absztraktok-section .absztraktok-cont .absztrakt .absztrakt-top .absztrakt-top-l {
  width: 100px;
  background-color: #0e6476;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .absztraktok-section .absztraktok-cont .absztrakt .absztrakt-top .absztrakt-top-l {
    width: 60px;
  }
}
.absztraktok-section .absztraktok-cont .absztrakt .absztrakt-top .absztrakt-top-l img {
  height: 46px;
}
@media only screen and (max-width: 767px) {
  .absztraktok-section .absztraktok-cont .absztrakt .absztrakt-top .absztrakt-top-l img {
    height: 26px;
  }
}
.absztraktok-section .absztraktok-cont .absztrakt .absztrakt-top .date {
  align-self: center;
  font-weight: 800;
  color: #0e6476;
  font-size: 24px;
  padding-left: 30px;
}
@media only screen and (max-width: 767px) {
  .absztraktok-section .absztraktok-cont .absztrakt .absztrakt-top .date {
    padding-left: 10px;
    font-size: 20px;
  }
}
.absztraktok-section .absztraktok-cont .absztrakt .absztrakt-top .divider {
  height: 60%;
  background-color: rgba(138, 148, 171, 0.2980392157);
  width: 2px;
  align-self: center;
  margin: 0 20px;
}
@media only screen and (max-width: 767px) {
  .absztraktok-section .absztraktok-cont .absztrakt .absztrakt-top .divider {
    margin: 0 0px;
  }
}
.absztraktok-section .absztraktok-cont .absztrakt .absztrakt-top .author-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.3;
  flex-grow: 1;
}
.absztraktok-section .absztraktok-cont .absztrakt .absztrakt-top .author-wrap .author {
  margin: 0;
  font-weight: 800;
  color: #0e6476;
  font-size: 24px;
}
@media only screen and (max-width: 767px) {
  .absztraktok-section .absztraktok-cont .absztrakt .absztrakt-top .author-wrap .author {
    font-size: 20px;
    text-align: center;
  }
}
.absztraktok-section .absztraktok-cont .absztrakt .absztrakt-top .author-wrap .title {
  margin: 0;
  font-weight: 400;
  color: #424752;
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .absztraktok-section .absztraktok-cont .absztrakt .absztrakt-top .author-wrap .title {
    font-size: 16px;
    text-align: center;
  }
}
.absztraktok-section .absztraktok-cont .absztrakt .absztrakt-top .absztrakt-open-button {
  height: 50px;
  width: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: #0e6476;
  margin: 0 30px;
  align-self: center;
}
@media only screen and (max-width: 767px) {
  .absztraktok-section .absztraktok-cont .absztrakt .absztrakt-top .absztrakt-open-button {
    margin: 0 5px;
  }
}
.absztraktok-section .absztraktok-cont .absztrakt .absztrakt-top .absztrakt-open-button img {
  width: 14px;
}
.absztraktok-section .absztraktok-cont .absztrakt .absztrakt-top .absztrakt-open-button img:nth-child(2) {
  display: none;
}
.absztraktok-section .absztraktok-cont .absztrakt.open .absztrakt-open-button img:nth-child(1) {
  display: none;
}
.absztraktok-section .absztraktok-cont .absztrakt.open .absztrakt-open-button img:nth-child(2) {
  display: block;
}
.absztraktok-section .absztraktok-cont .absztrakt .collapsible {
  display: none;
}
.absztraktok-section .absztraktok-cont .absztrakt .absztrakt-middle {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .absztraktok-section .absztraktok-cont .absztrakt .absztrakt-middle {
    flex-direction: column;
  }
}
.absztraktok-section .absztraktok-cont .absztrakt .absztrakt-middle .aml {
  flex: 0 0 40%;
  background-image: url("/img/newsimg1.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .absztraktok-section .absztraktok-cont .absztrakt .absztrakt-middle .aml {
    height: 180px;
    width: 180px;
    align-self: center;
    flex: unset;
    border-radius: 150px;
    margin-top: 30px;
  }
}
.absztraktok-section .absztraktok-cont .absztrakt .absztrakt-middle .amr {
  padding: 50px;
}
@media only screen and (max-width: 767px) {
  .absztraktok-section .absztraktok-cont .absztrakt .absztrakt-middle .amr {
    padding: 30px;
  }
}
.absztraktok-section .absztraktok-cont .absztrakt .absztrakt-middle .amr .author-name {
  font-size: 30px;
  font-weight: 800;
  color: #0e6476;
  text-transform: uppercase;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .absztraktok-section .absztraktok-cont .absztrakt .absztrakt-middle .amr .author-name {
    font-size: 24px;
  }
}
.absztraktok-section .absztraktok-cont .absztrakt .absztrakt-middle .amr .author-title {
  color: #424752;
  margin: 0;
}
.absztraktok-section .absztraktok-cont .absztrakt .absztrakt-middle .amr .author-content {
  margin-top: 30px;
  font-weight: 400;
  line-height: 1.8;
  color: #424752;
}
@media only screen and (max-width: 767px) {
  .absztraktok-section .absztraktok-cont .absztrakt .absztrakt-middle .amr .author-content {
    margin-top: 20px;
  }
}
.absztraktok-section .absztraktok-cont .absztrakt .absztrakt-ab-bar {
  display: flex;
  background-color: #f1f6fb;
  height: 80px;
  justify-content: flex-end;
}
.absztraktok-section .absztraktok-cont .absztrakt .absztrakt-ab-bar span {
  align-self: center;
  font-weight: 800;
  color: #0e6476;
  font-size: 24px;
  padding: 0 30px;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .absztraktok-section .absztraktok-cont .absztrakt .absztrakt-ab-bar span {
    font-size: 20px;
    padding: 0 15px;
  }
}
.absztraktok-section .absztraktok-cont .absztrakt .absztrakt-bottom {
  padding: 50px 0;
}
@media only screen and (max-width: 767px) {
  .absztraktok-section .absztraktok-cont .absztrakt .absztrakt-bottom {
    padding: 30px 0;
  }
}
.absztraktok-section .absztraktok-cont .absztrakt .absztrakt-bottom .ab-title {
  font-size: 32px;
  font-weight: bold;
  color: #0e6476;
  margin-top: 0;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .absztraktok-section .absztraktok-cont .absztrakt .absztrakt-bottom .ab-title {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
.absztraktok-section .absztraktok-cont .absztrakt .absztrakt-bottom .ab-content {
  margin: 0;
  color: #424752;
  line-height: 1.6;
}

.absztraktok-nr {
  display: flex;
  align-items: center;
}
.absztraktok-nr hr {
  flex-grow: 1;
  border-bottom-width: 2px;
  color: #8a94ab;
}
.absztraktok-nr .absztraktok-nrs {
  flex-grow: 0;
  display: flex;
  align-items: center;
  padding: 0 30px;
}
.absztraktok-nr .absztraktok-nrs .divider {
  height: 25px;
  background-color: #8a94ab;
  width: 2px;
}
.absztraktok-nr .absztraktok-nrs a, .absztraktok-nr .absztraktok-nrs p {
  color: #8a94ab;
  font-weight: 500;
  font-size: 25px;
  font-family: "Montserrat";
  margin: 0 8px;
}
@media only screen and (max-width: 767px) {
  .absztraktok-nr .absztraktok-nrs a, .absztraktok-nr .absztraktok-nrs p {
    font-size: 20px;
  }
}
.absztraktok-nr .absztraktok-nrs a.current, .absztraktok-nr .absztraktok-nrs p.current {
  font-weight: bold;
  color: #0e6476;
}

.kereses-nr {
  margin-bottom: 30px;
  margin-top: 60px;
}

.lapszamok-cont {
  margin: 0 0;
  padding: 60px 0;
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: center;
  width: 100%;
}
.lapszamok-cont .lapszam {
  background-color: #d9e6e9;
  padding: 18px;
  flex: 0 0 330px;
  margin: 30px 16px;
}
@media only screen and (max-width: 767px) {
  .lapszamok-cont .lapszam {
    flex: 0 0 280px;
  }
}
.lapszamok-cont .lapszam .lapszam-t {
  height: 300px;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .lapszamok-cont .lapszam .lapszam-t {
    height: 270px;
  }
}
.lapszamok-cont .lapszam .lapszam-b {
  height: 80px;
  display: flex;
  background-color: #f1f6fb;
}
.lapszamok-cont .lapszam .lapszam-b .lapszam-b-l {
  flex-grow: 1;
}
@media only screen and (max-width: 767px) {
  .lapszamok-cont .lapszam .lapszam-b .lapszam-b-l {
    display: flex;
    align-items: center;
  }
}
.lapszamok-cont .lapszam .lapszam-b .lapszam-b-l p {
  font-size: 24px;
  color: #0e6476;
  font-weight: 800;
  align-self: center;
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  .lapszamok-cont .lapszam .lapszam-b .lapszam-b-l p {
    padding: 0 10px;
    font-size: 20px;
  }
}
.lapszamok-cont .lapszam .lapszam-b .lapszam-b-r {
  flex: 0 0 100px;
  background-color: #0e6476;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .lapszamok-cont .lapszam .lapszam-b .lapszam-b-r {
    flex: 0 0 80px;
  }
}
.lapszamok-cont .lapszam .lapszam-b .lapszam-b-r img {
  margin: 30px;
}
@media only screen and (max-width: 767px) {
  .lapszamok-cont .lapszam .lapszam-b .lapszam-b-r img {
    margin: 24px;
  }
}

/*------------------TABLET-------------------*/
@media only screen and (max-width: 1023px) {
  .nav-trigger {
    display: block;
  }
  .nav-desktop {
    display: none;
  }
  .nav-mobile-wrap {
    display: contents;
  }
  .absztrakt-top {
    height: auto !important;
    min-height: 80px;
  }
}
/*------------------PHONE-------------------*/
@media only screen and (max-width: 767px) {
  .absztrakt .absztrakt-top {
    height: auto !important;
    flex-wrap: wrap;
  }
  .absztrakt .absztrakt-top-l {
    height: 60px;
    width: 60px !important;
  }
  .absztrakt .absztrakt-top-l img {
    height: 25px;
  }
  .absztrakt .absztrakt-open-button {
    margin: 0 5px;
  }
  .absztrakt .date {
    flex: 1;
    text-align: center;
  }
  .absztrakt .author-wrap {
    order: 10;
    padding: 10px;
    width: 100%;
  }
}/*# sourceMappingURL=app.css.map */