@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Heebo:regular,500,700,900&display=swap");
@font-face {
  font-family: "Gilroy-Bold";
  font-display: swap;
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy-Bold.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-Medium";
  font-display: swap;
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-SemiBold";
  font-display: swap;
  src: url("../fonts/Gilroy-SemiBold.woff2") format("woff2"), url("../fonts/Gilroy-SemiBold.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-Regular";
  font-display: swap;
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "icons";
  font-display: swap;
  src: url("../fonts/icons.woff") format("woff"), url("../fonts/icons.woff2#icons") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=_icon-]:before,
[class*=" _icon-"]:before {
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^=_icon-]:before,
[class*=" _icon-"]:before {
  display: block;
}

._icon-fb:before {
  content: "\e900";
}

._icon-twitter:before {
  content: "\e901";
}

._icon-insta:before {
  content: "\e902";
}

._icon-linkedin:before {
  content: "\e903";
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

aside,
nav,
footer,
header,
section {
  display: block;
}

html {
  font-size: 16px;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  line-height: 1;
  font-family: "Heebo";
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: "Heebo";
  font-size: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background-color: inherit;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

/*
&::-webkit-scrollbar {
	display: none;
}
*/
body {
  color: #21243d;
}
body._lock {
  overflow: hidden;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
._container {
  max-width: 856px;
  margin: 0 auto;
}
@media (max-width: 868px) {
  ._container {
    max-width: 750px;
  }
}
@media (max-width: 991.98px) {
  ._container {
    max-width: none;
    padding: 0 10px;
  }
}

.btn {
  border-radius: 2px;
  background-color: #ff6464;
  height: 47px;
  color: #fff;
  font-weight: 500;
  line-height: 145%;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  text-align: center;
  display: inline-flex;
  padding: 0px 20px;
  transition: background-color 0.3s ease 0s;
}
@media (min-width: 992px) {
  .btn:hover {
    background-color: #bb4949;
  }
}
.btn._fw {
  width: 100%;
}

.select {
  position: relative;
}
.select__item {
  position: relative;
}
.select__title {
  color: #000;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  cursor: pointer;
  border-radius: 4px;
}
@media (max-width: 991.98px) {
  .select__title {
    font-size: 18px;
  }
}
.select__value {
  display: flex;
  font-size: 14px;
  height: 30px;
  padding: 0px 15px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.select__value span {
  height: 1em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.select__value:before {
  content: "";
  display: inline-block;
  transition: all 0.3s ease 0s;
  width: 11px;
  height: 7px;
  background: url("../img/icons/select.svg") center/100% no-repeat;
}
.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}
.select__options {
  color: #000;
  position: absolute;
  top: 29px;
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border: 1px solid #d9d9d9;
  border-top: 0;
  font-size: 14px;
  padding: 10px 0px 5px 0px;
}
@media (max-width: 991.98px) {
  .select__options {
    font-size: 18px;
  }
}
.select__option {
  cursor: pointer;
  padding: 5px 15px;
  margin: 0px 0px 0px 0px;
}
@media (min-width: 992px) {
  .select__option:hover {
    background: #d9d9d9;
  }
}
.select._active {
  z-index: 5;
}
.select._active .select__value:before {
  transform: rotate(-180deg);
}
.select._active .select__options {
  display: block;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
  outline: none;
}

.input {
  border-radius: 0 !important;
  width: 100%;
  display: block;
  padding: 0px 20px;
}
textarea.input {
  resize: none;
  padding: 0px 0px;
}

.checkbox {
  position: relative;
}
.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.checkbox__input:checked + .checkbox__text:before {
  background: #fff url("../img/icons/check.svg") center no-repeat;
}
.checkbox__text {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.25;
  cursor: pointer;
}
.checkbox__text:before {
  content: "";
  align-self: flex-start;
  margin: 0px 14px 0px 0px;
  flex: 0 0 20px;
  left: 0;
  top: 0;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}
.checkbox a {
  color: #fff;
  text-decoration: underline;
}
@media (min-width: 992px) {
  .checkbox a:hover {
    text-decoration: none;
  }
}
.checkbox._error .checkbox__text:before {
  border: 1px solid #ee1212;
}

.options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.options__item {
  position: relative;
  cursor: pointer;
}
.options__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  left: 0;
  top: 0;
  visibility: hidden;
}
.options__input:checked + .options__text:after {
  transform: scale(1);
}
.options__text {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.25;
}
.options__text:before {
  content: "";
  align-self: flex-start;
  margin: 0px 14px 0px 0px;
  flex: 0 0 20px;
  left: 0;
  top: 0;
  border-radius: 50%;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}
.options__text:after {
  content: "";
  transition: all 0.3s ease 0s;
  transform: scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #77243a;
  position: absolute;
  left: 5px;
  top: 4px;
}

.rating {
  display: flex;
  align-items: flex-end;
  font-size: 40px;
  line-height: 0.75;
  transition: opacity 0.3s ease 0s;
}

.rating.rating_sending {
  opacity: 0.2;
}

.rating.rating_set .rating__active,
.rating.rating_set .rating__item {
  cursor: pointer;
}

.rating__body {
  position: relative;
}

.rating__body::before {
  content: "★★★★★";
  display: block;
}

.rating__active {
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.rating__active::before {
  content: "★★★★★";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #ffd300;
}

.rating__items {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.rating__item {
  flex: 0 0 20%;
  height: 100%;
  opacity: 0;
}

.rating__value {
  font-size: 50%;
  line-height: 1;
  padding: 0px 0px 0px 10px;
}

.quantity {
  width: 88px;
  height: 40px;
  display: flex;
  border: 1px solid rgba(166, 166, 166, 0.45);
}
.quantity__button {
  flex: 0 0 30px;
  position: relative;
  cursor: pointer;
}
.quantity__button::before, .quantity__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s ease 0s;
  margin: 0px 0px 0px -4.5px;
  background-color: #a6a6a6;
  width: 9px;
  height: 1px;
}
@media (min-width: 991.98px) {
  .quantity__button:hover::before, .quantity__button:hover::after {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
.quantity__button_plus::before {
  transform: rotate(-90deg);
}
.quantity__input {
  flex: 1 1 auto;
}
.quantity__input input {
  height: 100%;
  color: #a6a6a6;
  font-size: 12px;
  width: 100%;
  text-align: center;
}

.title {
  font-size: 44px;
  font-weight: 700;
  color: #21243d;
  line-height: 136.3636363636%;
}
@media (max-width: 767.98px) {
  .title {
    font-size: 32px;
  }
}

.text, .article__text p {
  font-size: 16px;
  line-height: 143.75%;
  color: #21243d;
}

.title-posts {
  font-size: 22px;
}
@media (max-width: 767.98px) {
  .title-posts {
    text-align: center;
    font-size: 18px;
  }
}

.row:after {
  display: block;
  content: "";
  clear: both;
}

.rub:after {
  content: "₽";
}

ol.counter {
  list-style-type: none;
  counter-reset: item;
}
ol.counter li {
  position: relative;
  padding: 0px 0px 0px 45px;
}
ol.counter li:before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  color: #818181;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  border: 1px solid #4274bb;
}

.ellipsis {
  display: block;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.es {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.table {
  display: table;
  font-size: 0;
  width: 100%;
}

.trow {
  display: table-row;
}

.cell {
  display: table-cell;
}
.cell.full {
  width: 100%;
}

._ibg {
  position: relative;
}
._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

body.ie ._ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body.ie ._ibg img {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

._video {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}
._video video,
._video iframe,
._video object,
._video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videobg video,
.videobg iframe,
.videobg object,
.videobg embed {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
}

._more-content {
  transition: all 0.3s ease 0s;
  overflow: hidden;
}

._more-link {
  cursor: pointer;
}
._more-link span {
  font-style: normal;
}
._more-link span:first-child {
  display: block;
}
._more-link span:last-child {
  display: none;
}
._more-link._active span {
  font-style: normal;
}
._more-link._active span:first-child {
  display: none;
}
._more-link._active span:last-child {
  display: block;
}

#map {
  background: url("../img/icons/loading.gif") center/50px no-repeat;
}

._swiper {
  overflow: hidden;
}
._swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  display: flex;
  position: relative;
}
._swiper.swiper-container-vertical .swiper-wrapper {
  flex-direction: column;
}
._swiper.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
}

.swiper-container-initialized .swiper-slide {
  flex-shrink: 0;
}

.swiper-container-android .swiper-slide,
.swiper-container-android .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

._tabs-block {
  display: none;
}
._tabs-block._active {
  display: block;
}

.mirror {
  transform: scale(-1, 1);
}

.nicescroll-rails {
  z-index: 1000 !important;
}

._custom-scroll {
  position: fixed;
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  z-index: 1000;
}
._custom-scroll__line {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px 0 0 3px;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
}

.popup {
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  padding: 30px 10px;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
}
.popup::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease 0s;
}
.popup.show {
  visibility: visible;
  overflow: auto;
}
.popup.show::before {
  opacity: 1;
}
.popup.show .popup__body {
  transform: scale(1);
}
.popup._active {
  overflow: auto;
  visibility: visible;
}
.popup._active::before {
  opacity: 1;
}
.popup._active .popup__body {
  transition: all 0.3s ease 0.2s;
  transform: scale(1);
}
.popup__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup__body {
  transform: scale(0);
  transition: all 0.3s ease 0s;
  background-color: #fff;
  padding: 50px;
  width: 100%;
  max-width: 800px;
}
.popup__close {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
  z-index: 30;
  background: url("../img/icons/close.svg") 0 0 no-repeat;
}

.header {
  position: relative;
  z-index: 100;
}
.header__container {
  max-width: 1052px;
  padding: 0px 10px;
  margin: 0 auto;
}
.header__menu {
  height: 82px;
  align-items: center;
  display: flex;
  justify-content: flex-end;
  padding: 10px 0px;
}
@media (max-width: 767.98px) {
  .header__menu {
    height: 50px;
  }
}

@media (max-width: 767.98px) {
  .menu__body {
    transform: translate(0px, -100%);
    transition: all 0.8s ease 0s;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: auto;
    padding: 70px 10px 30px 10px;
    background-color: rgba(255, 255, 255, 0.95);
  }
  .menu__body._active {
    transform: translate(0px, 0%);
  }
}
.menu__list li {
  margin: 0px 0px 20px 0px;
}
.menu__list li:last-child {
  margin: 0px 0px 0px 0px;
}
@media (min-width: 767.98px) {
  .menu__list {
    display: flex;
  }
  .menu__list li {
    margin: 0px 33px 0px 0px;
  }
}
.menu__link {
  color: #000;
  font-weight: 500;
  font-size: 20px;
  transition: color 0.3s ease 0s;
}
.menu__link._active {
  color: #ff6464;
}
@media (min-width: 992px) {
  .menu__link:hover {
    color: #ff6464;
  }
}
@media (max-width: 767.98px) {
  .menu__link {
    font-size: 40px;
    display: block;
    text-align: center;
  }
}

.icon-menu {
  display: none;
}
@media (max-width: 767.98px) {
  .icon-menu {
    display: block;
    position: relative;
    width: 30px;
    height: 18px;
    cursor: pointer;
    z-index: 5;
  }
  .icon-menu span {
    transition: all 0.3s ease 0s;
    top: calc(50% - 1px);
    left: 0px;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #000;
  }
  .icon-menu span:first-child {
    top: 0px;
  }
  .icon-menu span:last-child {
    top: auto;
    bottom: 0px;
  }
  .icon-menu._active span {
    transform: scale(0);
  }
  .icon-menu._active span:first-child {
    transform: rotate(-45deg);
    top: calc(50% - 1px);
  }
  .icon-menu._active span:last-child {
    transform: rotate(45deg);
    bottom: calc(50% - 1px);
  }
}

/*
//Burger

*/
.footer {
  text-align: center;
  padding: 50px 0px;
}
@media (max-width: 767.98px) {
  .footer {
    padding: 30px 0px;
  }
}
.footer__social {
  margin: 0px 0px 25px 0px;
}
.hello {
  padding: 38px 0px 70px 0px;
}
@media (max-width: 868px) {
  .hello {
    padding: 0px 0px 70px 0px;
  }
}
@media (max-width: 767.98px) {
  .hello {
    padding: 0px 0px 60px 0px;
  }
}
.hello__container {
  display: flex;
}
@media (max-width: 767.98px) {
  .hello__container {
    flex-direction: column-reverse;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
}
.hello__content {
  align-items: flex-start;
  flex: 1 1 auto;
  padding: 18px 110px 0px 0px;
}
.hello__content *:last-child {
  margin-bottom: 0;
}
@media (max-width: 868px) {
  .hello__content {
    padding: 18px 50px 0px 0px;
  }
}
@media (max-width: 767.98px) {
  .hello__content {
    padding: 0px 0px 0px 0px;
  }
}
.hello__title {
  margin: 0px 0px 25px 0px;
}
@media (max-width: 767.98px) {
  .hello__title {
    margin: 0px 0px 20px 0px;
  }
}
.hello__text {
  margin: 0px 0px 35px 0px;
}
@media (max-width: 767.98px) {
  .hello__text {
    padding: 0px 15px;
    margin: 0px 0px 25px 0px;
  }
}
.hello__btn {
  margin: 0px 0px 25px 0px;
}
@media (max-width: 767.98px) {
  .hello__btn {
    margin: 0px 0px 20px 0px;
  }
}
.hello__avatar {
  flex: 0 0 243px;
  height: 243px;
  border-radius: 50%;
  position: relative;
  box-shadow: -5px 13px 0px 0px #edf7fa;
}
.hello__avatar img {
  max-width: 100%;
}
@media (max-width: 767.98px) {
  .hello__avatar {
    flex: 0 0 170px;
    width: 170px;
    height: 170px;
    margin: 0px 0px 40px 0px;
  }
}

.recent-posts {
  background-color: #edf7fa;
  padding: 25px 0px 13px 0px;
}
@media (max-width: 767.98px) {
  .recent-posts {
    padding: 25px 0px 23px 0px;
  }
}
.recent-posts__header {
  display: flex;
  margin: 0px 0px 20px 0px;
}
.recent-posts__title {
  flex: 1 1 auto;
  padding: 0px 22px 0px 0px;
}
.recent-posts__view-all {
  flex: 0 0 auto;
  line-height: 23px;
  font-size: 16px;
  color: #00a8cc;
}
@media (max-width: 767.98px) {
  .recent-posts__view-all {
    display: none;
  }
}
.recent-posts__items {
  margin: 0px -10px;
}
@media (min-width: 767.98px) {
  .recent-posts__items {
    display: flex;
  }
}
.recent-posts__column {
  flex: 0 1 50%;
  padding: 0px 10px;
  margin: 0px 0px 10px 0px;
}
.recent-post {
  height: 100%;
  background-color: #fff;
  border-radius: 4px;
  padding: 20px;
  box-shadow: 0px 4px 10px rgba(187, 225, 250, 0.25);
}
@media (max-width: 767.98px) {
  .recent-post {
    padding: 15px;
  }
}
.recent-post *:last-child {
  margin-bottom: 0;
}
.recent-post__title {
  color: inherit;
  font-size: 26px;
  font-weight: 700;
  line-height: 146.1538461538%;
  transition: color 0.3s ease 0s;
  display: inline-block;
  margin: 0px 0px 17px 0px;
}
@media (min-width: 992px) {
  .recent-post__title:hover {
    color: #ff6464;
  }
}
@media (max-width: 767.98px) {
  .recent-post__title {
    font-size: 22px;
    margin: 0px 0px 10px 0px;
  }
}
.recent-post__info {
  margin: 0px 0px 15px 0px;
  font-size: 18px;
  line-height: 144.4444444444%;
}
.recent-post__info span {
  margin: 0px 10px;
}
@media (max-width: 767.98px) {
  .recent-post__info {
    font-size: 16px;
    margin: 0px 0px 10px 0px;
  }
}
.recent-post__text {
  margin: 0px 0px 15px 0px;
}

.featured-works {
  padding: 30px 0px 80px 0px;
}
@media (max-width: 767.98px) {
  .featured-works {
    padding: 30px 0px 30px 0px;
  }
}
.featured-works__title {
  margin: 0px 0px 20px 0px;
}
@media (max-width: 767.98px) {
  .featured-works__items {
    display: flex;
    overflow: auto;
  }
  .featured-works__items .works__item {
    flex: 0 0 90%;
    margin: 0px 15px 0px 0px;
  }
}

.works__main-title {
  margin: 0px 0px 45px 0px;
}
@media (max-width: 767.98px) {
  .works__main-title {
    margin: 0px 0px 30px 0px;
  }
}
.works__items {
  padding: 0px 0px 60px 0px;
}
@media (max-width: 767.98px) {
  .works__items {
    padding: 0px 0px 30px 0px;
  }
}
.works__item {
  padding: 0px 0px 30px 0px;
  margin: 0px 0px 30px 0px;
  border-bottom: 1px solid #e0e0e0;
}
.works__item:last-child {
  margin-bottom: 0;
}
@media (min-width: 767.98px) {
  .works__item {
    display: flex;
    align-items: flex-start;
  }
}
@media (max-width: 767.98px) {
  .works__item {
    flex: 0 0 90%;
    margin: 0px 15px 0px 0px;
  }
}
.works__image {
  display: block;
  flex: 0 0 246px;
  border-radius: 6px;
  min-height: 180px;
}
@media (max-width: 767.98px) {
  .works__image {
    margin: 0px 0px 17px 0px;
    padding: 0px 0px 60% 0px;
  }
}
.works__body {
  flex: 1 1 auto;
}
@media (min-width: 767.98px) {
  .works__body {
    padding: 0px 0px 0px 18px;
  }
}
.works__title {
  color: inherit;
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  line-height: 146.6666666667%;
  margin: 0px 0px 15px 0px;
  transition: color 0.3s ease 0s;
}
@media (max-width: 767.98px) {
  .works__title {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .works__title:hover {
    color: #ff6446;
  }
}
.works__info {
  display: flex;
  align-items: center;
  margin: 0px 0px 15px 0px;
}
.works__year {
  background: #142850;
  border-radius: 16px;
  height: 25px;
  padding: 0px 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
}
.works__category {
  font-size: 20px;
  color: #8695a4;
  margin: 0px 0px 0px 25px;
}
.blog {
  padding-bottom: 50px;
}
@media (max-width: 767.98px) {
  .blog {
    padding-bottom: 30px;
  }
}
.blog__title {
  margin: 0px 0px 50px 0px;
}
@media (max-width: 767.98px) {
  .blog__title {
    margin: 0px 0px 20px 0px;
  }
}
.blog__article-name {
  font-size: 30px;
  font-weight: 500;
  line-height: 146.6666666667%;
  display: inline-block;
  transition: color 0.3s ease 0s;
  margin: 0px 0px 10px 0px;
  color: inherit;
}
@media (min-width: 992px) {
  .blog__article-name:hover {
    color: #ff6464;
  }
}
@media (max-width: 767.98px) {
  .blog__article-name {
    font-size: 26px;
  }
}
.blog__item {
  border-bottom: 1px solid #e0e0e0;
  padding: 0px 0px 30px 0px;
  margin: 0px 0px 30px 0px;
}
.blog__item:last-child {
  margin: 0px 0px 0px 0px;
}
@media (max-width: 767.98px) {
  .blog__item {
    padding: 0px 0px 25px 0px;
    margin: 0px 0px 25px 0px;
  }
}
.blog__info {
  display: flex;
  font-size: 20px;
  margin: 0px 0px 10px 0px;
  font-size: 16px;
}
.blog__seperator {
  margin: 0px 15px;
}
.blog__category {
  color: #8695a4;
}
.article {
  max-width: 700px;
  padding: 0px 10px 30px;
  margin: 0 auto;
}
.article__title {
  font-size: 34px;
  font-weight: 700;
  line-height: 147.0588235294%;
  margin: 0px 0px 30px 0px;
}
@media (max-width: 767.98px) {
  .article__title {
    font-size: 30px;
  }
}
.article__info {
  display: flex;
  margin: 0px 0px 20px 0px;
}
.article__year {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #ff7c7c;
  border-radius: 16px;
  height: 25px;
  padding: 0px 10px;
  font-size: 18px;
  font-weight: 900;
}
.article__category {
  align-self: center;
  line-height: 125%;
  font-size: 20px;
  margin: 0px 0px 0px 25px;
}
@media (min-width: 767.98px) {
  .article__category {
    font-size: 18px;
  }
}
.article__text p {
  margin: 0px 0px 20px 0px;
}
.article__text img {
  max-width: 100%;
  margin: 0px 0px 20px 0px;
}

.page {
  padding: 90px 0px 0px 0px;
  flex: 1 1 auto;
}
@media (max-width: 868px) {
  .page {
    padding: 30px 0px 0px 0px;
  }
}

.social {
  display: flex;
  justify-content: center;
  align-items: center;
}
.social__item {
  transition: color 0.3s ease 0s;
  margin: 0px 17px;
  font-size: 30px;
  color: inherit;
}
@media (min-width: 992px) {
  .social__item:hover {
    color: #ff6464;
  }
}

.transition-fade {
  transition: 0.4s;
  opacity: 1;
}

html.is-animating .transition-fade {
  opacity: 0;
}