html {
  background: rgba(250, 248, 251, 1);
  scroll-behavior: smooth;
font-family: Retina;
  scroll-padding-top: 70px;
}


.wrapper {
  min-height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.container {
  max-width: 1350px;
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

@font-face {
  font-family: Retina;
  src: url(../fonts/Retina-Book.woff2);
}

@font-face {
  font-family: RetinaL;
  src: url(../fonts/Retina-Light.woff2);
}

@font-face {
  font-family: RetinaM;
  src: url(../fonts/RetinaNarr-Medium.woff2);
}

@font-face {
  font-family: Exch;
  src: url(../fonts/Exchange-Book.woff2);
}

@font-face {
  font-family: Esc;
  src: url(../fonts/Escrow+Display+Condensed+Bold.woff2);
}

header {
  border-top: 1px solid grey;
  border-bottom: 1px solid grey;
  padding: 10px 0;
}

.header__inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  justify-content: center;
}

.header-top {
  max-width: 570px;
  display: block;
  padding: 12px 0;
}

.header-top img {
  max-width: 570px;
  width: 100%;
  object-fit: contain;

}

.header-m {
  display: flex;
  align-items: center;
  gap: 12px;

}

.header-m a {
  font-family: RetinaL;
  border-right: 1px solid grey;
  padding-right: 12px;
  font-size: 12px;
}

.header-m a:last-child {
  border-right: 0;
}

.header-l {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.header-l a {
  font-family: Retina;
  font-size: 14px;
  color: grey;
  transition: all .3s;
}

.header-l a:hover {
  color: black;
}

.main__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  max-width: 800px;
  margin: 20px auto;
}

.main-t {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadc-l {
  font-family: RetinaM;
  font-size: 13px;
  color: #0274b6;
  text-transform: uppercase;
  cursor: pointer;
}

.breadc-l:hover {
  text-decoration: underline;
}

.breadc-r {
  font-family: RetinaL;
  font-size: 11px;
  color: #0274b6;
  padding: 4px 6px;
  border-radius: 6px;
  border: 1px solid #0274b6;
}

h1 {
  font-size: 40px;
  font-family: Esc;
  line-height: 1.35;
  margin-bottom: 30px;
}

h3 {
  font-family: RetinaL;
  font-style: italic;
  margin-bottom: 25px;
}

.main-c img {
  width: 100%;
  margin-bottom: 20px;

}

figcaption {
  font-size: 16px;
  color: grey;
  margin-bottom: 20px;
  text-align: center;
}

.main-m p {
  font-family: Exch;
  font-size: 18px;
  margin-bottom: 18px;
  line-height: 1.65;
}

.main-m h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 16px;
}

.double-block p {
  font-size: 16px;
}

hr {
  width: 100%;
  height: 2px;
  background: #0274b6;
}
@media(max-width:767px){
  .header-m{
    display: none;
  }
  .header-l{
    display: none;;
  }
  h1{
    line-height: 1.25;
  }
}