@import url(normalize.css);
@font-face {
  font-family: 'Gotham Pro';
  src: local("Gotham Pro Regular"), local("Gotham-Pro-Regular"), url("fonts/GothamPro.woff2") format("woff2"), url("fonts/GothamPro.woff") format("woff"), url("fonts/GothamPro.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham Pro';
  src: local("Gotham Pro Medium"), local("Gotham-Pro-Medium"), url("fonts/GothamPro-Medium.woff2") format("woff2"), url("fonts/GothamPro-Medium.woff") format("woff"), url("fonts/GothamPro-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'IBMPlexSans';
  src: url("fonts/IBMPlexSans-Regular.woff2") format("woff2"), url("fonts/IBMPlexSans-Regular.woff") format("woff"), url("fonts/IBMPlexSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
}

body {
  font-family: 'IBMPlexSans';
  font-size: 18px;
  color: #565A5C;
  height: 100%;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
}

body * {
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h1 {
  font-family: 'Gotham Pro';
  color: #304352;
  font-weight: 500;
  font-size: 52px;
  line-height: 58px;
}

h1.post-title {
  margin-bottom: 50px;
}

h1.post-title--aside {
  padding-left: calc(100% / 12 * 3);
}

h2 {
  font-size: 36px;
  line-height: 40px;
  font-family: 'Gotham Pro';
  color: #304352;
  font-weight: 500;
}

.center {
  text-align: center;
}

p {
  font-size: 18px;
  line-height: 26px;
  color: #565A5C;
  margin-bottom: 22px;
}

input, button, textarea {
  font-family: 'Gotham Pro';
  font-weight: 400;
}

input[type="text"], textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

input[type="text"]::-ms-clear, textarea::-ms-clear {
  display: none;
}

input {
  outline: none;
}

button {
  border: 0;
  outline: none;
  cursor: pointer;
  line-height: normal;
  display: inline-block;
}

button:active, button:focus {
  outline: none !important;
}

button::-moz-focus-inner {
  border: 0 !important;
}

.container {
  width: 100%;
  max-width: 1380px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.main {
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

img {
  display: block;
  max-width: 100%;
}

img.img-overflow {
  max-width: none;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.col {
  padding-left: 15px;
  padding-right: 15px;
}

.cover-img {
  display: none;
}

.btn {
  border-radius: 30px;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: #fff;
  text-align: center;
  display: inline-block;
  padding: 18px 35px;
  -webkit-transition: .3s;
  transition: .3s;
  overflow: hidden;
  position: relative;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: none;
  z-index: 1;
  border: 1px solid transparent;
}

.btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: -webkit-gradient(linear, left top, right top, from(#D7D2CC), to(#304352));
  background: linear-gradient(90deg, #D7D2CC 0%, #304352 100%);
  z-index: -1;
  -webkit-transition: .3s;
  transition: .3s;
}

.btn:hover {
  background: #000;
}

.btn:hover::before {
  opacity: 0;
  visibility: hidden;
}

.btn:active {
  background: rgba(0, 0, 0, 0.7);
}

.btn--small {
  padding: 13px 25px;
}

.btn--border {
  border: 1px solid #304352;
  color: #304352;
}

.btn--border::before {
  display: none;
}

.btn--border:hover {
  background: #D7D2CC;
}

.btn--border:active {
  background: rgba(215, 210, 204, 0.7);
}

input[type="text"], input[type="password"], input[type="email"] {
  display: block;
  width: 100%;
  font-size: 16px;
  border: 1px solid #CACACA;
  border-radius: 4px !important;
  padding: 15px 20px;
}

.links-tmp {
  padding-bottom: 70px;
}

.links-tmp p a {
  text-decoration: underline;
}

.links-tmp p a:hover {
  text-decoration: none;
}

.header {
  background-color: #F3F0F1;
  padding: 10px 0;
  font-family: 'Gotham Pro';
}

.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo {
  width: 231px;
}

.header__search {
  margin-left: 45px;
  padding-right: 20px;
  position: relative;
  z-index: 3;
}

.header__search.active input {
  width: 774px;
  padding-left: 20px;
  padding-right: 60px;
}

.header__search.active button {
  -webkit-transform: translateX(-53px);
          transform: translateX(-53px);
}

.header__search.active .header__search-close {
  opacity: 1;
  visibility: visible;
}

.header__search input {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 53px;
  border: 0;
  background-color: #fff;
  height: 50px;
  font-size: 16px;
  -webkit-transition: .3s;
  transition: .3s;
  width: 0;
  padding: 0;
}

.header__search input::-webkit-input-placeholder {
  color: rgba(86, 90, 92, 0.5);
}

.header__search input::-moz-placeholder {
  color: rgba(86, 90, 92, 0.5);
}

.header__search input:-ms-input-placeholder {
  color: rgba(86, 90, 92, 0.5);
}

.header__search input::-ms-input-placeholder {
  color: rgba(86, 90, 92, 0.5);
}

.header__search input::placeholder {
  color: rgba(86, 90, 92, 0.5);
}

.header__search button {
  width: 20px;
  height: 20px;
  background: none;
  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;
  padding: 0;
  position: relative;
  z-index: 1;
  -webkit-transition: .3s;
  transition: .3s;
}

.header__search button:hover {
  opacity: .3;
}

.header__search-close {
  width: 50px;
  height: 50px;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  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;
  cursor: pointer;
  -webkit-transition: opacity .3s, visibility .3s;
  transition: opacity .3s, visibility .3s;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.header__search-close svg path {
  -webkit-transition: .3s;
  transition: .3s;
}

.header__search-close:hover svg path {
  fill: #304352;
}

.header__lang {
  margin-left: 88px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #000;
  width: 70px;
  text-align: center !important;
  line-height: 30px;
  background: none;
  border: 0;
  height: auto;
  padding: 0;
  padding-right: 20px;
  padding-left: 18px;
}

.header__lang > span {
  -webkit-transition: .3s;
  transition: .3s;
}

.header__lang:hover::before {
  opacity: .3;
}

.header__lang:hover > span {
  opacity: .3;
}

.header__lang::before {
  content: '';
  position: absolute;
  top: calc(50% - 10px);
  right: 0;
  width: 20px;
  height: 20px;
  background: url(../img/lang.svg) center center no-repeat;
  background-size: contain;
  -webkit-transition: .3s;
  transition: .3s;
}

.header__lang.open::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.header__lang::after {
  display: none;
}

.header__lang .list {
  width: 100%;
}

.header__lang .option {
  padding-right: 20px;
  padding-left: 18px;
  text-align: center;
}

.header__lang .option.selected {
  font-weight: 500;
}

.header__login svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__login span {
  letter-spacing: 0.02em;
  font-size: 14px;
  color: #000;
  margin-left: 10px;
}

.header__login:hover .header__panel {
  opacity: 1;
  visibility: visible;
}

.header__login:hover .header__wrap {
  opacity: .25;
}

.header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: .3s;
  transition: .3s;
  position: relative;
  z-index: 2;
}

.header__panel {
  padding-top: 80px;
  background-color: #fff;
  position: absolute;
  top: -10px;
  width: 260px;
  right: 90px;
  -webkit-box-shadow: 8px 18px 20px rgba(0, 0, 0, 0.25);
          box-shadow: 8px 18px 20px rgba(0, 0, 0, 0.25);
  z-index: 1;
  -webkit-transition: .3s;
  transition: .3s;
  opacity: 0;
  visibility: hidden;
}

.header__link {
  border-bottom: 1px solid #E0E0E0;
  padding: 12px 30px;
  padding-right: 15px;
  display: block;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #565A5C;
  -webkit-transition: .3s;
  transition: .3s;
}

.header__link:last-child {
  border-bottom: 0;
}

.header__link:hover {
  background-color: #F2F2F2;
  border-color: transparent;
}

.header__burger, .header__login-mob {
  display: none;
  cursor: pointer;
  border-radius: 50%;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #fff;
  -webkit-transition: .4s;
  transition: .4s;
  z-index: 98;
}

.nav--burger {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.nav--login {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.nav.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-box-shadow: 8px 18px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 8px 18px 20px rgba(0, 0, 0, 0.15);
}

.nav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #E0E0E0;
  padding: 20px 30px;
  padding-right: 20px;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #565A5C;
  cursor: pointer;
}

.nav__item.active .nav__control span:last-child {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.nav__header {
  height: 80px;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.nav__email {
  text-decoration: underline;
}

.nav__close {
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 10px;
}

.nav__control {
  position: relative;
  width: 20px;
  height: 20px;
}

.nav__control span {
  -webkit-transition: .3s;
  transition: .3s;
  height: 2px;
  width: 100%;
  background-color: #D7D2CC;
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
}

.nav__control span:last-child {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.nav__drop {
  display: none;
}

.nav__drop .nav__item {
  padding-left: 50px;
}

.nav__login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav__login img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
}

.nav__login span {
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #D7D2CC;
}

.nav__search {
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 30px;
  border-bottom: 1px solid #E0E0E0;
  position: relative;
}

.nav__search input {
  font-size: 14px;
  padding: 13px 20px;
  padding-right: 45px;
}

.nav__btn {
  position: absolute;
  padding: 0;
  background: none;
  top: 12px;
  right: 22px;
}

.nav__search-close {
  display: inline-block;
  margin-top: 20px;
  letter-spacing: 0.02em;
  color: rgba(86, 90, 92, 0.5);
  font-size: 16px;
  border-bottom: 1px solid rgba(86, 90, 92, 0.5);
  padding: 0;
  background: none;
}

.footer {
  background-color: #C0C0C0;
  font-family: 'Gotham Pro';
  color: #fff;
  padding: 50px 0 38px;
}

.footer__row {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 30px;
  margin-bottom: -30px;
}

.footer__col {
  width: 25%;
  margin-bottom: 30px;
}

.footer__col a {
  -webkit-transition: .3s;
  transition: .3s;
}

.footer__col a:hover {
  color: #3B4F5F;
}

.footer__sub {
  letter-spacing: 0.02em;
  font-size: 24px;
}

.footer__link {
  font-size: 18px;
  letter-spacing: 0.02em;
  margin-top: 15px;
}

.footer__email a:hover {
  text-decoration: underline;
}

.footer__soc {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footer__icon {
  margin-right: 35px;
  display: block;
}

.footer__icon:last-child {
  margin-right: 0;
}

.footer__icon svg path {
  -webkit-transition: .3s;
  transition: .3s;
}

.footer__icon svg:hover path {
  fill: #3B4F5F;
}

.footer-bottom {
  font-size: 14px;
  padding-top: 30px;
  border-top: 1px solid #fff;
}

.footer-bottom__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-bottom__cop {
  margin-top: 20px;
}

.footer-bottom__cop img {
  display: inline-block;
}

.footer-bottom__cop img, .footer-bottom__cop span {
  vertical-align: middle;
}

.footer-bottom__polit a {
  text-decoration: underline;
  -webkit-transition: .3s;
  transition: .3s;
}

.footer-bottom__polit a:hover {
  color: #3B4F5F;
}

.footer-bottom__cr {
  margin-left: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.footer-bottom__cr a {
  -webkit-transition: .3s;
  transition: .3s;
}

.footer-bottom__cr a:hover {
  color: #3B4F5F;
  text-decoration: underline;
}

.index-section {
  padding-top: 90px;
  background: url(../img/index-bg.png) center bottom no-repeat;
  background-size: cover;
  padding-bottom: 82px;
  height: 100%;
}

.index-section__row {
  margin-top: 50px;
  margin-bottom: 30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.index-section__col {
  width: 50%;
}

.index-section__btn {
  text-align: center;
}

.breadcrumbs {
  padding-top: 60px;
  padding-bottom: 80px;
}

.breadcrumbs a, .breadcrumbs img, .breadcrumbs span {
  vertical-align: middle;
}

.breadcrumbs a, .breadcrumbs span {
  font-size: 14px;
  letter-spacing: 0.02em;
}

.breadcrumbs a {
  color: #565A5C;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span {
  color: #304352;
}

.breadcrumbs img {
  margin-left: 10px;
  margin-right: 10px;
  display: inline-block;
}

.breadcrumbs__back {
  font-size: 14px;
  color: #304352;
  letter-spacing: 0.02em;
  display: inline-block;
  position: relative;
  padding-left: 30px;
}

.breadcrumbs__back::before {
  content: '';
  position: absolute;
  left: 0;
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  background: url(../img/back.svg) center center no-repeat;
  background-size: contain;
}

.content-wrap {
  padding-bottom: 80px;
}

.content-wrap__row {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.content-wrap__aside {
  width: calc(100% / 12 * 3);
}

.content-wrap__content {
  width: calc(100% / 12 * 9);
}

.aside-drop {
  margin-bottom: 5px;
  font-family: 'Gotham Pro';
}

.aside-drop__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 24px;
  letter-spacing: 0.02em;
  color: #304352;
  padding: 15px 20px;
  background-color: #F2F2F2;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-weight: 500;
}

.aside-drop__title.active .aside-drop__control span:last-child {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.aside-drop__title.selected {
  background-color: #C0C0C0;
  color: #fff;
}

.aside-drop__title.selected .aside-drop__control span {
  background-color: #fff;
}

.aside-drop:last-child {
  margin-bottom: 0;
}

.aside-drop__control {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 10px;
  width: 20px;
  height: 20px;
  position: relative;
}

.aside-drop__control span {
  position: absolute;
  height: 2px;
  width: 100%;
  -webkit-transition: .3s;
  transition: .3s;
  background-color: #304352;
  top: calc(50% - 1px);
  left: 0;
}

.aside-drop__control span:last-child {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.aside-drop__link {
  display: block;
  padding: 10px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #565A5C;
  padding-left: 40px;
  padding-right: 15px;
}

.aside-drop__link span {
  border-bottom: 1px solid transparent;
  -webkit-transition: border-color .15s;
  transition: border-color .15s;
}

.aside-drop__link:hover span {
  border-color: #565A5C;
}

.aside-drop__link.selected span {
  color: #000;
  border-bottom: 1px solid #000;
}

.aside-drop__wrap {
  padding: 20px 0;
  display: none;
}

.aside-drop--lk .aside-drop__link {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E0E0E0;
}

.aside-drop--lk .aside-drop__link:last-child {
  border-bottom: 0;
}

.aside-drop--lk .aside-drop__wrap {
  padding: 0;
}

.aside-drop--lk .aside-drop__title {
  -webkit-user-select: initial;
     -moz-user-select: initial;
      -ms-user-select: initial;
          user-select: initial;
  cursor: text;
}

.read-more a {
  text-decoration: underline;
}

.read-more a:hover {
  text-decoration: none;
}

.catalog {
  margin-top: 80px;
  margin-bottom: 70px;
}

.catalog-block {
  padding-bottom: 50px;
  border-bottom: 1px solid #000;
  margin-top: 60px;
}

.catalog-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.catalog-block__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 48px;
}

.catalog-block__header img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 15px;
  -webkit-transition: .3s;
  transition: .3s;
}

.catalog-block__header img:hover {
  opacity: .35;
}

.catalog-block__row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: -40px;
}

.catalog-block__col {
  width: 33.33333%;
  margin-bottom: 40px;
}

.catalog--inner {
  margin-top: 0 !important;
}

.catalog--inner .catalog-block {
  margin-top: 0 !important;
}

.catalog-card {
  position: relative;
  padding-bottom: 72px;
  font-family: 'Gotham Pro';
  height: 100%;
}

.catalog-card__img {
  display: block;
}

.catalog-card__img img {
  width: 100%;
}

.catalog-card__date {
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #565A5C;
  margin-top: 20px;
  font-family: 'IBMPlexSans';
}

.catalog-card__title {
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0.02em;
  color: #304352;
  margin-top: 10px;
  display: block;
  font-weight: 500;
}

.catalog-card__desc {
  font-size: 16px;
  line-height: 24px;
  color: #565A5C;
  font-family: 'IBMPlexSans';
  margin-top: 15px;
}

.catalog-card__btn {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.post-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-family: 'Gotham Pro';
  font-weight: 500;
}

.post-pagination a, .post-pagination span {
  width: 40px;
  height: 40px;
  margin-right: 5px;
  -webkit-transition: .3s;
  transition: .3s;
  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;
}

.post-pagination a:last-child, .post-pagination span:last-child {
  margin-right: 0;
}

.post-pagination a {
  background: #F3F0F1;
  color: #565A5C;
}

.post-pagination a:hover {
  background: #D7D2CC;
}

.post-pagination a:active {
  background: #304352;
  color: #fff;
}

.post-pagination span {
  background: #565A5C;
  color: #fff;
}

.post {
  padding-bottom: 60px;
  border-bottom: 1px solid #000;
}

.post__content {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-left: 100px;
  padding-right: 100px;
}

.post__content h1 {
  margin-bottom: 26px;
}

.post__content h2 {
  margin-bottom: 30px;
}

.post__content img {
  margin: 40px auto;
}

.post__content img:first-child {
  margin-top: 0;
}

.post__content p {
  color: #000;
}

.post__content blockquote {
  position: relative;
  padding: 65px 0;
  font-size: 24px;
  line-height: 32px;
  color: #000;
  font-style: italic;
  font-family: 'Gotham Pro';
  margin: 40px 0;
}

.post__content blockquote::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  z-index: -1;
  width: 100vw;
  height: 100%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #F3F0F1;
}

.post__content blockquote {
  position: relative;
  display: block;
  max-width: 490px;
  margin-left: auto;
  margin-right: auto;
}

.post__content blockquote::after {
  content: '';
  position: absolute;
  top: 60px;
  left: -40px;
  width: 24px;
  height: 24px;
  background: url(../img/quote.svg) center center no-repeat;
  background-size: contain;
}

.post__soc {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
}

.post__soc.fixed {
  position: fixed;
  top: 100px;
  left: calc(50% - 430px);
}

.post__soc.bottom {
  position: absolute !important;
  left: 0 !important;
  top: auto;
  bottom: 10px;
}

.post__icon {
  -webkit-transition: .3s;
  transition: .3s;
  width: 20px;
  height: 20px;
  margin-bottom: 15px;
}

.post__icon img {
  margin: 0;
}

.post__icon:last-child {
  margin-bottom: 0;
}

.post__icon:hover {
  opacity: .65;
}

.recommend {
  margin-top: 70px;
  padding-bottom: 100px;
}

.recommend__row {
  margin-top: 50px;
  margin-bottom: -40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.recommend__col {
  width: 25%;
  margin-bottom: 40px;
}

.lk-form {
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.lk-form p {
  margin-bottom: 5px;
  color: #304352;
}

.lk-form__item {
  margin-bottom: 40px;
}

.lk-form__btn {
  margin-top: 60px;
  display: block;
}

.buy {
  padding-bottom: 80px;
}

.buy h1 {
  margin-bottom: 40px;
}

.buy__table {
  margin-top: 60px;
  border-collapse: collapse;
  width: 100%;
  max-width: 1120px;
}

.buy__table tr td {
  padding: 12px 20px;
  font-family: 'Gotham Pro', sans-serif;
  font-size: 24px;
  letter-spacing: 0.02em;
  letter-spacing: 0.02em;
  font-weight: 500;
  height: 80px;
}

.buy__table tr td:last-child {
  white-space: nowrap;
}

.buy__table tr:nth-child(even) td {
  background-color: #F2F2F2;
}

.buy__table tr:first-child td {
  font-size: 16px;
  color: #fff;
  padding-top: 14px;
  padding-bottom: 14px;
  background-color: #304352;
  height: auto;
}

.buy__btn {
  margin-top: 50px;
}

.login-block {
  padding: 60px 90px 90px;
  background-color: #fff;
  border-radius: 4px;
  width: 100%;
  max-width: 600px;
}

.login-block .fancybox-close-small {
  display: none;
}

.login-block__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
}

.login-block__close:hover {
  opacity: .65;
}

.login-block__close img {
  width: 20px;
  height: 20px;
}

.login-block__header a {
  -webkit-transition: .3s;
  transition: .3s;
  color: #CACACA;
}

.login-block__header a.active {
  color: #304352;
}

.login-block__form {
  display: none;
  margin-top: 46px;
}

.login-block__item {
  margin-bottom: 20px;
}

.login-block__item p {
  margin-bottom: 5px;
  color: #304352;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.login-block__item p a {
  color: #555555;
  text-decoration: underline;
  letter-spacing: 0.02em;
  font-size: 16px;
  text-decoration: underline;
}

.login-block__item p a:hover {
  text-transform: none;
}

.login-block__pass {
  margin-top: 40px;
}

.login-block__wrap {
  margin-top: 50px;
}

.login-block__checkbox {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-bottom: 30px;
  display: inline-block;
}

.login-block__checkbox:last-child {
  margin-bottom: 0;
}

.login-block__checkbox input {
  display: none;
}

.login-block__checkbox input:checked + span::after {
  opacity: 1;
  visibility: visible;
}

.login-block__checkbox span {
  position: relative;
  padding-left: 40px;
  display: inline-block;
  color: #565A5C;
  font-size: 16px;
}

.login-block__checkbox span a {
  text-decoration: underline;
}

.login-block__checkbox span a:hover {
  text-decoration: none;
}

.login-block__checkbox span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: 1px solid #CACACA;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
}

.login-block__checkbox span::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: -1px;
  width: 24px;
  height: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url(../img/check.svg) center center no-repeat;
  background-size: contain;
  -webkit-transition: .15s;
  transition: .15s;
  opacity: 0;
  visibility: hidden;
}

.login-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
}

.login-block__row .btn {
  margin-right: 20px;
  display: block;
}

.login-block__row .btn:last-child {
  margin-right: 0;
}

.forget__form {
  max-width: 600px;
  margin-top: 60px;
}

.forget__form .lk-form__btn {
  margin-top: 30px;
}

@media (max-width: 1199px) {
  .aside-drop__link {
    padding-left: 15px;
  }
  .aside-drop__title {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 20px;
  }
  .catalog-card__title {
    font-size: 20px;
    line-height: 26px;
  }
}

@media (max-width: 991px) {
  .index-section__col {
    width: 100%;
  }
  p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  h1 {
    font-size: 46px;
    line-height: 52px;
  }
  .header__left {
    display: none;
  }
  .main {
    padding-top: 80px;
  }
  .header {
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
    z-index: 98;
  }
  .header__row {
    height: 80px;
  }
  .header__burger, .header__login-mob {
    display: block;
  }
  .header__logo {
    width: 200px;
    margin-left: 40px;
    margin-right: 40px;
  }
  .footer__col--hidden {
    display: none;
  }
  .footer__col {
    width: 33.33333%;
  }
  .content-wrap {
    padding-bottom: 60px;
  }
  h1.post-title--aside {
    padding-left: 0;
  }
  .content-wrap__row {
    display: block;
  }
  .content-wrap__aside {
    width: auto;
    margin-left: -15px;
    margin-right: -15px;
  }
  .content-wrap__content {
    width: 100%;
    margin-top: 50px;
  }
  .breadcrumbs {
    padding-bottom: 70px;
  }
  .aside-drop__link {
    padding-left: 40px;
  }
  .catalog-block__col {
    width: 50%;
  }
  h2 {
    font-size: 30px;
    line-height: 34px;
  }
  .catalog {
    margin-bottom: 60px;
  }
  .recommend__col {
    width: 50%;
  }
  .buy__table tr td {
    font-size: 20px;
    height: 60px;
  }
  .post__content {
    max-width: 100%;
    padding-left: 50px;
    padding-right: 50px;
  }
  .post__text {
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
  }
  .post__soc.fixed {
    left: 15px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 38px;
    line-height: 44px;
  }
  .index-section {
    padding-top: 70px;
  }
  .index-section__row {
    margin-top: 40px;
  }
  .footer__col {
    width: 50%;
  }
  .content-wrap {
    padding-bottom: 50px;
  }
  .breadcrumbs {
    padding-bottom: 60px;
  }
  h2 {
    font-size: 24px;
    line-height: 28px;
  }
  .catalog {
    margin-bottom: 50px;
  }
  .post__soc {
    position: static !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
  }
  .post__icon {
    margin-bottom: 0;
    margin-right: 15px;
  }
  .post__content {
    padding-left: 0;
    padding-right: 0;
    max-width: 660px;
  }
}

@media (max-width: 575px) {
  p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 18px;
  }
  h1 {
    font-size: 24px;
    line-height: 32px;
  }
  .index-section {
    padding-bottom: 80px;
    padding-top: 50px;
  }
  .index-section h1 {
    text-align: left;
  }
  .index-section__row {
    margin-top: 30px;
    margin-bottom: 10px;
  }
  .btn {
    padding: 14px 30px;
  }
  .footer__col {
    width: 100%;
  }
  .footer-bottom__row {
    display: block;
  }
  .footer-bottom__cr {
    margin-top: 20px;
    margin-left: 0;
  }
  .footer {
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .breadcrumbs img {
    margin-left: 4px;
    margin-right: 4px;
  }
  .breadcrumbs {
    padding-bottom: 40px;
  }
  .aside-drop__title {
    font-size: 18px;
  }
  .aside-drop__link {
    font-size: 14px;
  }
  .aside-drop__link {
    padding-left: 15px;
  }
  h2 {
    font-size: 20px;
    line-height: 24px;
  }
  .catalog-block__header img {
    width: 36px;
  }
  .catalog-block__col {
    width: 100%;
  }
  .catalog-card__title {
    font-size: 18px;
    line-height: 22px;
  }
  .catalog-card__desc {
    font-size: 14px;
    line-height: 22px;
  }
  .post-pagination {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .catalog-card__btn {
    width: 100%;
  }
  .catalog-card__btn .btn {
    display: block;
    width: 100%;
  }
  .catalog-block__header {
    margin-bottom: 40px;
  }
  .catalog {
    margin-top: 0;
  }
  .recommend__col {
    width: 100%;
  }
  .post {
    padding-bottom: 40px;
  }
  .recommend {
    margin-top: 40px;
    padding-bottom: 80px;
  }
  .post__content img {
    margin: 30px auto;
  }
  .post__content blockquote {
    margin: 30px 0;
    padding: 30px 0;
    font-size: 16px;
    line-height: 24px;
  }
  .post__content blockquote span {
    max-width: 100%;
  }
  .post__content blockquote span::before {
    display: none;
  }
  .lk-form__btn {
    width: 100%;
  }
  .buy__table tr td {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
    height: 50px;
  }
  .buy__table tr:first-child td {
    font-size: 14px;
  }
  .buy__table tr td:first-child {
    padding-right: 0;
  }
  .buy__table, .buy__btn {
    margin-top: 40px;
  }
  .login-block {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 50px;
  }
  .login-block__row {
    display: block;
  }
  .login-block__row .btn {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .login-block__row .btn:last-child {
    margin-bottom: 0;
  }
  .login-block__item p a {
    font-size: 12px;
  }
  .login-block__checkbox span {
    font-size: 14px;
    padding-left: 26px;
  }
  .login-block__checkbox span::before {
    width: 18px;
    height: 18px;
  }
  .login-block__checkbox span::after {
    width: 14px;
    height: 14px;
    left: 2px;
    margin-top: 0;
  }
  .lk-form__btn {
    margin-top: 40px;
  }
  .buy {
    padding-bottom: 70px;
  }
}
