@charset "UTF-8";
/* ----------------------------------- MIXINS ----------------------------------- */
/*


 Стили


*/
* {
  outline: none;
}

a {
  transition: all 0.3s ease;
}
a:hover {
  color: #29B6F6;
}
a:active {
  color: #0288D1;
}

body {
  font-family: "Roboto";
  background: #F4F8FD;
  padding-top: 74px;
}
@media (min-width: 768px) {
  body {
    padding-top: 96px;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 30px;
  }
}

.mainWrapper {
  min-height: 320px;
  overflow: hidden;
  width: 100%;
}

.searchBtn {
  padding: 0;
  margin: 5px 3px 0 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.searchBtn.beforeanimate {
  opacity: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 74px;
  padding: 20px 0 21px;
  background: #F4F8FD;
  z-index: 50;
}
@media (min-width: 768px) {
  .header {
    height: 96px;
    padding: 24px 0 20px;
  }
}
.header .container {
  position: relative;
}
.header__logo {
  width: 82px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .header__logo {
    width: 122px;
  }
}
.header__logo.beforeanimate {
  opacity: 0;
}
.header__logo img {
  display: block;
  width: 100%;
}
.header__search {
  position: absolute;
  right: 10px;
  display: none;
  z-index: 1;
  width: 415px;
  max-width: calc(100% - 150px);
  top: -3px;
}
@media (min-width: 768px) {
  .header__search {
    right: 23px;
    top: 1px;
  }
}
.header__search.show {
  display: block;
}
.header__search input {
  width: 100%;
  border: 1px solid #D6D9E0;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 0 15px;
  font-size: 14px;
  color: #000;
  height: 40px;
  background: transparent;
}
@media (min-width: 768px) {
  .header__search input {
    height: 48px;
    font-size: 16px;
  }
}

.fixedFilters {
  position: fixed;
  top: -150px;
  left: 0;
  width: 100%;
  background: #F4F8FD;
  z-index: 20;
  border-top: 1px solid #ECEFF1;
  padding: 15px 0 1px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 1s ease;
}
@media (min-width: 768px) {
  .fixedFilters {
    padding: 0;
  }
}
.fixedFilters .filters__list {
  margin: 0;
  display: block;
  position: relative;
  overflow: hidden;
}
.fixedFilters .filters__list::after {
  display: none;
}
.fixedFilters .filters__list .slick-list {
  position: relative;
}
.fixedFilters .filters__list .slick-list:after {
  content: "";
  display: table;
  width: 100%;
}
.fixedFilters .filters__list .slick-list::before {
  content: "";
  position: absolute;
  top: 0;
  right: 98px;
  z-index: 10;
  width: 160px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #F4F8FD 90%);
  pointer-events: none;
}
.fixedFilters .filterItem {
  float: left;
  box-sizing: border-box;
}
.fixedFilters.show {
  top: 74px;
}
@media (min-width: 768px) {
  .fixedFilters.show {
    top: 96px;
  }
}
.fixedFilters .slick-prev, .fixedFilters .slick-next {
  position: absolute;
  z-index: 30;
  display: none !important;
}
@media (min-width: 768px) {
  .fixedFilters .slick-prev, .fixedFilters .slick-next {
    display: block !important;
    cursor: pointer;
    padding: 0;
    margin: 0;
    overflow: hidden;
    text-indent: -999px;
    width: 40px;
    height: 40px;
    background: url(../images/slider-arrow.svg) #F4F8FD no-repeat center center/8px 14px;
    top: 16px;
    border: 1px solid #D6D9E0;
    border-radius: 0 4px 4px 0;
  }
}
@media (min-width: 1200px) {
  .fixedFilters .slick-prev, .fixedFilters .slick-next {
    width: 49px;
    height: 48px;
  }
}
.fixedFilters .slick-next {
  right: 2px;
}
.fixedFilters .slick-prev {
  right: 50px;
  transform: rotate(180deg);
}
.fixedFilters .filters {
  margin: 0 auto !important;
  padding: 0 15px 15px;
  max-width: 1372px;
}
@media (min-width: 768px) {
  .fixedFilters .filters {
    padding: 0 30px 15px;
  }
}

.filters {
  overflow: auto;
  margin: 22px -15px 22px -15px;
  padding: 0 15px 0 15px;
  transition: all 0.3s ease 0.4s;
  position: relative;
  z-index: 5;
  /* хром, сафари */
  /* ie 10+ */
  -ms-overflow-style: none;
  /* фф (свойство больше не работает, других способов тоже нет)*/
  overflow: -moz-scrollbars-none;
}
.filters::-webkit-scrollbar {
  width: 0;
}
@media (min-width: 768px) {
  .filters {
    padding: 0;
    margin: 57px -8px 0;
  }
}
@media (min-width: 1200px) {
  .filters {
    margin: 47px -8px 0;
    max-width: 60%;
  }
}
.filters.beforeanimate {
  opacity: 0;
}
.filters__list {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media (min-width: 768px) {
  .filters__list {
    flex-wrap: wrap;
  }
}
.filters__list:after {
  content: "1";
  display: block;
  width: 0;
  opacity: 0;
  height: 10px;
  position: relative;
}
@media (min-width: 768px) {
  .filters__list:after {
    display: none;
  }
}

.filterItem {
  margin-right: 10px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 32px;
  padding: 0 16px;
  border: 1px solid #D6D9E0;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #F4F8FD;
}
@media (min-width: 768px) {
  .filterItem {
    margin: 16px 8px 0;
    height: 40px;
    padding: 0 24px;
  }
}
@media (min-width: 1200px) {
  .filterItem {
    height: 48px;
  }
}
.filterItem.active {
  border-color: #039BE5;
  background: #E3F2FD;
}
.filterItem.active .filterItem__count {
  background: #039BE5;
}
.filterItem:not(.active):hover {
  border-color: #A4A9B5;
}
.filterItem:not(.active):hover .filterItem__count {
  background: #7E8595;
}
.filterItem__title {
  font-weight: 500;
  color: #2C2C2C;
  font-size: 12px;
  line-height: 28px;
  white-space: nowrap;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .filterItem__title {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .filterItem__title {
    font-size: 18px;
  }
}
.filterItem__count {
  margin-left: 5px;
  padding: 0 5px;
  min-width: 20px;
  height: 20px;
  border-radius: 20px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #A4A9B5;
  font-weight: 500;
  font-size: 12px;
  line-height: 17px;
  color: #FFFFFF;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .filterItem__count {
    min-width: 24px;
    height: 24px;
    font-size: 14px;
    line-height: 19px;
    margin-left: 7px;
  }
}

.mainBlock {
  border-top: 1px solid #ECEFF1;
  position: relative;
  z-index: 1;
}
.mainBlock::after {
  content: "";
  display: table;
  width: 100%;
}
.mainBlock img {
  display: block;
  width: 100%;
}
.mainBlock__blue {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 266px;
  z-index: 1;
  transition: all 0.5s ease 1s;
}
@media (min-width: 768px) {
  .mainBlock__blue {
    width: 495px;
  }
}
@media (min-width: 1200px) {
  .mainBlock__blue {
    width: 445px;
    bottom: 41px;
    left: calc(50% + 275px);
  }
}
.mainBlock__blue.beforeanimate {
  transform: translateX(100px);
  opacity: 0;
}
.mainBlock__circle {
  position: absolute;
  top: 64px;
  right: -38px;
  width: 169px;
  z-index: 2;
  transition: all 0.6s ease 1.2s;
}
@media (min-width: 768px) {
  .mainBlock__circle {
    top: auto;
    bottom: calc(368px + (100vw - 768px)*0.6242937853107345);
    width: 398px;
    right: -102px;
  }
}
@media (min-width: 1200px) {
  .mainBlock__circle {
    left: calc(50% - 93px);
    bottom: 235px;
  }
}
.mainBlock__circle.beforeanimate {
  transform: translate3d(-130px, -130px, 0);
  opacity: 0;
}
.mainBlock__dots {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 169px;
  z-index: 3;
  transition: all 0.5s ease 1.4s;
}
@media (min-width: 1200px) {
  .mainBlock__dots {
    display: block;
    width: 219px;
    bottom: 364px;
    left: calc(50% + 278px);
  }
}
.mainBlock__dots.beforeanimate {
  opacity: 0;
}
.mainBlock__triangle {
  position: absolute;
  z-index: 4;
}
.mainBlock__triangle-large {
  width: 30px;
  bottom: 142px;
  right: 1px;
  transition: all 0.5s ease 1.6s;
}
@media (min-width: 768px) {
  .mainBlock__triangle-large {
    width: 82px;
    right: 52px;
    bottom: 75px;
  }
}
@media (min-width: 1200px) {
  .mainBlock__triangle-large {
    width: 97px;
    bottom: 141px;
    right: auto;
    left: calc(50% + 302px);
  }
}
.mainBlock__triangle-large.beforeanimate {
  transform: translateY(100px);
  opacity: 0;
}
.mainBlock__triangle-small {
  width: 16px;
  bottom: 122px;
  right: 37px;
  transition: all 0.6s ease 1.7s;
}
@media (min-width: 768px) {
  .mainBlock__triangle-small {
    width: 44px;
    right: 152px;
    bottom: 25px;
  }
}
@media (min-width: 1200px) {
  .mainBlock__triangle-small {
    width: 52px;
    bottom: 81px;
    right: auto;
    left: calc(50% + 229px);
  }
}
.mainBlock__triangle-small.beforeanimate {
  transform: translateY(70px);
  opacity: 0;
}

.mainText {
  font-size: 18px;
  line-height: 26px;
  padding: 60px 0 10px;
  transition: all 0.5s ease 1.9s;
}
.mainText.beforeanimate {
  opacity: 0;
}
@media (min-width: 768px) {
  .mainText {
    font-size: 40px;
    line-height: 54px;
    padding: 124px 0 50px;
  }
}
@media (min-width: 1200px) {
  .mainText {
    padding: 124px 133px 50px 113px;
  }
}
.mainText b {
  font-weight: 700;
}
.mainText a {
  background: #F79241;
  border-radius: 2px;
  padding: 2px 3px;
  text-decoration: none;
  color: #000000;
  margin: 0 -2px;
}
@media (min-width: 768px) {
  .mainText a {
    border-radius: 8px;
    margin: 0 -4px;
    padding: 2px 5px;
  }
}

.whiteBg {
  background: #FFFFFF;
  box-shadow: 0px 0px 24px rgba(169, 178, 190, 0.03);
  border-radius: 15px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
@media (min-width: 768px) {
  .whiteBg {
    border-radius: 40px;
  }
}
.whiteBg.videoPage {
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .whiteBg.videoPage {
    padding-bottom: 95px;
  }
}
.whiteBg.videoPage:before {
  content: "";
  display: table;
  width: 100%;
}
@media (min-width: 768px) {
  .whiteBg.videoPage .filters {
    margin: 14px -8px 0;
  }
}
.whiteBg.videoPage .aside__right {
  transition: all 0.5s ease 0.5s;
}
.whiteBg.videoPage .aside__right.beforeanimate {
  opacity: 0;
  transform: translateY(200px);
}
@media (min-width: 1200px) {
  .whiteBg.videoPage .aside__right .articleItem:first-child {
    margin-top: 30px;
  }
}

.articleCategory {
  border-top: 1px solid #E0E5E8;
  margin: 48px 0 0;
  padding: 20px 0 0;
  position: relative;
}
@media (min-width: 768px) {
  .articleCategory {
    margin: 78px 0 0;
    padding: 80px 0 0 79px;
  }
}
@media (min-width: 1200px) {
  .articleCategory {
    margin: 87px 0 0;
    padding: 77px 0 0 113px;
  }
}
@media (min-width: 768px) {
  .articleCategory__icon {
    position: absolute;
    top: 75px;
    left: 0;
  }
}
@media (min-width: 1200px) {
  .articleCategory__icon {
    top: 73px;
    left: 25px;
  }
}
.articleCategory__icon img {
  display: block;
  width: 50px;
}
@media (min-width: 768px) {
  .articleCategory__icon img {
    width: 64px;
  }
}
.articleCategory__title {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .articleCategory__title {
    font-size: 40px;
    line-height: 54px;
    margin-top: 0;
  }
}
.articleCategory__text {
  font-size: 14px;
  line-height: 20px;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .articleCategory__text {
    font-size: 18px;
    line-height: 28px;
    margin-top: 22px;
    max-width: 527px;
  }
}
@media (min-width: 1200px) {
  .articleCategory__text {
    margin-top: 25px;
  }
}

.articleItem {
  margin: 50px 0 0;
}
@media (min-width: 768px) {
  .articleItem {
    margin: 80px 0 0;
  }
}
.articleItem-current {
  margin-top: 0;
  transition: all 0.5s ease 0.3s;
}
@media (min-width: 768px) {
  .articleItem-current {
    margin-top: 30px;
  }
}
@media (min-width: 1200px) {
  .articleItem-current {
    position: sticky;
    top: 136px;
  }
}
.articleItem-current.beforeanimate {
  opacity: 0;
  transform: translateY(200px);
}
@media (min-width: 768px) {
  .articleItem-current .articleItem__title {
    font-size: 32px;
    line-height: 40px;
    margin-top: 25px;
  }
}
@media (min-width: 768px) {
  .articleItem-current .articleItem__bottom {
    margin-top: 70px;
  }
}
@media (min-width: 768px) {
  .articleItem-current .articleItem__bottom {
    margin-top: 35px;
  }
}
.articleItem-main {
  margin: 20px 0 58px;
  position: relative;
  z-index: 20;
}
@media (min-width: 768px) {
  .articleItem-main {
    margin: 29px 0 58px;
  }
}
@media (min-width: 1200px) {
  .articleItem-main {
    margin: 38px 0 79px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
.articleItem-main .articleItem__image {
  transition: all 0.5s ease 0.6s;
}
@media (min-width: 1200px) {
  .articleItem-main .articleItem__image {
    min-width: 61%;
  }
}
.articleItem-main .articleItem__image.beforeanimate {
  opacity: 0;
  transform: translateY(100px);
}
.articleItem-main .articleItem__content {
  transition: all 0.5s ease 0.75s;
}
@media (min-width: 1200px) {
  .articleItem-main .articleItem__content {
    padding: 0 48px;
  }
}
.articleItem-main .articleItem__content.beforeanimate {
  opacity: 0;
  transform: translateY(100px);
}
@media (min-width: 768px) {
  .articleItem-main .articleItem__title {
    font-size: 32px;
    line-height: 40px;
    margin-top: 26px;
  }
}
@media (min-width: 1200px) {
  .articleItem-main .articleItem__title {
    font-size: 32px;
    line-height: 40px;
    max-width: 417px;
  }
}
@media (min-width: 768px) {
  .articleItem-main .articleItem__bottom {
    margin-top: 70px;
  }
}
@media (min-width: 1200px) {
  .articleItem-main .articleItem__bottom {
    margin-top: 25px;
    margin-bottom: 55px;
  }
}
@media (min-width: 1200px) {
  .articleItem-medium {
    margin-top: 88px;
  }
}
@media (min-width: 1200px) {
  .articleItem-medium .articleItem__title {
    font-size: 24px;
    line-height: 32px;
    margin-top: 21px;
  }
}
@media (min-width: 1200px) {
  .articleItem-medium .articleItem__bottom {
    margin-top: 19px;
  }
}
@media (min-width: 1200px) {
  .articleItem-large .articleItem__title {
    font-size: 32px;
    line-height: 40px;
    margin-top: 26px;
  }
}
@media (min-width: 1200px) {
  .articleItem-large .articleItem__bottom {
    margin-top: 30px;
  }
}
.articleItem__image {
  position: relative;
  display: block;
}
.articleItem__image-play::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/play.svg) no-repeat center center/46px 32px;
  z-index: 12;
}
@media (min-width: 768px) {
  .articleItem__image-play::before {
    background-size: 90px 63px;
  }
}
.articleItem__image:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 80%;
  left: 10%;
  box-shadow: 0px 10px 65px #798695;
  border-radius: 38px;
  height: 50%;
  z-index: 1;
}
.articleItem__image img {
  display: block;
  width: 100%;
  border-radius: 12px;
  position: relative;
  z-index: 2;
}
.articleItem__title {
  font-size: 18px;
  line-height: 26px;
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  margin-top: 15px;
  display: block;
}
@media (min-width: 768px) {
  .articleItem__title {
    font-size: 24px;
    line-height: 32px;
    margin-top: 22px;
  }
}
@media (min-width: 1200px) {
  .articleItem__title {
    font-size: 18px;
    line-height: 26px;
    margin-top: 17px;
  }
}
.articleItem__bottom {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: space-between;
  -moz-box-pack: space-between;
  -ms-flex-pack: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 13px;
}
@media (min-width: 768px) {
  .articleItem__bottom {
    margin-top: 19px;
  }
}
@media (min-width: 1200px) {
  .articleItem__bottom {
    margin-top: 13px;
  }
}
.articleItem__date {
  font-size: 14px;
  line-height: 20px;
}
.articleItem__categories {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.articleItem__categories a {
  margin-right: 10px;
  height: 28px;
  padding: 0 8px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: #ECEFF1;
  border-radius: 16px;
  color: #7E8595;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
}
.articleItem__categories a:last-child {
  margin-right: 0;
}
.knowMore {
  border-top: 1px solid #E0E5E8;
  margin: 43px -15px 0;
  padding: 80px 15px 56px;
  background: url(../images/know-more.png) no-repeat -38px 10px/210px auto;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .knowMore {
    background: url(../images/know-more@2x.png) no-repeat -38px 10px/210px auto;
  }
}
@media (min-width: 768px) {
  .knowMore {
    background-size: 346px auto;
    background-position: -36px -21px;
    margin: 78px -30px 0;
    padding: 80px 30px 116px;
  }
}
@media (min-width: 1200px) {
  .knowMore {
    background-size: 346px auto;
    background-position: 1px -39px;
    margin: 79px 0 0;
    padding: 77px 62px 103px 112px;
    border-top: none;
  }
}
.knowMore__title {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .knowMore__title {
    font-size: 40px;
    line-height: 54px;
  }
}
@media (min-width: 768px) {
  .knowMore .filters {
    margin-top: 29px;
  }
}
@media (min-width: 1200px) {
  .knowMore .filters {
    max-width: 100%;
  }
}

.footer {
  padding: 90px 0 30px;
  background: #F4F8FD;
  position: relative;
  z-index: 4;
  margin-top: -40px;
}
@media (min-width: 768px) {
  .footer {
    padding: 64px 0 20px;
  }
}
@media (min-width: 1200px) {
  .footer {
    padding: 69px 0 24px;
  }
}
.footer__social {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.footer__social a {
  margin: 0 16px;
}
.footer__social a:last-child {
  margin-right: 0;
}
.footer__copyrights {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #A5A9B4;
  margin-top: 46px;
}
@media (min-width: 768px) {
  .footer__copyrights {
    margin-top: 0;
  }
}

/*# sourceMappingURL=style.css.map */
