@font-face {
  font-family: "medium";
  src: url("../fonts/noway-medium-webfont.eot");
  src: url("../fonts/noway-medium-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/noway-medium-webfont.woff2") format("woff2"), url("../fonts/noway-medium-webfont.woff") format("woff"), url("../fonts/noway-medium-webfont.ttf") format("truetype"), url("../fonts/noway-medium-webfont.svg#nowaymedium") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "regular";
  src: url("../fonts/noway-regular-webfont.eot");
  src: url("../fonts/noway-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/noway-regular-webfont.woff2") format("woff2"), url("../fonts/noway-regular-webfont.woff") format("woff"), url("../fonts/noway-regular-webfont.ttf") format("truetype"), url("../fonts/noway-regular-webfont.svg#nowaymedium") format("svg");
  font-weight: normal;
  font-style: normal;
}
#burger {
  display: flex;
  flex-direction: column;
  position: fixed;
  justify-content: center;
  right: 1.5rem;
  top: 52px;
  width: 40px;
  height: 40px;
  transition: top 0.5s;
  cursor: pointer;
  z-index: 500;
  font-size: 3rem;
}
#burger.up {
  top: 32px !important;
}
@media screen and (min-width: 935px) {
  #burger {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  #burger {
    top: 80px;
  }
}
#burger span {
  background: #272727;
  height: 2px;
  margin: 3px 0;
  transition: 0.4s cubic-bezier(0.68, 0, 0.32, 1.8);
}
#burger span:nth-of-type(1) {
  width: 100%;
}
#burger span:nth-of-type(2) {
  width: 66%;
}
#burger input[type=checkbox] {
  display: none;
}
#burger input[type=checkbox]:hover ~ span:nth-of-type(2) {
  width: 100%;
}
#burger input[type=checkbox]:checked ~ span:nth-of-type(1) {
  transform: rotatez(45deg) translate(3px, 3px);
  background: #fdfdfd;
}
#burger input[type=checkbox]:checked ~ span:nth-of-type(2) {
  transform: rotatez(-45deg) translate(3px, -3px);
  width: 100%;
  background: #fdfdfd;
}

#overlay {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 2rem 6rem 2rem;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background: #272727;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  z-index: 99;
}
#overlay p {
  color: rgba(253, 253, 253, 0.7);
  font-size: 0.9rem;
  line-height: 1.8;
}
#overlay p a {
  color: rgba(253, 253, 253, 0.7);
  text-decoration: none;
}
#overlay ul {
  list-style-type: none;
  padding: 0px;
}
#overlay ul li {
  margin: 0px;
}
#overlay ul li a {
  color: #fdfdfd !important;
  text-decoration: none;
  font-weight: 500;
}
#overlay.visible {
  opacity: 1;
  pointer-events: all;
}

#menu_overlay {
  left: 0px;
  right: 0px;
  width: 100%;
  font-size: 1.3rem;
  line-height: 2.4;
}
#menu_overlay a {
  color: #fdfdfd !important;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#menu_overlay .uk-parent a {
  margin-left: 20px;
}
#menu_overlay .uk-parent > a::after {
  content: "";
  position: absolute;
  margin-left: -25px;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 30px;
  transform: rotate(-90deg);
  transition: all 0.3s;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.1%22%20points%3D%2210%201%204%207%2010%2013%22%20%2F%3E%0A%3C%2Fsvg%3E") !important;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
#menu_overlay .uk-parent.uk-open > a::after {
  transform: rotate(90deg);
}
#menu_overlay .uk-nav-sub a {
  font-weight: 300;
  text-transform: none;
  line-height: 1.2;
  font-size: 1rem;
  margin-bottom: 1rem;
}

* {
  box-sizing: border-box !important;
}

html {
  font-size: 80%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 375px) {
  html {
    font-size: 90%;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 100%;
  }
}

body {
  margin: 0;
  font-family: "regular";
  color: #272727;
  background: #fdfdfd;
}

h1, h2, h3, h4 {
  font-family: "medium";
  font-weight: normal;
}

h1 {
  font-size: 1.9rem;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 4.8px 0;
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 2.4rem;
    margin: 8px 0;
  }
}
@media screen and (min-width: 1280px) {
  h1 {
    font-size: 2.6rem;
    margin: 12px 0;
  }
}

h2 {
  margin-bottom: 32px;
}
h2:last-child {
  margin-bottom: 0;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}
h3:first-child {
  margin-top: 0;
}

p {
  line-height: 1.45;
}
p:first-child {
  margin-top: 0;
}

a {
  text-decoration-thickness: 3px;
  text-decoration-color: #f8e300;
  text-underline-offset: 5px;
}

ol {
  list-style: none;
  counter-reset: am_custom-counter;
  border-radius: 5px;
}
ol:last-child {
  margin-bottom: 0px !important;
}
ol li {
  counter-increment: am_custom-counter;
  margin-bottom: 25px;
  line-height: 1.45;
}
ol li:last-of-type {
  margin-bottom: 1rem;
}
ol li::before {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  content: counter(am_custom-counter) "";
  font-size: 0.8rem;
  margin-left: -35px;
  margin-top: -1px;
  border: 2px solid #f8e300;
  background: #f8e300;
  width: 20px;
  height: 20px;
  line-height: 1.2;
  text-align: center;
  border-radius: 100px;
}

.button {
  font-size: 1rem;
  font-family: "regular";
  color: #272727;
  text-transform: uppercase;
  text-decoration: none;
  background: #f8e300;
  padding: 0.5rem 1.2rem;
  border-radius: 3rem;
  letter-spacing: 0.03rem;
  transition: all 0.2s;
}
.button:hover {
  background: #dfcc00;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(39, 39, 39, 0.06);
  padding: 1.2rem;
}
@media screen and (min-width: 768px) {
  header {
    padding: 1.8rem 2rem;
  }
}

#logo {
  display: flex;
}
#logo img {
  width: 155px;
  display: block;
}
@media screen and (min-width: 768px) {
  #logo img {
    width: 175px;
  }
}

nav ul#main_nav {
  padding: 0;
  display: none;
  list-style-type: none;
  align-items: center;
  gap: 1.6rem;
  margin: 0;
}
@media screen and (min-width: 935px) {
  nav ul#main_nav {
    display: flex;
  }
}
nav ul#main_nav li a {
  font-family: "medium";
  letter-spacing: 0.03rem;
  color: #272727;
  text-decoration: none;
  text-transform: uppercase;
}
nav ul#main_nav li a:hover {
  text-decoration: underline;
}
nav ul#main_nav li a.active {
  text-decoration: underline;
}
nav ul#main_nav li#lang_select ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  list-style-type: none;
  font-family: "regular";
  text-align: center;
  border-left: 1px solid rgba(39, 39, 39, 0.1);
  margin: 0;
  padding: 0rem 1.5rem;
}
nav ul#main_nav li#lang_select ul li a {
  font-family: "regular";
  font-size: 0.7rem;
  display: flex;
  background: #f8e300;
  border-radius: 3rem;
  width: 1.5rem;
  height: 1.5rem;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
nav ul#main_nav li#lang_select ul li a:hover {
  background: #d4c200;
  text-decoration: none;
}
nav ul#main_nav li#lang_select ul li a.active {
  background: #272727;
  color: #fdfdfd;
  text-decoration: none;
}

#main_title {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0px 24px;
  background: #f8e300;
}
@media screen and (min-width: 768px) {
  #main_title {
    padding: 0px 24px 0px 32px;
  }
}
@media screen and (min-width: 1280px) {
  #main_title {
    padding: 0px 48px 0px 64px;
  }
}

.double {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid rgba(39, 39, 39, 0.08);
}
.double:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .double {
    grid-template-columns: 1fr 1fr;
  }
}

.big_block {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  min-height: 50vh;
  padding: 64px 24px;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  border-left: 1px solid rgba(39, 39, 39, 0.08);
}
.big_block:first-child {
  border-left: none;
}
@media screen and (min-width: 768px) {
  .big_block {
    min-height: 70vh;
    padding: 128px 24px 128px 32px;
  }
}
@media screen and (min-width: 1280px) {
  .big_block {
    padding: 160px 80px 160px 80px;
  }
}
.big_block h2 {
  font-size: 1.9rem;
  text-transform: uppercase;
  line-height: 1.12;
  margin-top: 0;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  -webkit-hyphenate-limit-before: 5; /* For Safari */
  -webkit-hyphenate-limit-after: 5; /* For Safari */
  -ms-hyphenate-limit-chars: 15 5 5;
  hyphenate-limit-chars: 15 5 5;
}
@media screen and (min-width: 768px) {
  .big_block h2 {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1280px) {
  .big_block h2 {
    font-size: 2.6rem;
  }
}
.big_block h3 {
  font-size: 1.6rem;
  line-height: 1.35;
}
.big_block p:first-child {
  margin-top: 0;
}
.big_block p:last-child {
  margin-bottom: 0;
}

#cont_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 80vh;
  padding: 64px 24px;
}
#cont_text article {
  width: 100%;
  max-width: 600px;
}
#cont_text article .pub_head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(39, 39, 39, 0.08);
}
#cont_text article .pub_head .pub_type {
  font-size: 0.8rem;
  text-transform: uppercase;
  padding-top: 4px;
}
#cont_text article .pub_head .pub_date, #cont_text article .pub_head .pub_back {
  font-size: 0.7rem;
  color: rgba(39, 39, 39, 0.9);
  background: rgba(39, 39, 39, 0.1);
  padding: 3px 10px 2px 10px;
  border-radius: 30px;
  display: inline-block;
}
#cont_text article .pub_head .pub_back {
  background: #f8e300;
  line-height: 1.45;
  margin-left: 0.5rem;
  text-decoration: none;
  text-transform: uppercase;
}
#cont_text article .pub_head .pub_back:hover {
  background: #bbab00;
}
#cont_text article img {
  width: 100%;
  margin: 1rem 0;
}

#cont_publications {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding: 8rem 2rem;
}
@media screen and (min-width: 768px) {
  #cont_publications {
    padding: 8rem 3rem;
  }
}
@media screen and (min-width: 1024px) {
  #cont_publications {
    padding: 8rem 10rem;
  }
}

.publication {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .publication {
    grid-template-columns: repeat(12, 1fr);
  }
}
.publication article {
  border-left: 1px solid rgba(39, 39, 39, 0.08);
  padding: 0.8rem;
}
.publication article p:last-child {
  margin-bottom: 0;
}
.publication article h3 {
  margin-left: 0.4rem !important;
  margin-bottom: 1.4rem !important;
}
.publication .pub_date_type {
  grid-column: span 1;
}
.publication .pub_date_type span {
  font-size: 0.7rem;
  color: rgba(39, 39, 39, 0.9);
  background: rgba(39, 39, 39, 0.1);
  padding: 3px 10px 2px 10px;
  border-radius: 30px;
  margin-top: 15px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .publication .pub_date_type {
    grid-column: span 2;
  }
}
.publication .pub_title {
  grid-column: span 1;
}
@media screen and (min-width: 768px) {
  .publication .pub_title {
    grid-column: span 4;
  }
}
.publication .pub_description {
  grid-column: span 1;
}
.publication .pub_description p {
  margin-top: 0 !important;
}
@media screen and (min-width: 768px) {
  .publication .pub_description {
    grid-column: span 6;
  }
}

.team {
  display: grid;
  grid-template-columns: 1fr;
  padding: 32px;
  gap: 80px 96px;
  text-align: center;
}
.team img {
  width: 100%;
  max-width: 250px;
  border-radius: 50%;
  filter: grayscale(1);
}
@media screen and (min-width: 768px) {
  .team {
    grid-template-columns: 1fr 1fr;
    padding: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .team {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 160px;
  }
}

footer {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  background: #272727;
  color: #fdfdfd;
  padding: 3rem 1rem;
}
footer address {
  display: flex;
  flex-direction: column;
  column-gap: 1rem;
  font-style: normal;
}
footer address img {
  max-width: 110px;
}
@media screen and (min-width: 640px) {
  footer address {
    flex-direction: row;
    column-gap: 1.5rem;
  }
}
footer p {
  line-height: 1.8;
}
footer a {
  color: #fdfdfd;
}
@media screen and (min-width: 768px) {
  footer {
    padding: 3rem;
    flex-direction: row;
  }
}

.social_icons {
  position: relative;
  display: flex;
  justify-content: left;
  margin: 0px;
  list-style-type: none;
  gap: 15px;
  z-index: 100;
  margin-top: 3rem;
}
.social_icons a {
  margin: 0px;
  padding: 0px;
  width: 20px;
  height: 20px;
}
.social_icons a svg {
  width: 32px;
  fill: #fdfdfd;
}
.social_icons a svg:hover {
  fill: #f8e300;
}
@media screen and (min-width: 768px) {
  .social_icons {
    flex-direction: column;
    justify-content: center;
    margin-top: 0;
  }
}
