.mission {
	display:flex;
	flex-direction: column;
    align-items: center;
    gap: 20px;
}
.mission h2 {
	text-align: center;
	text-shadow: -14px 10px 14px #3b74a8;
	color: #b0ecff;
}

.asr-bg {
    position: absolute;
    display: block;
    width: calc(100vw - 800px);
    height: calc(100vh - 200px);
    background: url(../img/asr.svg) no-repeat center;
    background-size: contain;
    right: 20px;
    top: 0px;
	opacity: 0.25;
}

body {
  height: auto;
  color: var(----white-, #f7f7f7);
  font-family: 'Open Sans', sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
section {
  min-height: 100vh;
  position: relative;
  padding-top: 60px;
}
section.page {
	justify-content: flex-start;
	gap:30px;
}
body .bg {
  height: 100%;
}
body .bg .elem-1 {
  height: 100%;
}

body h1 {
  margin-left: 20px;
  margin-right: 20px;
}

.page-wrapper {
  max-width: 1280px;
  padding: 20px 20px 20px 40px;
  width: 100%;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 50px;
}

.region-wrapper {
  padding: 60px 20px;
}

.page-content {
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  width: 80%;
  max-width: 1200px;
  gap: 60px;
  margin-bottom: 50px;
  align-items: flex-start;
}
.person {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
}
.avatar {
  box-shadow: 5px 5px 15px #3b74a8;
  line-height: 0;
}
.info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 18px;
  align-items: flex-start;
}
.info b {
  color: var(----white-, #f7f7f7);
  text-shadow: 0px 4px 50px #3b74a8;
  font-family: 'Europe', sans-serif;
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.info a {
  font-weight: bold;
  color: #3a707c;
  padding: 0px 10px;
  background-color: #f7f7f7;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.person-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news {
  font-size: 18px;
  line-height: 20px;
}
.news-content {
  display: flex;
  gap: 20px;
}
.news-text {

}
.news iframe {
  width: 100%;
  max-width: 853px;
  height: calc(72vw / 1.777);
}

@media (max-width: 900px) {
  .page-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
  .news-content {
    flex-direction: column;
  }
}
@media (max-width: 720px) {
  .page-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .avatar img {
    width: 200px;
  }
}
@media (max-width: 500px) {
  .page-wrapper {
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
  }
  .person {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
	width: 100%;
  }
  .page-content {
    width: auto;
    align-items: center;
  }
  .info {
    width: 100%;
  }
}
