@font-face {
  font-family: "Noto Sans";
  src: url("../fonts/noto_sans/NotoSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans";
  src: url("../fonts/noto_sans/NotoSans-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Noto Sans";
  src: url("../fonts/noto_sans/NotoSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans";
  src: url("../fonts/noto_sans/NotoSans-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

p {
  line-height: 27px;
  margin: 0 0 27px 0;
}

:root {
  font-size: 20px;
}

*, *::before, *::after {
  font-family: "Noto Sans";
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: #454545;
  position: relative;
}
body.noscroll-sm {
  overscroll-behavior: none;
  overflow: hidden;
}

*,
::before,
::after {
  box-sizing: border-box;
}

html {
  line-sizing: normal;
}

body {
  margin: 0;
}

[hidden] {
  display: none;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.17rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.83rem;
}

h6 {
  font-size: 0.67rem;
}

h1 {
  margin: 0.67em 0;
}

pre {
  white-space: pre-wrap;
}

hr {
  border-style: solid;
  border-width: 1px 0 0;
  color: inherit;
  height: 0;
  overflow: visible;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
  max-width: 100%;
}

audio:not([controls]) {
  display: none;
}

picture {
  display: contents;
}

source {
  display: none;
}

img,
svg,
video,
canvas {
  height: auto;
}

audio {
  width: 100%;
}

img {
  border-style: none;
}

svg {
  overflow: hidden;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

.container {
  padding: 0 16px;
  margin: 0 auto;
  width: 320px;
}
@media (min-width: 768px) {
  .container {
    width: 720px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1140px;
  }
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.header::after {
  content: "";
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
@media (min-width: 768px) {
  .header::after {
    display: none;
  }
}
.header.menu-expanded::after {
  opacity: 1;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .header__container {
    padding-top: 20px;
    padding-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .header__container {
    padding-top: 37px;
    padding-bottom: 0;
  }
}
.header--page {
  position: relative;
  background-image: linear-gradient(#000, rgba(0, 0, 0, 0)), url("../../../AdobeStock_74641866_Preview.jpeg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  padding-bottom: 130px;
}
.header__logo {
  width: 80px;
}
@media (min-width: 768px) {
  .header__logo {
    width: 120px;
  }
}
@media (min-width: 1200px) {
  .header__logo {
    width: auto;
  }
}

.nav {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  top: 80px;
  margin-top: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.nav.expanded {
  opacity: 1;
  pointer-events: all;
}
@media (min-width: 768px) {
  .nav {
    opacity: 1;
    transition: initial;
    pointer-events: all;
    position: static;
    margin: 0;
    display: inline;
  }
}
.nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.85);
}
@media (min-width: 768px) {
  .nav ul {
    background: transparent;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
  }
}
.nav ul .menu-item {
  background: rgba(0, 0, 0, 0.85);
  margin-bottom: 5px;
  color: #fff;
}
.nav ul .menu-item.current-menu-item {
  color: #f59331;
}
@media (min-width: 768px) {
  .nav ul .menu-item {
    background: transparent;
    margin: 0;
  }
}
.nav ul .menu-item a {
  display: inline-block;
  text-decoration: none;
  padding: 15px;
  width: 100%;
  color: inherit;
}
@media (min-width: 768px) {
  .nav ul .menu-item a {
    width: initial;
    padding: 5px;
    transition: color 0.3s;
    font-size: 15px;
  }
  .nav ul .menu-item a:hover {
    color: #f59331;
  }
}
@media (min-width: 1200px) {
  .nav ul .menu-item a {
    font-size: 20px;
    padding: 10px;
  }
}

.toggle-nav-button {
  background: transparent;
  border: none;
  color: white;
  height: 50px;
  width: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.toggle-nav-button .open,
.toggle-nav-button .close {
  transition: 0.25s;
  position: absolute;
  height: 40px;
  width: 40px;
}
.toggle-nav-button .open {
  translate: 0;
  opacity: 1;
}
.toggle-nav-button .close {
  translate: 100%;
  opacity: 0;
}
.toggle-nav-button.active .open {
  translate: 100%;
  opacity: 0;
}
.toggle-nav-button.active .close {
  translate: 0;
  opacity: 1;
}
@media (min-width: 768px) {
  .toggle-nav-button {
    display: none;
  }
}

.main {
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
  padding-bottom: 286px;
  position: relative;
}
.main__background {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  -webkit-mask-image: linear-gradient(transparent, #000);
  opacity: 0.35;
}

.footer {
  background: #000;
}
.footer__container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 148px;
}

.heading-decorated {
  position: relative;
  font-weight: 400;
  margin: 0 0 30px 40px;
  font-size: 30px;
  margin-left: 40px;
}
@media (min-width: 768px) {
  .heading-decorated {
    font-size: 51px;
  }
}
@media (min-width: 1200px) {
  .heading-decorated {
    margin-left: 0;
  }
}
.heading-decorated::before {
  content: url("../img/heading-decoration.png");
  position: absolute;
  bottom: 0;
  right: calc(100% + 10px);
}

.post {
  margin-bottom: 47px;
}
.post__container {
  border: solid 2px #939393;
  border-radius: 20px;
  background: #fff;
  position: relative;
  padding: 40px 20px 20px;
}
@media (min-width: 768px) {
  .post__container {
    padding: 65px 30px 22px 55px;
  }
}
.post__date {
  color: #fff;
  background: #f59331;
  position: absolute;
  font-size: 20px;
  padding: 2px 23px 7px 22px;
  border-radius: 15px;
  top: -19px;
  left: 19px;
}
.post__more {
  display: block;
  text-align: right;
  text-decoration: none;
  color: #000;
  font-size: 20px;
}

.banner {
  background-image: linear-gradient(#000, rgba(0, 0, 0, 0)), url("../../../AdobeStock_74641866_Preview.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0 64px;
}
@media (min-width: 768px) {
  .banner {
    padding: 150px 0 64px;
  }
}
@media (min-width: 1200px) {
  .banner {
    padding: 221px 0 64px;
  }
}
@media (min-width: 768px) {
  .banner__container {
    height: 290px;
  }
}
@media (min-width: 1200px) {
  .banner__container {
    height: 554px;
  }
}
.banner__content-wrapper {
  border: solid 2px #939393;
  border-radius: 20px;
  display: flex;
  align-items: center;
  height: 100%;
  border-color: #fff;
  color: #fff;
}
.banner__content {
  margin: 0 20px;
}
@media (min-width: 768px) {
  .banner__content {
    margin: 0 50px;
  }
}
@media (min-width: 1200px) {
  .banner__content {
    margin: 0 150px;
  }
}
.banner h1 {
  font-size: 24px;
}
@media (min-width: 768px) {
  .banner h1 {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .banner h1 {
    font-size: 50px;
  }
}

.text {
  margin-bottom: 80px;
}

.program {
  margin-bottom: 27px;
  padding: 42px 0;
  background: #fff;
}
.program__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  gap: 10px 30px;
}
@media (min-width: 768px) {
  .program__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }
}
.program__logo {
  max-width: 129px;
  height: auto;
}
.program__logo:first-child {
  grid-column: 1/3;
}
@media (min-width: 768px) {
  .program__logo {
    max-width: 175px;
  }
}
@media (min-width: 1200px) {
  .program__logo {
    max-width: initial;
    height: 150px;
    width: auto;
  }
}

.consortium__logos-wrapper {
  display: grid;
  place-items: center;
  grid-gap: 50px;
  padding: 50px 20px;
  border: solid 2px #939393;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .consortium__logos-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .consortium__logos-wrapper {
    padding-top: 80px;
    grid-template-columns: 1fr 1fr 1fr;
    place-items: center;
  }
}
@media (min-width: 768px) {
  .consortium__logo {
    max-width: 250px;
  }
}
@media (min-width: 1200px) {
  .consortium__logo:first-child {
    max-width: initial;
    grid-column: 1/4;
    margin-bottom: 70px;
  }
}

.blog-list {
  padding-top: 30px;
}
.blog-list__heading {
  margin-bottom: 40px;
}

.contact {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .contact__container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    grid-gap: 50px;
  }
}
@media (min-width: 1200px) {
  .contact__container {
    grid-template-columns: 1fr 2fr;
  }
}
.contact__data {
  font-style: normal;
}
.contact__data img {
  width: 144px;
  margin-bottom: 32px;
}
.contact__data a {
  color: inherit;
  text-decoration: none;
}
.contact__map-iframe {
  border: none;
  width: 100%;
  height: 300px;
  border-radius: 15px;
  border: solid 1px #EEE;
}
@media (min-width: 768px) {
  .contact__map-iframe {
    height: 400px;
  }
}
@media (min-width: 1200px) {
  .contact__map-iframe {
    height: 500px;
  }
}

.contact-form__container {
  display: grid;
  grid-gap: 15px;
}
@media (min-width: 1200px) {
  .contact-form__container {
    grid-template-columns: 1fr 2fr;
  }
}
@media (min-width: 1200px) {
  .contact-form__label--name {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}
@media (min-width: 1200px) {
  .contact-form__label--phone {
    grid-row: 2/3;
    grid-column: 1/2;
  }
}
@media (min-width: 1200px) {
  .contact-form__label--mail {
    grid-row: 3/4;
    grid-column: 1/2;
  }
}
@media (min-width: 1200px) {
  .contact-form__label--message {
    grid-row: 1/5;
    grid-column: 2/3;
  }
}
@media (min-width: 1200px) {
  .contact-form__label--acceptance-1 {
    grid-row: 4/5;
    grid-column: 1/2;
  }
}
@media (min-width: 1200px) {
  .contact-form__label--acceptance-2 {
    grid-row: 5/6;
    grid-column: 1/2;
  }
}
@media (min-width: 768px) {
  .contact-form__label--submit {
    text-align: right;
    display: flex;
    flex-direction: row-reverse;
  }
}
@media (min-width: 1200px) {
  .contact-form__label--submit {
    grid-row: 5/6;
    grid-column: 2/3;
  }
}
.contact-form__acceptance-message {
  font-size: 14px;
  line-height: 1;
}
.contact-form input[type=checkbox] {
  margin-left: 0;
}
.contact-form input[type=text],
.contact-form input[type=tel],
.contact-form input[type=email] {
  height: 40px;
  width: 100%;
}
.contact-form input[type=text],
.contact-form input[type=tel],
.contact-form input[type=email],
.contact-form textarea {
  width: 100%;
  border: solid 1px #D3D3D3;
  border-radius: 12px;
  padding: 15px;
}
.contact-form input[type=text]::placeholder,
.contact-form input[type=tel]::placeholder,
.contact-form input[type=email]::placeholder,
.contact-form textarea::placeholder {
  color: #D3D3D3;
}
@media (min-width: 1200px) {
  .contact-form textarea {
    height: 100%;
  }
}
.contact-form input[type=submit] {
  background: #f59331;
  border: none;
  border-radius: 15px;
  padding: 20px 100px;
  color: #fff;
  width: 100%;
  cursor: pointer;
}
@media (min-width: 768px) {
  .contact-form input[type=submit] {
    width: initial;
  }
}/*# sourceMappingURL=style.css.map */