/*TYPOGRAPHY*/
h1 {
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase; }
  @media only screen and (max-width: 720px) {
    h1 {
      font-size: 30px; } }

a {
  text-decoration: none;
  color: #320C6F;
  font-weight: 400; }

p,
li {
  font-size: 20px;
  font-weight: 100;
  color: #242424; }
  @media only screen and (max-width: 720px) {
    p,
    li {
      font-size: 18px; } }

.post-title {
  background: rgba(36, 36, 36, 0.82);
  margin: 0px;
  padding: 10px; }

.section-title0 {
  position: relative;
  font-weight: bold;
  font-size: 29px;
  text-transform: uppercase;
  background: #320C6F;
  color: #ffff;
  display: inline-block;
  padding: 5px 10px; }
  .section-title0 > svg {
    position: absolute;
    top: 36px;
    left: 0px; }
  .section-title0::after {
    content: "";
    background: rgba(50, 12, 111, 0.3);
    width: 100%;
    display: block;
    position: absolute;
    height: 43px;
    top: -10px;
    left: 10px;
    z-index: -1; }

.section-title1 {
  position: relative; }
  .section-title1 h2 {
    position: relative;
    font-weight: bold;
    font-size: 29px;
    text-transform: uppercase;
    background: #320C6F;
    color: #ffff;
    display: inline-block;
    padding: 5px 10px; }
    .section-title1 h2 > svg {
      position: absolute;
      top: 36px;
      left: 0px; }
    .section-title1 h2::after {
      content: "";
      background: rgba(50, 12, 111, 0.3);
      width: 100%;
      display: block;
      position: absolute;
      height: 43px;
      top: 19px;
      left: 17px;
      z-index: -1; }
  .section-title1::after {
    content: "";
    height: 2px;
    background: #D5D5D5;
    width: 78%;
    position: absolute;
    right: 0px;
    top: 60px;
    z-index: -1; }
    @media only screen and (min-width: 1640px) {
      .section-title1::after {
        width: 83%; } }
    @media only screen and (max-width: 1280px) {
      .section-title1::after {
        width: 73%; } }

/* ICONS */
.icon {
  display: inline-block; }

.icon-logo svg rect {
  fill: #320C6F; }

.icon-logo-white svg rect {
  fill: #ffff; }

.icon-search path {
  fill: #320C6F; }

.icon-search-white path {
  fill: #ffff; }

.icon-fb path {
  fill: #320C6F; }

.icon-fb-white path {
  fill: #ffff; }

.icon-tw path {
  fill: #320C6F; }

.icon-tw-white path {
  fill: #ffff; }

.icon-yt path {
  fill: #320C6F; }

.icon-yt-white path {
  fill: #ffff; }

.icon-article path,
.icon-article rect {
  fill: #320C6F; }

.icon-article-white path,
.icon-article-white rect {
  fill: #ffff; }

.icon-calendar path,
.icon-calendar rect {
  fill: #320C6F; }

.icon-calendar-white path,
.icon-calendar-white rect {
  fill: #ffff; }

.icon-calendar-black path,
.icon-calendar-black rect {
  fill: #242424; }

.icon-arrow-right path,
.icon-arrow-right rect {
  fill: #320C6F; }

.icon-arrow-right-white path,
.icon-arrow-right-white rect {
  fill: #ffff; }

.icon-download path,
.icon-download rect {
  fill: #320C6F; }

.icon-download-white path,
.icon-download-white rect {
  fill: #ffff; }

.icon-download-black path,
.icon-download-black rect {
  fill: #242424; }

/* BUTTONS */
button {
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  border: none;
  padding: 5px 10px;
  cursor: pointer; }

.btn-more-block {
  text-align: right;
  position: relative; }
  .btn-more-block button {
    background: #320C6F;
    color: #ffff;
    transition: 150ms ease; }
    .btn-more-block button .btn-text {
      position: relative;
      top: -6px;
      padding-right: 5px; }
    .btn-more-block button:before {
      content: "";
      height: 2px;
      background: #D5D5D5;
      width: 78%;
      position: absolute;
      left: 0px;
      top: 18px;
      z-index: -1; }
      @media only screen and (min-width: 1640px) {
        .btn-more-block button:before {
          width: 83%; } }
      @media only screen and (max-width: 1280px) {
        .btn-more-block button:before {
          width: 73%; } }
    .btn-more-block button:hover {
      background: #FF9417; }

.btn-more-glass button {
  background: #320C6F;
  color: #ffff;
  transition: 150ms ease;
  border: solid 1px #ffff;
  background: rgba(36, 36, 36, 0.52);
  backdrop-filter: blur(14px); }
  .btn-more-glass button .btn-text {
    position: relative;
    top: -6px;
    padding-right: 5px; }
  .btn-more-glass button .icon svg {
    width: 20px; }
  .btn-more-glass button:hover {
    background: #FF9417; }

.btn-download a {
  transition: 150ms ease;
  background: #ffff;
  color: #242424;
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 100; }
  .btn-download a:hover {
    background: #FF9417;
    color: #ffff; }
    .btn-download a:hover .icon path,
    .btn-download a:hover .icon rect {
      fill: #ffff; }

/* lists */
.post_list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 50px 0px; }
  @media only screen and (max-width: 1280px) {
    .post_list {
      grid-template-columns: 1fr; } }
  .post_list .post-thumb {
    cursor: pointer;
    position: relative;
    z-index: 1; }
    .post_list .post-thumb::after {
      content: "";
      width: 100%;
      background: rgba(50, 12, 111, 0.3);
      height: 188px;
      position: absolute;
      left: -9px;
      padding: 5px;
      top: -9px;
      opacity: 0;
      transition: 150ms ease; }
    .post_list .post-thumb:hover::after {
      opacity: 1; }
    .post_list .post-thumb:hover .post-img {
      background-size: 150%; }
    .post_list .post-thumb a {
      color: #242424; }
      .post_list .post-thumb a .post-img {
        width: 284px;
        height: 179px;
        border: solid 2px #ffff;
        background-position: center;
        background-size: 120%;
        transition: 150ms ease;
        float: left;
        margin-right: 10px;
        box-sizing: border-box; }
        @media only screen and (max-width: 720px) {
          .post_list .post-thumb a .post-img {
            float: none;
            width: 100%;
            background-size: 100%; } }
      .post_list .post-thumb a .post-details {
        padding-left: 10px;
        position: relative;
        height: 178px;
        z-index: 1; }
        @media only screen and (max-width: 720px) {
          .post_list .post-thumb a .post-details {
            height: auto;
            padding-left: 0px;
            padding-top: 9px;
            margin-bottom: 20px; } }
        .post_list .post-thumb a .post-details .title {
          font-size: 18px;
          font-weight: bold;
          text-transform: uppercase;
          margin: 0px; }
          @media only screen and (max-width: 1440px) {
            .post_list .post-thumb a .post-details .title {
              font-size: 16px; } }
        .post_list .post-thumb a .post-details .title-sub {
          font-size: 16px;
          font-weight: 100;
          padding-top: 5px;
          margin: 0px; }
          @media only screen and (max-width: 1440px) {
            .post_list .post-thumb a .post-details .title-sub {
              font-size: 14px; } }
        .post_list .post-thumb a .post-details .date {
          background: white;
          padding: 5px;
          font-size: 14px;
          position: absolute;
          bottom: 0px; }
          @media only screen and (max-width: 720px) {
            .post_list .post-thumb a .post-details .date {
              top: -28px;
              bottom: unset; } }

.pub-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  gap: 20px;
  padding: 50px 0px; }
  @media only screen and (max-width: 1280px) {
    .pub-list {
      grid-template-columns: 1fr; } }
  .pub-list .pub-thumb {
    position: relative; }
    .pub-list .pub-thumb::after {
      content: "";
      width: 100%;
      background: rgba(50, 12, 111, 0.3);
      height: 339px;
      position: absolute;
      left: -9px;
      padding: 5px;
      top: -9px;
      opacity: 0;
      transition: 150ms ease; }
      @media only screen and (max-width: 720px) {
        .pub-list .pub-thumb::after {
          height: 100%; } }
    .pub-list .pub-thumb:hover::after {
      opacity: 1; }
    .pub-list .pub-thumb:hover .pub-img {
      background-size: 130%; }
    .pub-list .pub-thumb .pub-img {
      width: 232px;
      height: 331px;
      background-size: 101%;
      background-position: center;
      transition: 150ms ease;
      float: left;
      margin-right: 20px; }
      @media only screen and (max-width: 720px) {
        .pub-list .pub-thumb .pub-img {
          width: 162px;
          height: 231px;
          float: none; } }
    .pub-list .pub-thumb .pub-details {
      position: relative;
      height: 331px;
      display: table-cell;
      z-index: 1; }
      @media only screen and (max-width: 720px) {
        .pub-list .pub-thumb .pub-details {
          height: unset;
          display: block;
          padding-top: 10px;
          margin-bottom: 40px; } }
      .pub-list .pub-thumb .pub-details .title {
        font-size: 18px;
        font-weight: bold;
        text-transform: uppercase;
        margin: 0px; }
      .pub-list .pub-thumb .pub-details .title-sub {
        font-size: 16px; }
      .pub-list .pub-thumb .pub-details .details {
        display: inline-block;
        padding: 10px;
        background: rgba(255, 255, 255, 0.82); }
        .pub-list .pub-thumb .pub-details .details p {
          font-size: 16px;
          font-weight: 400;
          margin: 0px; }
      .pub-list .pub-thumb .pub-details .btn-download {
        position: absolute;
        bottom: 0px; }
        @media only screen and (max-width: 720px) {
          .pub-list .pub-thumb .pub-details .btn-download {
            position: relative;
            margin-top: 10px; } }

.camp-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  gap: 20px;
  padding: 50px 0px; }
  @media only screen and (max-width: 1024px) {
    .camp-list {
      grid-template-columns: 1fr; } }
  .camp-list .camp-thumb {
    position: relative;
    z-index: 1;
    height: 450px;
    display: flex;
    align-items: flex-end; }
    .camp-list .camp-thumb .camp-img {
      width: 100%;
      height: 100%;
      background-size: 110%;
      background-position: center;
      transition: 150ms ease;
      position: absolute;
      z-index: -1; }
      @media only screen and (max-width: 570px) {
        .camp-list .camp-thumb .camp-img {
          background-position: top; } }
    .camp-list .camp-thumb .camp-details .title {
      background: rgba(36, 36, 36, 0.82);
      font-size: 16px;
      text-transform: uppercase;
      font-weight: bold;
      color: #ffff;
      margin: 0px;
      padding: 10px;
      transition: 150ms ease; }
    .camp-list .camp-thumb .camp-details .title-sub {
      background: rgba(36, 36, 36, 0.52);
      backdrop-filter: blur(14px);
      color: #ffff;
      font-size: 16px;
      margin: 0px;
      padding: 10px;
      padding-right: 50%; }
      @media only screen and (max-width: 1280px) {
        .camp-list .camp-thumb .camp-details .title-sub {
          padding-right: 30%; } }
      @media only screen and (max-width: 570px) {
        .camp-list .camp-thumb .camp-details .title-sub {
          padding-right: 5px; } }
    .camp-list .camp-thumb .camp-details .date {
      color: #ffff;
      font-size: 14px;
      position: absolute;
      top: 10px;
      right: 10px;
      border: solid 1px white;
      padding: 5px;
      background: rgba(36, 36, 36, 0.82); }
    .camp-list .camp-thumb .camp-details .btn-more-glass {
      position: absolute;
      right: 10px;
      bottom: 10px; }
      @media only screen and (max-width: 570px) {
        .camp-list .camp-thumb .camp-details .btn-more-glass {
          position: relative;
          right: unset;
          bottom: unset; }
          .camp-list .camp-thumb .camp-details .btn-more-glass button {
            width: 100%; } }
    .camp-list .camp-thumb:hover .camp-img {
      background-size: 120%; }
    .camp-list .camp-thumb:hover .title {
      background: rgba(50, 12, 111, 0.74); }

.overlay {
  position: fixed;
  right: 0px;
  top: 0px;
  background: rgba(36, 36, 36, 0.82);
  width: 100%;
  height: 100%;
  z-index: 9;
  backdrop-filter: blur(0px);
  transition: 150ms ease;
  transform: translateX(100%); }
  .overlay-active {
    backdrop-filter: blur(10px);
    transform: translateX(0%); }

.logos-list-sm {
  padding: 50px 0px;
  list-style: none;
  margin: 0px;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr 1fr; }
  @media only screen and (max-width: 1280px) {
    .logos-list-sm {
      grid-template-columns: 1fr 1fr; } }
  @media only screen and (max-width: 570px) {
    .logos-list-sm {
      grid-template-columns: 1fr; } }
  .logos-list-sm li a {
    display: block;
    height: 185px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: 150ms ease; }
    .logos-list-sm li a p {
      opacity: 0;
      display: block;
      color: #ffff;
      background: #320C6F;
      padding: 5px;
      position: absolute;
      font-size: 16px;
      transition: 150ms ease; }
    .logos-list-sm li a:hover p {
      opacity: 1; }

.logos-list-big {
  padding: 50px 0px;
  list-style: none;
  margin: 0px;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr; }
  @media only screen and (max-width: 1280px) {
    .logos-list-big {
      grid-template-columns: 1fr 1fr; } }
  @media only screen and (max-width: 570px) {
    .logos-list-big {
      grid-template-columns: 1fr; } }
  .logos-list-big li a {
    display: block;
    height: 255px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: 150ms ease; }
    .logos-list-big li a p {
      opacity: 0;
      display: block;
      color: #ffff;
      background: #320C6F;
      padding: 5px;
      position: absolute;
      font-size: 16px;
      transition: 150ms ease; }
    .logos-list-big li a:hover p {
      opacity: 1; }

.projects-list {
  list-style: none;
  padding: 50px 0px;
  margin: 0px; }
  .projects-list li {
    background: #D5D5D5;
    padding: 15px;
    margin-bottom: 10px; }
    .projects-list li h4 {
      font-weight: 500;
      margin: 0px;
      text-transform: uppercase; }
    .projects-list li div {
      margin-bottom: 15px; }
      .projects-list li div span {
        background: #ffff;
        padding: 5px;
        margin-right: 3px; }

.pagination {
  text-align: center; }
  .pagination > * {
    font-size: 25px;
    font-weight: 100;
    background: #320C6F;
    color: #ffff;
    padding: 5px; }
  .pagination span {
    background: rgba(50, 12, 111, 0.3); }

.searchform {
  text-align: center;
  width: 100%; }
  .searchform .searchfield {
    width: -webkit-fill-available;
    height: 29px;
    padding: 5px;
    font-family: "Ubuntu";
    font-weight: 400;
    font-size: 20px; }
    .searchform .searchfield:focus-visible {
      outline: solid 1px #FF9417; }
  .searchform .searchbutton {
    background: #320C6F;
    color: #ffff;
    background: #320c6f;
    color: #ffff;
    font-family: "Ubuntu";
    font-size: 20px;
    font-weight: 100;
    margin-top: 15px;
    padding-left: 10px;
    padding-right: 10px;
    border: none;
    transition: 150ms ease; }
    .searchform .searchbutton:hover {
      background: #FF9417;
      cursor: pointer; }

html {
  max-width: 1920px;
  margin: auto; }
  html body {
    font-family: "Ubuntu", sans-serif;
    margin: 0px;
    display: initial; }
    html body .background-main {
      background: url("../assets/background_def.jpg");
      background-size: cover;
      width: 100%;
      z-index: -10;
      height: 100vh;
      position: fixed;
      opacity: 0.4;
      max-width: 1920px; }
    html body > header {
      position: absolute;
      padding: 30px;
      width: -webkit-fill-available;
      width: -moz-available;
      z-index: 10; }
      @media only screen and (max-width: 570px) {
        html body > header {
          padding: 10px; } }
      html body > header .logo {
        float: left; }
        @media only screen and (max-width: 570px) {
          html body > header .logo svg {
            width: 40px;
            height: 40px; } }
      html body > header .links {
        float: right;
        padding-right: 70px; }
        @media only screen and (max-width: 570px) {
          html body > header .links {
            padding-right: 54px; } }
        html body > header .links > * {
          display: inline-flex;
          height: 56px;
          padding: 0px 10px;
          background: rgba(255, 255, 255, 0.22);
          vertical-align: text-bottom;
          margin-right: 10px; }
          @media only screen and (max-width: 570px) {
            html body > header .links > * {
              margin-right: 0px;
              padding: 0px 5px; } }
          @media only screen and (max-width: 570px) {
            html body > header .links > * {
              height: 40px; } }
          html body > header .links > * > * {
            margin: auto; }
        html body > header .links svg rect {
          fill: none; }
        html body > header .links .social *:nth-child(2) {
          padding: 0px 10px; }
        html body > header .links .social .icon svg path {
          transition: 150ms ease; }
        html body > header .links .social .icon-fb-white:hover svg path {
          fill: #2d88ff; }
        html body > header .links .social .icon-tw-white:hover svg path {
          fill: #1da1f2; }
        html body > header .links .social .icon-yt-white:hover svg path {
          fill: #ff0000; }
        html body > header .links .lang {
          color: #ffff; }
        html body > header .links .search,
        html body > header .links .lang {
          transition: 150ms ease; }
          html body > header .links .search:hover,
          html body > header .links .lang:hover {
            background: #FF9417; }
      html body > header .links-front path,
      html body > header .links-front rect,
      html body > header .links-front a,
      html body > header .links-front span {
        fill: #320C6F;
        color: #320C6F; }
      html body > header .nav-btn {
        position: fixed;
        right: 30px;
        z-index: 10; }
        @media only screen and (max-width: 570px) {
          html body > header .nav-btn {
            right: 10px; } }
        html body > header .nav-btn .nav-btn-lines {
          background: #320C6F;
          width: 64px;
          height: 55px;
          box-sizing: border-box;
          padding: 10px 10px 10px;
          box-shadow: -7px 7px 0px rgba(36, 36, 36, 0.82);
          transition: 150ms ease;
          cursor: pointer; }
          @media only screen and (max-width: 570px) {
            html body > header .nav-btn .nav-btn-lines {
              width: 42px;
              height: 40px;
              box-shadow: -5px 5px 0px rgba(36, 36, 36, 0.82); } }
          html body > header .nav-btn .nav-btn-lines div {
            background: white;
            height: 2px;
            margin-bottom: 15px;
            border-radius: 10px; }
            @media only screen and (max-width: 570px) {
              html body > header .nav-btn .nav-btn-lines div {
                margin-bottom: 7px; } }
          html body > header .nav-btn .nav-btn-lines:hover {
            background: #FF9417; }
        html body > header .nav-btn-openned {
          display: block; }
      html body > header .main-nav {
        transform: translateX(100%);
        background: #320c6f;
        background: linear-gradient(180deg, #320c6f 0%, #d7733f 100%, #ff9417 100%);
        position: fixed;
        top: 0px;
        right: 0px;
        width: 50%;
        height: 100%;
        z-index: 10;
        transition: 150ms ease; }
        @media only screen and (max-width: 1440px) {
          html body > header .main-nav {
            width: 60%; } }
        @media only screen and (max-width: 1280px) {
          html body > header .main-nav {
            width: 70%; } }
        @media only screen and (max-width: 1024px) {
          html body > header .main-nav {
            width: 85%; } }
        html body > header .main-nav-active {
          transform: translateX(0%); }
        html body > header .main-nav .icon-logo-white {
          position: absolute;
          width: 100%;
          height: 100%;
          z-index: -1; }
          html body > header .main-nav .icon-logo-white svg {
            width: 100%;
            height: 100%;
            opacity: 0.04; }
        html body > header .main-nav .links {
          position: absolute;
          top: 30px;
          right: 30px; }
          @media only screen and (max-width: 570px) {
            html body > header .main-nav .links {
              top: 10px;
              right: 10px; } }
        html body > header .main-nav .nav-btn-openned {
          position: absolute;
          top: 30px; }
          @media only screen and (max-width: 570px) {
            html body > header .main-nav .nav-btn-openned {
              top: 10px; } }
          html body > header .main-nav .nav-btn-openned .nav-btn-lines {
            background: #ffff; }
            html body > header .main-nav .nav-btn-openned .nav-btn-lines div {
              background: #242424; }
        html body > header .main-nav nav {
          padding-top: 203px; }
          html body > header .main-nav nav ul {
            list-style: none;
            padding: 10px;
            border-left: solid 1px #ffff; }
          html body > header .main-nav nav li {
            font-size: 25px;
            text-transform: uppercase;
            line-height: 1.5;
            transition: 150ms ease; }
            html body > header .main-nav nav li a {
              font-weight: 100;
              color: #ffff; }
            html body > header .main-nav nav li:hover a {
              font-weight: bold; }
            @media only screen and (max-width: 570px) {
              html body > header .main-nav nav li {
                font-size: 20px; } }
          html body > header .main-nav nav .nav-list {
            margin-left: 20%;
            position: relative; }
            @media only screen and (max-width: 1024px) {
              html body > header .main-nav nav .nav-list {
                margin-left: 10%; } }
            html body > header .main-nav nav .nav-list #menu-item-47,
            html body > header .main-nav nav .nav-list #menu-item-1756 {
              position: absolute;
              top: -44px; }
              html body > header .main-nav nav .nav-list #menu-item-47 a,
              html body > header .main-nav nav .nav-list #menu-item-1756 a {
                font-size: 18px;
                text-transform: initial;
                position: relative;
                top: -4px; }
              html body > header .main-nav nav .nav-list #menu-item-47::after,
              html body > header .main-nav nav .nav-list #menu-item-1756::after {
                content: "";
                background-image: url("../../../../../assets/icons/arrow_right.svg");
                width: 28px;
                height: 27px;
                display: block;
                position: absolute;
                top: 3px;
                left: -38px;
                background-repeat: no-repeat;
                transform: rotate(180deg); }
            html body > header .main-nav nav .nav-list .menu-item-has-children {
              position: relative; }
              html body > header .main-nav nav .nav-list .menu-item-has-children .sub-menu {
                position: absolute;
                left: 191px;
                top: -30px; }
                html body > header .main-nav nav .nav-list .menu-item-has-children .sub-menu::before {
                  content: "";
                  background: #ffff;
                  width: 31px;
                  height: 1px;
                  display: block;
                  position: absolute;
                  top: 48px;
                  left: -32px; }
                @media only screen and (max-width: 720px) {
                  html body > header .main-nav nav .nav-list .menu-item-has-children .sub-menu {
                    position: relative;
                    left: unset;
                    top: unset; }
                    html body > header .main-nav nav .nav-list .menu-item-has-children .sub-menu::before {
                      display: none; } }
    html body .regular-post article header {
      min-height: 550px;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      display: flex; }
      html body .regular-post article header .header-content {
        align-self: flex-end;
        color: #ffff;
        padding: 0px 10%;
        width: 100%;
        max-width: 1050px; }
        @media only screen and (max-width: 1280px) {
          html body .regular-post article header .header-content {
            padding: 0px 5%; } }
        html body .regular-post article header .header-content .metadata {
          margin-bottom: 46px; }
          html body .regular-post article header .header-content .metadata > span {
            padding: 10px;
            font-size: 16px; }
            html body .regular-post article header .header-content .metadata > span a,
            html body .regular-post article header .header-content .metadata > span span {
              color: #ffff;
              position: relative;
              top: -3px;
              padding-left: 5px; }
          html body .regular-post article header .header-content .metadata .category {
            float: left;
            background: #320C6F; }
          html body .regular-post article header .header-content .metadata .date {
            float: right;
            background: rgba(36, 36, 36, 0.82); }
            html body .regular-post article header .header-content .metadata .date svg {
              width: 20px;
              height: auto; }
    html body .regular-post article .content {
      padding: 0px 10%;
      max-width: 1050px; }
      @media only screen and (max-width: 1280px) {
        html body .regular-post article .content {
          padding: 0px 5%; } }
      html body .regular-post article .content a {
        transition: 150ms ease;
        padding: 2px 5px; }
      html body .regular-post article .content a:hover {
        background: #FF9417;
        color: #ffff; }
	html body .front-page {
      padding: 30px; }
      html body .front-page > section {
        margin: 100px 0px; }
      html body .front-page .front-head .logo-info {
        padding-left: 70px; }
        html body .front-page .front-head .logo-info > * {
          display: table;
          background: #320C6F;
          color: #ffff;
          padding: 2px 5px; }
        html body .front-page .front-head .logo-info h1 {
          font-size: 20px;
          text-transform: unset;
          margin: 0px;
          margin-bottom: 7px; }
        html body .front-page .front-head .logo-info span {
          font-size: 14px;
          font-weight: 400; }
        @media only screen and (max-width: 1024px) {
          html body .front-page .front-head .logo-info {
            padding-left: 0px;
            position: relative;
            top: 60px; } }
        @media only screen and (max-width: 570px) {
          html body .front-page .front-head .logo-info {
            top: 28px;
            left: -19px; }
            html body .front-page .front-head .logo-info h1 {
              font-size: 16px; }
            html body .front-page .front-head .logo-info span {
              font-size: 12px; } }
      html body .front-page .front-head .background-logo {
        position: absolute;
        z-index: -9;
        opacity: 1;
        width: 100%;
        height: 100%;
        background-size: 82%;
        background-position: bottom;
        top: 0px;
        left: 0px;
        background-repeat: no-repeat;
        opacity: 0.4; }
      html body .front-page .front-head .slider {
        max-width: 1570px;
        margin: auto;
        padding-top: 50px; }
        html body .front-page .front-head .slider .section-title0 {
          position: relative;
          left: -18px;
          bottom: -55px;
          z-index: 2; }
        html body .front-page .front-head .slider .slides {
          list-style: none;
          padding: 0px;
          display: grid;
          grid-template-columns: 2fr 1fr;
          gap: 20px;
          grid-auto-rows: 200px; }
          @media only screen and (max-width: 1024px) {
            html body .front-page .front-head .slider .slides {
              display: none; } }
          html body .front-page .front-head .slider .slides .inactive {
            grid-column-start: 2;
            display: flex;
            align-items: flex-end;
            position: relative;
            top: 4px;
            cursor: pointer;
            transition: 150ms ease; }
            html body .front-page .front-head .slider .slides .inactive .clickArea {
              position: absolute;
              width: 100%;
              height: 100%;
              z-index: 5; }
            html body .front-page .front-head .slider .slides .inactive .page-img {
              background-image: url(http://localhost:8000/wp-content/uploads/2021/03/pismenost.jpg);
              background-size: 100%;
              background-position: center;
              position: absolute;
              height: 200px;
              width: 100%;
              z-index: 0;
              transition: 150ms ease; }
            html body .front-page .front-head .slider .slides .inactive .content {
              width: 100%;
              background: rgba(50, 12, 111, 0.74);
              color: #ffff;
              height: 40px;
              display: flex;
              align-items: center;
              z-index: 1; }
              html body .front-page .front-head .slider .slides .inactive .content .title-with-icon {
                margin: 0px;
                position: relative;
                left: 10px;
                top: -1px;
                text-transform: uppercase;
                font-size: 20px; }
                html body .front-page .front-head .slider .slides .inactive .content .title-with-icon .icon {
                  position: relative;
                  top: 4px; }
            html body .front-page .front-head .slider .slides .inactive:hover .page-img {
              background-size: 120%; }
          html body .front-page .front-head .slider .slides .title,
          html body .front-page .front-head .slider .slides .title-sub,
          html body .front-page .front-head .slider .slides .btn-more-glass {
            display: none; }
          html body .front-page .front-head .slider .slides .active {
            grid-column-start: 1;
            grid-row-start: 1;
            height: 645px;
            position: relative;
            display: flex;
            align-items: flex-end;
            transition: 150ms ease; }
            html body .front-page .front-head .slider .slides .active .title-with-icon {
              display: none; }
            html body .front-page .front-head .slider .slides .active .title,
            html body .front-page .front-head .slider .slides .active .title-sub,
            html body .front-page .front-head .slider .slides .active .btn-more-glass {
              display: block; }
            html body .front-page .front-head .slider .slides .active .page-img {
              transition: 150ms ease;
              height: 640px;
              position: absolute;
              width: 100%;
              background-size: cover;
              z-index: 0; }
            html body .front-page .front-head .slider .slides .active .content {
              max-width: 60%;
              padding: 25px;
              background: rgba(36, 36, 36, 0.52);
              backdrop-filter: blur(14px);
              z-index: 1; }
              html body .front-page .front-head .slider .slides .active .content h3 {
                font-size: 50px;
                text-transform: uppercase;
                font-weight: bold;
                margin: 0px;
                color: #ffff; }
              html body .front-page .front-head .slider .slides .active .content p {
                font-size: 18px;
                color: #ffff;
                margin-bottom: 0px; }
            html body .front-page .front-head .slider .slides .active .btn-more-glass {
              width: 40%;
              text-align: right;
              padding: 0px 25px 25px 0px;
              z-index: 1; }
        html body .front-page .front-head .slider .slides_mobile {
          list-style: none;
          padding: 0px;
          position: relative;
          z-index: 1; }
          @media only screen and (min-width: 1025px) {
            html body .front-page .front-head .slider .slides_mobile {
              display: none; } }
          html body .front-page .front-head .slider .slides_mobile li {
            position: relative;
            margin-bottom: 20px; }
            html body .front-page .front-head .slider .slides_mobile li .page-img {
              position: absolute;
              width: 100%;
              height: 100%;
              background-position: center;
              z-index: -1;
              background-size: cover; }
            html body .front-page .front-head .slider .slides_mobile li .content {
              padding-top: 200px; }
              html body .front-page .front-head .slider .slides_mobile li .content .title-with-icon {
                color: #ffff;
                background: rgba(36, 36, 36, 0.82);
                padding: 10px;
                margin: 0px;
                text-transform: uppercase;
                position: relative; }
                html body .front-page .front-head .slider .slides_mobile li .content .title-with-icon span {
                  position: relative;
                  top: 3px; }
              html body .front-page .front-head .slider .slides_mobile li .content .title-sub {
                display: block;
                background: rgba(36, 36, 36, 0.52);
                backdrop-filter: blur(14px);
                padding: 10px;
                color: #ffff;
                margin: 0px;
                padding-right: 180px; }
                @media only screen and (max-width: 570px) {
                  html body .front-page .front-head .slider .slides_mobile li .content .title-sub {
                    padding-right: 0px; } }
            html body .front-page .front-head .slider .slides_mobile li .btn-more-glass {
              position: absolute;
              right: 10px;
              bottom: 10px; }
              @media only screen and (max-width: 570px) {
                html body .front-page .front-head .slider .slides_mobile li .btn-more-glass {
                  position: relative;
                  right: 0px;
                  bottom: 0px; }
                  html body .front-page .front-head .slider .slides_mobile li .btn-more-glass button {
                    width: 100%; } }
    html body .page header {
      height: 270px;
      position: relative; }
      html body .page header .featured-img {
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 100%; }
      html body .page header .page-title {
        margin: 0px;
        position: absolute;
        bottom: 0px;
        color: #ffff;
        font-size: 46px;
        z-index: 1;
        padding: 0px 20px 10px 20px;
        text-align: center;
        margin-left: 30px; }
        @media only screen and (max-width: 570px) {
          html body .page header .page-title {
            font-size: 30px;
            margin-left: 10px; } }
        html body .page header .page-title::before {
          content: "";
          background: #320C6F;
          width: 100%;
          height: 56%;
          position: absolute;
          bottom: 0px;
          left: 0px;
          z-index: -1; }
          @media only screen and (max-width: 570px) {
            html body .page header .page-title::before {
              width: 97%; } }
    html body .page .content {
      padding: 30px; }
      @media only screen and (max-width: 570px) {
        html body .page .content {
          padding: 10px; } }
    html body .page-ko-smo .content .about,
	html body .page-about .content .about,
    html body .front-page-eng .content .about {
      padding-bottom: 20px; }
    html body .page-ko-smo .content .mission .from-wp,
	html body .page-about .content .mission .from-wp,
    html body .front-page-eng .content .mission .from-wp {
      padding: 20px 0px; }
    html body .page-ko-smo .content .team .tim-list,
	html body .page-about .content .team .tim-list,
    html body .front-page-eng .content .team .tim-list {
      list-style: none;
      padding: 0px;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px;
      margin: 0px;
      padding: 50px 0px; }
      @media only screen and (max-width: 1280px) {
        html body .page-ko-smo .content .team .tim-list,
		html body .page-about .content .team .tim-list,
        html body .front-page-eng .content .team .tim-list {
          grid-template-columns: 1fr 1fr; } }
      @media only screen and (max-width: 720px) {
        html body .page-ko-smo .content .team .tim-list,
		html body .page-about .content .team .tim-list,
        html body .front-page-eng .content .team .tim-list {
          grid-template-columns: 1fr; } }
      html body .page-ko-smo .content .team .tim-list li,
	  html body .page-about .content .team .tim-list li,
      html body .front-page-eng .content .team .tim-list li {
        background: #D5D5D5; }
        html body .page-ko-smo .content .team .tim-list li .img-profile,
		html body .page-about .content .team .tim-list li .img-profile,
        html body .front-page-eng .content .team .tim-list li .img-profile {
          width: 142px;
          height: 128px;
          background-size: cover;
          background-position: center;
          float: left;
          margin-right: 10px; }
          @media only screen and (max-width: 570px) {
            html body .page-ko-smo .content .team .tim-list li .img-profile,
			html body .page-about .content .team .tim-list li .img-profile,
            html body .front-page-eng .content .team .tim-list li .img-profile {
              width: 132px;
              height: 118px; } }
        html body .page-ko-smo .content .team .tim-list li .details,
		html body .page-about .content .team .tim-list li .details,
        html body .front-page-eng .content .team .tim-list li .details {
          padding: 7px; }
          html body .page-ko-smo .content .team .tim-list li .details .name,
		  html body .page-about .content .team .tim-list li .details .name,
          html body .front-page-eng .content .team .tim-list li .details .name {
            font-size: 18px;
            font-weight: 600;
            margin-top: 0px;
            margin-bottom: 0px; }
            @media only screen and (max-width: 570px) {
              html body .page-ko-smo .content .team .tim-list li .details .name,
			  html body .page-about .content .team .tim-list li .details .name,
              html body .front-page-eng .content .team .tim-list li .details .name {
                font-size: 16px; } }
          html body .page-ko-smo .content .team .tim-list li .details .role,
		  html body .page-about .content .team .tim-list li .details .role,
          html body .front-page-eng .content .team .tim-list li .details .role {
            font-size: 16px;
            font-weight: 400;
            margin-top: 0px; }
            @media only screen and (max-width: 570px) {
              html body .page-ko-smo .content .team .tim-list li .details .role,
			  html body .page-about .content .team .tim-list li .details .role,
              html body .front-page-eng .content .team .tim-list li .details .role {
                font-size: 14px; } }
          html body .page-ko-smo .content .team .tim-list li .details .contact,
		  html body .page-about .content .team .tim-list li .details .contact,
          html body .front-page-eng .content .team .tim-list li .details .contact {
            font-size: 16px; }
            @media only screen and (max-width: 570px) {
              html body .page-ko-smo .content .team .tim-list li .details .contact,
			  html body .page-about .content .team .tim-list li .details .contact,
              html body .front-page-eng .content .team .tim-list li .details .contact {
                font-size: 14px; } }
    html body .page-ko-smo .content .reports .docs-list,
	html body .page-about .content .reports .docs-list,
    html body .front-page-eng .content .reports .docs-list {
      list-style: none;
      margin: 0px;
      display: grid;
      gap: 20px;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      padding: 50px 0px; }
      @media only screen and (max-width: 1024px) {
        html body .page-ko-smo .content .reports .docs-list,
		html body .page-about .content .reports .docs-list,
        html body .front-page-eng .content .reports .docs-list {
          grid-template-columns: 1fr 1fr 1fr; } }
      @media only screen and (max-width: 720px) {
        html body .page-ko-smo .content .reports .docs-list,
		html body .page-about .content .reports .docs-list,
        html body .front-page-eng .content .reports .docs-list {
          grid-template-columns: 1fr 1fr; } }
      @media only screen and (max-width: 570px) {
        html body .page-ko-smo .content .reports .docs-list,
		html body .page-about .content .reports .docs-list,
        html body .front-page-eng .content .reports .docs-list {
          grid-template-columns: 1fr; } }
      html body .page-ko-smo .content .reports .docs-list li,
	  html body .page-about .content .reports .docs-list li,
      html body .front-page-eng .content .reports .docs-list li {
        background: #ffff;
        padding: 10px;
        position: relative;
        min-height: 170px; }
        @media only screen and (max-width: 570px) {
          html body .page-ko-smo .content .reports .docs-list li,
		  html body .page-about .content .reports .docs-list li,
          html body .front-page-eng .content .reports .docs-list li {
            min-height: 97px; } }
        html body .page-ko-smo .content .reports .docs-list li .name,
		html body .page-about .content .reports .docs-list li .name,
        html body .front-page-eng .content .reports .docs-list li .name {
          margin: 0px;
          height: 129px; }
          @media only screen and (max-width: 570px) {
            html body .page-ko-smo .content .reports .docs-list li .name,
			html body .page-about .content .reports .docs-list li .name,
            html body .front-page-eng .content .reports .docs-list li .name {
              height: 59px; } }
        html body .page-ko-smo .content .reports .docs-list li .download,
		html body .page-about .content .reports .docs-list li .download,
        html body .front-page-eng .content .reports .docs-list li .download {
          position: relative;
          min-height: 37px; }
          html body .page-ko-smo .content .reports .docs-list li .download .tip,
		  html body .page-about .content .reports .docs-list li .download .tip,
          html body .front-page-eng .content .reports .docs-list li .download .tip {
            font-size: 16px;
            margin: 0px;
            text-transform: uppercase;
            position: absolute;
            left: 11px;
            top: 8px; }
          html body .page-ko-smo .content .reports .docs-list li .download .btn-download,
		  html body .page-about .content .reports .docs-list li .download .btn-download,
          html body .front-page-eng .content .reports .docs-list li .download .btn-download {
            position: absolute;
            right: 0px; }
			
    html body .page-contacts .content iframe,
	html body .page-kontakt .content iframe {
      width: 100%;
      min-height: 570px;
      border: 0; }

    html body .page-sto-radimo .from-wp {
      width: 70%; }
      @media only screen and (max-width: 1024px) {
        html body .page-sto-radimo .from-wp {
          width: 60%; } }
      @media only screen and (max-width: 720px) {
        html body .page-sto-radimo .from-wp {
          width: 100%; } }
    html body .page-profesionalni-mediji .storadimo-subnav,
	html body .page-sto-radimo .storadimo-subnav {
      position: absolute;
      top: 290px;
      right: 82px; }
      @media only screen and (max-width: 720px) {
        html body .page-sto-radimo .storadimo-subnav {
          position: relative;
          top: 0px;
          right: 0px; } }
      html body .page-sto-radimo .storadimo-subnav .section-title0 {
        z-index: 2; }
      html body .page-sto-radimo .storadimo-subnav ul {
        list-style: none;
        margin: 0px;
        display: table;
        background: #ffff;
        padding: 80px 20px 20px 20px;
        position: relative;
        top: -95px;
        z-index: 1;
        left: 19px;
        width: 210px; }
        html body .page-sto-radimo .storadimo-subnav ul .current a {
          color: #FF9417; }
        html body .page-sto-radimo .storadimo-subnav ul li a {
          font-weight: 100; }
          html body .page-sto-radimo .storadimo-subnav ul li a:hover {
            font-weight: 500; }
    html body .page-search header .featured-img {
      background: rgba(50, 12, 111, 0.74); }
    html body .page-search .content {
      min-height: 300px; }
    html body .page-search .post {
      border-top: solid 1px #D5D5D5;
      border-bottom: solid 1px #D5D5D5;
      padding-top: 20px; }
      html body .page-search .post .post-img a img {
        width: 300px;
        height: auto; }
    html body footer {
      background: url(../assets/background_def.jpg);
      background-size: cover;
      border-top: solid 2px #D5D5D5;
      margin-top: 100px; }
      html body footer section {
        padding: 40px;
        display: grid;
        grid-template-columns: 1fr 1.3fr;
        gap: 50px;
        align-items: center; }
        @media only screen and (max-width: 720px) {
          html body footer section {
            padding: 20px;
            grid-template-columns: 1fr; } }
        html body footer section > * {
          display: block; }
        html body footer section > .icon {
          text-align: right; }
          @media only screen and (max-width: 720px) {
            html body footer section > .icon {
              text-align: center; } }
          html body footer section > .icon svg {
            width: 111px;
            height: 111px; }
            @media only screen and (max-width: 720px) {
              html body footer section > .icon svg {
                width: 70px;
                height: 70px; } }
        html body footer section .info {
          text-align: left; }
          html body footer section .info h4 {
            text-transform: uppercase;
            font-size: 18px;
            color: #320C6F;
            margin: 0px;
            position: relative;
            top: -5px; }
            @media only screen and (max-width: 720px) {
              html body footer section .info h4 {
                font-size: 16px; } }
          html body footer section .info ul {
            list-style: none;
            padding: 0px;
            margin: 0px; }
            html body footer section .info ul li {
              font-size: 18px;
              line-height: 2.7; }
              @media only screen and (max-width: 720px) {
                html body footer section .info ul li {
                  font-size: 14px; } }
              html body footer section .info ul li span {
                background: rgba(255, 255, 255, 0.82);
                padding: 10px; }
                @media only screen and (max-width: 720px) {
                  html body footer section .info ul li span {
                    padding: 5px; } }
              html body footer section .info ul li span:first-child {
                margin-right: 10px; }
              @media only screen and (max-width: 720px) {
                html body footer section .info ul li span:nth-child(2) {
                  display: block;
                  line-height: 1; } }
