@font-face {
  font-family: "TTProstoSans";
  font-weight: 300;
  font-style: normal;
  src: url("../fonts/TTProstoSans-Light.woff2") format("woff2"), url("../fonts/TTProstoSans-Light.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "TTProstoSans";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/TTProstoSans.woff2") format("woff2"), url("../fonts/TTProstoSans.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "TTProstoSans";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/TTProstoSans-Bold.woff2") format("woff2"), url("../fonts/TTProstoSans-Bold.woff") format("woff");
  font-display: swap;
}
*, :before, :after {
  outline: none !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  --app-height: 100vh;
  --dark-color: #262b48;
  --light-color: #f9f7f8;
  --main-color: #3478ff;
  --main-color-hover: #4a86ff;
  --accent-color: #0cf574;
  --accent-color-hover: #31ff8e;
  --text-gray: #a0a0a0;
}

::-webkit-input-placeholder {
  opacity: 1;
  color: var(--text-gray);
}

::-moz-placeholder {
  opacity: 1;
  color: var(--text-gray);
}

:-ms-input-placeholder {
  opacity: 1;
  color: var(--text-gray);
}

::-ms-input-placeholder {
  opacity: 1;
  color: var(--text-gray);
}

::placeholder {
  opacity: 1;
  color: var(--text-gray);
}

body, html {
  font-size: 16px;
}

body {
  position: relative;
  overflow-x: hidden;
  min-width: 320px;
  background: var(--light-color);
  font-family: "TTProstoSans", sans-serif;
  line-height: 1.5;
  color: var(--dark-color);
}

a {
  text-decoration: none;
  color: var(--main-color);
}
a:hover {
  color: var(--main-color-hover);
}

button {
  cursor: pointer;
}

strong, b {
  font-weight: bold;
}

p, blockquote, ul, ol {
  margin: 0 0 1.5rem;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin: 0 0 1.5rem;
  font-weight: bold;
}

h1, .h1 {
  line-height: 1.2;
  font-size: 30px;
}

h2, .h2 {
  line-height: 1.2;
  font-size: 26px;
}

h3, .h3 {
  line-height: 1.2;
  font-size: 22px;
}

h4, .h4 {
  line-height: 1.2;
  font-size: 20px;
}

h5, .h5 {
  line-height: 1.4;
  font-size: 18px;
}

h6, .h6 {
  font-size: 1rem;
}

img {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: var(--app-height);
}
.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  width: 100%;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.container {
  width: 1030px;
  margin: 0 auto;
  padding: 0 15px;
}

.tt-upper {
  text-transform: uppercase;
}

.tt-none {
  text-transform: none;
}

.c-main {
  color: var(--main-color);
}

.c-accent {
  color: var(--accent-color);
}

.c-gray {
  color: var(--text-gray);
}

.breadctumbs {
  margin: 25px 0;
  line-height: 1.2;
  font-weight: 300;
  font-size: 17px;
  color: #6f6f6f;
}
.breadctumbs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.2em;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadctumbs li {
  position: relative;
  display: inline-block;
  padding-right: 0.8em;
}
.breadctumbs li:after {
  content: ">";
  position: absolute;
  top: 0;
  right: 0;
}
.breadctumbs li:last-child {
  padding-right: 0;
}
.breadctumbs li:last-child:after {
  display: none;
}
.breadctumbs a {
  color: inherit;
}
.breadctumbs a:hover {
  text-decoration: underline;
}

.content > :last-child {
  margin-bottom: 0;
}

.btn {
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding: 10px 19px;
  background: var(--main-color);
  border: 1px solid transparent;
  border-radius: 8px;
  text-align: center;
  line-height: 18px;
  font-weight: normal;
  font-size: 15px;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn:hover {
  background: var(--main-color-hover);
  color: #fff;
}
.btn._head {
  padding: 8px 17px;
  min-width: 140px;
  border-radius: 100px;
  background: var(--light-color);
  color: var(--dark-color);
}
.btn._head:hover {
  background-color: #fff;
}
.btn._search {
  padding: 13px 19px 13px 14px;
  min-width: 140px;
  border-radius: 3px 23px 23px 3px;
  text-transform: uppercase;
  font-size: 16px;
}
.btn._accent {
  background-color: var(--accent-color);
  color: #000;
}
.btn._accent:hover {
  background: var(--accent-color-hover);
}
.btn._big {
  padding: 15px 24px;
  line-height: 24px;
  font-size: 20px;
}

.more-btn {
  margin-top: 65px;
  text-align: center;
}
.more-btn .btn {
  min-width: 280px;
}

.share {
  margin-top: 50px;
  text-align: center;
  color: var(--main-color);
}
.share__head {
  margin-bottom: 8px;
  font-weight: 300;
  font-size: 19px;
}
.share__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 25px;
}
.share__icons .ic {
  min-width: 20px;
  text-align: center;
  font-size: 20px;
  color: inherit;
  opacity: 0.5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.share__icons .ic-vk {
  font-size: 24px;
}
.share__icons .ic-code {
  font-size: 22px;
}
.share__icons .ic:hover {
  opacity: 1;
}
.share._post {
  margin-top: 0;
  padding: 8px 20px 18px;
  border-radius: 0 0 15px 15px;
  background: var(--main-color);
  color: #fff;
}

.form-field {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  width: 100%;
  padding: 9px 19px;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  line-height: 20px;
  font-weight: 300;
  font-size: 16px;
  color: var(--dark-color);
}
.form-field._search {
  padding: 13px 25px;
  border: none;
  border-radius: 23px 3px 3px 23px;
}

textarea.form-field {
  resize: none;
}
textarea.form-field:not([rows]) {
  height: 100px;
}

.header,
.header__grid {
  height: 56px;
}

.header__fix {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  background: var(--dark-color);
  color: #fff;
}
.header__grid {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__menu {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px 0;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.2;
  font-weight: 300;
  font-size: 15px;
}
.header__menu li {
  margin-right: 56px;
}
.header__menu a {
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__menu a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer {
  height: 56px;
  background: var(--dark-color);
}

.bann {
  padding: 150px 0;
  background: #295fcc url("../img/bann-bg.jpg") top center/cover;
  text-align: center;
  color: #fff;
}
.bann._inn {
  padding: 30px 0;
}
.bann .container {
  max-width: 850px;
}
.bann__search-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bann__search-logo {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 20px;
  max-width: 100px;
  max-height: 100px;
}
.bann__search-field {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  margin-right: 8px;
}

.blog {
  padding: 85px 0 60px;
}
.blog__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 0;
  margin: 0 -10px;
}
.blog__col {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 33.33%;
  padding: 0 10px;
}
.blog__col .blog-item {
  height: 100%;
}

.blog-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 12px 20px 16px;
  border-radius: 12px;
  background: #fff;
}
.blog-item__date {
  margin-bottom: 12px;
  font-weight: 300;
  font-size: 14px;
}
.blog-item__head {
  line-height: 1.15;
  font-weight: bold;
  font-size: 22px;
}
.blog-item__action {
  margin-top: auto;
  text-align: right;
}
.blog-item > :last-child {
  margin-bottom: 0;
}

.post {
  margin-bottom: 56px;
}
.post__wrap {
  border-radius: 15px;
  background: #fff;
}
.post__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 30px;
  padding: 19px 20px;
  border-radius: 15px 15px 0 0;
  background: var(--main-color);
  line-height: 1.2;
  font-weight: 300;
  font-size: 17px;
  color: #fff;
}
.post__head {
  margin: 0;
  padding: 25px 20px;
}
.post__img {
  display: block;
  width: 100%;
}
.post__content {
  padding: 30px 20px 20px;
}

.hidden-item{
  display: none;
}