.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.disable-selection {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.disable-pointer-events {
  pointer-events: none;
}

.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-fill {
  flex: 1 1 auto;
}

.flex-grow-0 {
  flex-grow: 0;
}

.flex-grow-1 {
  flex-grow: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-shrink-1 {
  flex-shrink: 1;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

.align-items-center {
  align-items: center;
}

.align-items-baseline {
  align-items: baseline;
}

.align-items-stretch {
  align-items: stretch;
}

.align-content-start {
  align-content: flex-start;
}

.align-content-end {
  align-content: flex-end;
}

.align-content-center {
  align-content: center;
}

.align-content-between {
  align-content: space-between;
}

.align-content-around {
  align-content: space-around;
}

.align-content-stretch {
  align-content: stretch;
}

.align-self-auto {
  align-self: auto;
}

.align-self-start {
  align-self: flex-start;
}

.align-self-end {
  align-self: flex-end;
}

.align-self-center {
  align-self: center;
}

.align-self-baseline {
  align-self: baseline;
}

.align-self-stretch {
  align-self: stretch;
}

.flex-50 {
  flex: 1 1 50%;
  max-width: 50%;
  max-height: 100%;
}

.flex {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  box-sizing: border-box;
}

@media (max-width: 599px) {
  .layout-xs-column {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .mb-xs-20 {
    margin-bottom: 20px;
  }

  .mr-xs-0 {
    margin-right: 0;
  }

  .mb-xs-10 {
    margin-bottom: 10px;
  }
}
.relative {
  position: relative;
}

.height-full {
  height: 100%;
}

.width-full {
  width: 100%;
}

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

.nowrap {
  white-space: nowrap;
}

.no-decoration {
  text-decoration: none;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

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

body {
  background-color: white;
  margin: 0;
}

* {
  box-sizing: border-box;
}

p {
  line-height: 1.875;
  margin-top: 0.625em;
  margin-bottom: 0.625em;
}

img {
  height: auto;
}

html {
  font-family: "Open Sans", sans-serif;
  line-height: 1.3;
  color: #2F323C;
}

body {
  font-size: 16px;
  font-size: 1rem;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #337ab7;
  text-decoration: none;
  transition: color 0.1s linear;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
a:visited {
  color: #8140AF;
}
a:hover {
  color: #23527c;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.bold {
  font-weight: bold;
}

.uppercase {
  text-transform: uppercase;
}

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

.text_color_main {
  color: #2F323C;
}
.text_color_blue {
  color: #23B4FF;
}
.text_color_green {
  color: #4AC353;
}
.text_color_secondary {
  color: #A0A3AD;
}
.text_size_xs {
  font-size: 12px;
  font-size: 0.75rem;
}
.text_size_sm {
  font-size: 14px;
  font-size: 0.875rem;
}
.text_size_md {
  font-size: 16px;
  font-size: 1rem;
}
.text_size_lg {
  font-size: 18px;
  font-size: 1.125rem;
}
.text_size_xl {
  font-size: 20px;
  font-size: 1.25rem;
}

.mr-50 {
  margin-right: 50px;
}

.ml-50 {
  margin-left: 50px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.pr-50 {
  padding-right: 50px;
}

.pl-50 {
  padding-left: 50px;
}

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.mr-45 {
  margin-right: 45px;
}

.ml-45 {
  margin-left: 45px;
}

.mt-45 {
  margin-top: 45px;
}

.mb-45 {
  margin-bottom: 45px;
}

.pr-45 {
  padding-right: 45px;
}

.pl-45 {
  padding-left: 45px;
}

.pt-45 {
  padding-top: 45px;
}

.pb-45 {
  padding-bottom: 45px;
}

.mr-40 {
  margin-right: 40px;
}

.ml-40 {
  margin-left: 40px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.pr-40 {
  padding-right: 40px;
}

.pl-40 {
  padding-left: 40px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.mr-35 {
  margin-right: 35px;
}

.ml-35 {
  margin-left: 35px;
}

.mt-35 {
  margin-top: 35px;
}

.mb-35 {
  margin-bottom: 35px;
}

.pr-35 {
  padding-right: 35px;
}

.pl-35 {
  padding-left: 35px;
}

.pt-35 {
  padding-top: 35px;
}

.pb-35 {
  padding-bottom: 35px;
}

.mr-30 {
  margin-right: 30px;
}

.ml-30 {
  margin-left: 30px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.pr-30 {
  padding-right: 30px;
}

.pl-30 {
  padding-left: 30px;
}

.pt-30 {
  padding-top: 30px;
}

.pb-30 {
  padding-bottom: 30px;
}

.mr-25 {
  margin-right: 25px;
}

.ml-25 {
  margin-left: 25px;
}

.mt-25 {
  margin-top: 25px;
}

.mb-25 {
  margin-bottom: 25px;
}

.pr-25 {
  padding-right: 25px;
}

.pl-25 {
  padding-left: 25px;
}

.pt-25 {
  padding-top: 25px;
}

.pb-25 {
  padding-bottom: 25px;
}

.mr-20 {
  margin-right: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.mr-15 {
  margin-right: 15px;
}

.ml-15 {
  margin-left: 15px;
}

.mt-15 {
  margin-top: 15px;
}

.mb-15 {
  margin-bottom: 15px;
}

.pr-15 {
  padding-right: 15px;
}

.pl-15 {
  padding-left: 15px;
}

.pt-15 {
  padding-top: 15px;
}

.pb-15 {
  padding-bottom: 15px;
}

.mr-10 {
  margin-right: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.pr-10 {
  padding-right: 10px;
}

.pl-10 {
  padding-left: 10px;
}

.pt-10 {
  padding-top: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}

.mr-5 {
  margin-right: 5px;
}

.ml-5 {
  margin-left: 5px;
}

.mt-5 {
  margin-top: 5px;
}

.mb-5 {
  margin-bottom: 5px;
}

.pr-5 {
  padding-right: 5px;
}

.pl-5 {
  padding-left: 5px;
}

.pt-5 {
  padding-top: 5px;
}

.pb-5 {
  padding-bottom: 5px;
}

.mr-0 {
  margin-right: 0px;
}

.ml-0 {
  margin-left: 0px;
}

.mt-0 {
  margin-top: 0px;
}

.mb-0 {
  margin-bottom: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.pl-0 {
  padding-left: 0px;
}

.pt-0 {
  padding-top: 0px;
}

.pb-0 {
  padding-bottom: 0px;
}

.no-margin {
  margin: 0 !important;
}
.no-margin-top {
  margin-top: 0 !important;
}
.no-margin-right {
  margin-right: 0 !important;
}
.no-margin-bottom {
  margin-bottom: 0 !important;
}
.no-margin-left {
  margin-left: 0 !important;
}

.footer {
  font-family: Arial, sans-serif;
  background-color: #2A3249;
  color: #828A9C;
  font-size: 12px;
  line-height: 1.6666;
}
.footer p {
  font-size: 12px;
  line-height: 1.6666;
}
.footer__btn {
  font-size: 12px;
  height: 40px;
  text-transform: uppercase;
  border: 1px solid #41485C;
  text-decoration: none !important;
  font-weight: bold;
  border-radius: 20px;
  transition: all 0.2s ease;
  width: 180px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.footer__btn:link, .footer__btn:visited {
  color: white;
}
.footer__btn:hover {
  color: #343a4f;
  border-color: white;
  background-color: white;
}
.footer__column {
  width: 25%;
  padding-right: 60px;
}
@media screen and (max-width: 1023px) {
  .footer__column {
    width: 100%;
    margin-bottom: 60px;
  }
}
.footer__column-nav {
  width: 75%;
  column-count: 3;
  column-gap: 40px;
}
@media screen and (max-width: 1023px) {
  .footer__column-nav {
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .footer__column-nav {
    column-count: 2;
  }
}
.footer .footer-nav-container {
  page-break-inside: avoid;
  break-inside: avoid;
}
.footer .footer-nav-container > * {
  display: inline-block;
  width: 100%;
}
.footer__main-container {
  padding: 110px 40px 85px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: content-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1180px;
  flex-wrap: nowrap;
}
@media screen and (max-width: 1023px) {
  .footer__main-container {
    padding-top: 60px;
    padding-bottom: 50px;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 599px) {
  .footer__main-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.footer__bottom-container {
  padding: 0 40px 100px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: content-box;
  max-width: 1180px;
  display: grid;
  grid-template-columns: 110px 0 1fr 305px;
  gap: 15px;
  justify-items: start;
  align-items: center;
  max-width: 1180px;
}
@media screen and (max-width: 1023px) {
  .footer__bottom-container {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .footer__bottom-container {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 599px) {
  .footer__copyright {
    margin-bottom: 40px;
  }
}
.footer-nav {
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0;
}
.footer-nav__item {
  margin-bottom: 8px;
}
.footer-nav__item a {
  color: #828A9C;
  text-decoration: none !important;
  transition: color 0.15s ease;
}
.footer-nav__item a:hover {
  color: white;
}
.footer__title {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
}
.footer__title a {
  color: #fff;
  text-decoration: none !important;
  transition: color 0.15s ease;
}
.footer__title a:hover {
  color: #e3d9eb;
}
.footer p {
  text-align: left !important;
}
.footer .social-icon {
  width: 49px;
  height: 49px;
  display: inline-block;
  background: url("../images/social-icons/sprite.png");
}
.footer .social-icon_instagram {
  background-position: -100px 0;
}
.footer .social-icon_instagram:hover, .footer .social-icon_instagram-color {
  background-position: -100px -49px;
}
.footer .social-icon_facebook {
  background-position: -49px 0;
}
.footer .social-icon_facebook:hover, .footer .social-icon_facebook-color {
  background-position: -49px -49px;
}
.footer .social-icon_linkedin {
  background-position: -199px 0;
}
.footer .social-icon_linkedin:hover, .footer .social-icon_linkedin-color {
  background-position: -199px -49px;
}
.footer .social-icon_twitter {
  background-position: 0 0;
}
.footer .social-icon_twitter:hover, .footer .social-icon_twitter-color {
  background-position: 0 -49px;
}
.footer .social-icon_youtube {
  background-position: -150px 0;
}
.footer .social-icon_youtube:hover, .footer .social-icon_youtube-color {
  background-position: -150px -49px;
}
.footer .social-list {
  list-style: none;
  display: flex;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.footer .social-list > li:not(:last-child) {
  margin-right: 15px;
}

.language {
  position: relative;
  display: block;
}
.language__current {
  display: block;
}
.language__btn {
  display: flex;
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  gap: 13px;
  padding: 10px 4px;
  transition: 200ms;
}
.language__btn:hover {
  background: rgba(255, 255, 255, 0.06);
}
.language__btn span {
  color: #FFF;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.02px;
  line-height: 20px;
}
.language__btn span a {
  text-decoration: underline;
  color: #FFF;
}
.language__btn span a:visited:not(.no-visited) {
  color: #A64BA6;
}
.language__btn span a:hover {
  text-decoration: none;
}
.language__icon {
  --size: 20px;
  width: var(--size);
  height: var(--size);
  display: block;
}
.language .arrow {
  --size: 10px;
  width: var(--size);
  height: var(--size);
  fill: rgba(255, 255, 255, 0.48);
  transition: 200ms;
}
.language-list {
  position: absolute;
  top: -210px;
  display: block;
  transition: 200ms;
  width: 200px;
  background: #fff;
  border: 0;
  border-radius: 4px;
  padding: 4px 0;
  max-height: 200px;
  overflow: auto;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-5px);
}
.language-list::-webkit-scrollbar {
  width: 5px;
  background-color: #D3D5DA;
}
.language-list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  width: 5px;
  background-color: #00A8FF;
  background-clip: padding-box;
  overflow: hidden;
  box-sizing: border-box;
}
.language-list::-webkit-scrollbar-track {
  border-radius: 10px;
  overflow: hidden;
  background-color: #D3D5DA;
}
.language__link {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  gap: 8px;
  text-decoration: none !important;
  transition: 200ms;
}
.language__link:hover {
  background: rgba(10, 20, 51, 0.03);
}
.language__link span {
  color: #12141A;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.02px;
  line-height: 20px;
}
.language__link span a {
  text-decoration: underline;
  color: #12141A;
}
.language__link span a:visited:not(.no-visited) {
  color: #A64BA6;
}
.language__link span a:hover {
  text-decoration: none;
}
.language .--active {
  background: #D9F2FF;
}

.language__current .--is-active .arrow {
  transform: rotate(180deg);
}

.--is-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.g_main-container {
  max-width: 1100px;
  box-sizing: content-box;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
}

.view-mobile {
  display: none !important;
}

@media screen and (max-width: 1023px) {
  .view-desktop {
    display: none !important;
  }

  .view-mobile {
    display: flex !important;
  }
}
.header {
  box-shadow: 0 2px 6px rgba(166, 175, 193, 0.5);
  position: relative;
  z-index: 40;
}
.header-container {
  height: 90px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
.header-inner-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.header-nav-mobile-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
}

.nav-mobile__button {
  background: none;
  border: none;
  color: #C4C4C4;
  padding: 0;
  outline: none;
  cursor: pointer;
}
.nav-mobile__burger {
  border: none;
  width: 28px;
  height: 3px;
  background-color: #c4c4c4;
  display: inline-block;
  position: relative;
}
.nav-mobile__burger::after, .nav-mobile__burger::before {
  content: "";
  background-color: #c4c4c4;
  width: 28px;
  height: 3px;
  display: inline-block;
  position: absolute;
  left: 0;
}
.nav-mobile__burger::after {
  top: -7px;
}
.nav-mobile__burger::before {
  top: 7px;
}
.nav-mobile__container {
  font-size: 20px;
  font-size: 1.25rem;
  display: none;
  position: fixed;
  z-index: 9999;
  top: 20px;
  right: 20px;
  left: 20px;
  background-color: #ffffff;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  padding: 10px 0 30px;
}
.nav-mobile__container ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-mobile__container li {
  display: flex;
  flex-direction: row;
  justify-content: start;
  margin-top: 15px;
  margin-bottom: 15px;
}
.nav-mobile__container li > a {
  display: block;
  padding: 2px 30px;
  color: #2F323C !important;
  text-decoration: none !important;
  position: relative;
}
.nav-mobile__container li > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
}
.nav-mobile__container li > a.active {
  font-weight: 600;
}
.nav-mobile__container li > a.active::before {
  background-color: #23B4FF;
}
.nav-mobile.open .nav-mobile__container {
  display: block;
}

.view-desktop .nav-main {
  font-size: 14px;
  font-size: 0.875rem;
  list-style: none;
  display: flex;
  align-items: stretch;
  margin: 0 0 0 45px;
  padding: 0;
  height: 100%;
}
.view-desktop .nav-main__item {
  padding: 0 15px;
  display: flex;
  align-items: stretch;
}
.view-desktop .nav-main__link {
  text-decoration: none !important;
  color: #2F323C !important;
  display: flex;
  align-items: center;
  position: relative;
}
.view-desktop .nav-main__link::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 3px;
  background-color: transparent;
  left: -3px;
  right: -3px;
  transition: background-color 0.1s linear;
}
.view-desktop .nav-main__link:hover::before {
  background-color: #EAEAEA;
}
.view-desktop .nav-main__link.active {
  font-weight: 600;
}
.view-desktop .nav-main__link.active::before {
  background-color: #23B4FF;
}

.view-desktop .nav-profile {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-size: 0.875rem;
}
.view-desktop .nav-profile__link {
  text-decoration: none;
  color: #2F323C !important;
}
.view-desktop .nav-profile__link:hover {
  text-decoration: underline;
}

.nav-categories {
  border-top: 1px solid #EAEAEA;
  height: 50px;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-size: 0.75rem;
  /**
   * Styles for the required tag DIV inside A to prevent
   * cutting words by translator from tag A
   */
}
@media screen and (max-width: 800px) {
  .nav-categories {
    display: none;
  }
}
.nav-categories__item {
  margin-right: 9px;
}
.nav-categories__link {
  text-decoration: none !important;
  color: #2F323C !important;
  height: 1.25rem;
  background-color: transparent;
  display: flex;
  align-items: center;
  padding-left: 0.375rem;
  padding-right: 0.375rem;
  border-radius: 3px;
  transition: background-color 0.1s linear;
}
.nav-categories__link:hover {
  background-color: #F0F0F0;
}
.nav-categories__wrapper {
  display: inline;
}
.nav-categories__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex !important;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
}
.nav-categories__next, .nav-categories__prev {
  cursor: pointer;
  padding: 0 9px;
  background-color: transparent;
  border: none;
  outline: none !important;
}
.nav-categories__next::before, .nav-categories__prev::before {
  content: "";
  width: 7px;
  height: 7px;
  border-color: #2F323C;
  border-style: solid;
  border-width: 2px 2px 0 0;
  display: block;
  transition: opacity 0.15s ease;
  opacity: 1;
}
.nav-categories__next:hover::before, .nav-categories__prev:hover::before {
  opacity: 0.7;
}
.nav-categories__next::before {
  transform: rotate(45deg);
}
.nav-categories__prev::before {
  transform: rotate(-135deg);
}

.avatar {
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
}
.avatar_size_md {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
}
.avatar_size_lg {
  width: 78px;
  min-width: 78px;
  height: 78px;
  min-height: 78px;
}
.avatar_size_xl {
  width: 104px;
  min-width: 104px;
  height: 104px;
  min-height: 104px;
}
.avatar_bordered {
  border: 2px solid #ffffff;
  border: 2px solid #ffffff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
}
.avatar_bordered_bottom {
  border: 4px solid #ffffff;
}
.avatar_shadow {
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
}

.author-info {
  background-color: #F3F6FB;
  padding: 40px 0;
}
.author-info__title {
  font-size: 30px;
  font-size: 1.875rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  line-height: 1.366;
}
.author-info__social {
  position: relative;
  bottom: -3px;
  margin-left: 20px;
}

.btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: "Open Sans", sans-serif;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  border: none;
  font-weight: bold;
  opacity: 1;
  transition: all 0.1s linear;
  cursor: pointer;
}
.btn:hover {
  opacity: 0.8;
  text-decoration: none;
}
.btn_color_blue {
  background-color: #23B4FF;
  color: #ffffff !important;
  box-shadow: 0 3px 5px rgba(35,180,255, .5);
}
.btn_color_green {
  background-color: #4AC353;
  color: #ffffff !important;
  box-shadow: 0 3px 5px rgba(0,152,34, .35);
}
.btn_color_white {
  background-color: #ffffff;
  color: #2F323C !important;
  box-shadow: none;
}
.btn_color_pink {
  background-color: #FF5EA6;
  color: #ffffff !important;
  box-shadow: 0 3px 5px #004C91;
}
.btn_size_xs {
  font-size: 11px;
  font-size: 0.6875rem;
  height: 20px;
  line-height: 20px;
  border-radius: 10px;
  padding-left: 0px;
  padding-right: 0px;
}
@media screen and (max-width: 360px) {
  .btn_size_xs {
    height: auto;
  }
}
.btn_size_sm {
  font-size: 12px;
  font-size: 0.75rem;
  height: 30px;
  line-height: 30px;
  border-radius: 15px;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 360px) {
  .btn_size_sm {
    height: auto;
  }
}
.btn_size_md {
  font-size: 14px;
  font-size: 0.875rem;
  height: 35px;
  line-height: 35px;
  border-radius: 17.5px;
  padding-left: 0px;
  padding-right: 0px;
}
@media screen and (max-width: 360px) {
  .btn_size_md {
    height: auto;
  }
}
.btn_size_lg {
  font-size: 14px;
  font-size: 0.875rem;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 360px) {
  .btn_size_lg {
    height: auto;
  }
}
.btn_size_xl {
  font-size: 14px;
  font-size: 0.875rem;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  padding-left: 0px;
  padding-right: 0px;
}
@media screen and (max-width: 360px) {
  .btn_size_xl {
    height: auto;
  }
}
.btn_width_full {
  width: 100%;
}
.btn_no-shadow {
  box-shadow: none !important;
}

.text-input {
  font-size: 14px;
  font-size: 0.875rem;
  border: none;
  width: 100%;
  height: 2.857em;
  padding: 0 20px;
}
.text-input::placeholder {
  font-size: 14px;
  font-size: 0.875rem;
  color: #A0A3AD;
}
.text-input_b-radius {
  border-radius: 1.4285em;
}
.text-input_border {
  border: 1px solid #D4D9E3;
}

.form-group {
  position: relative;
}

.help-block {
  font-size: 11px;
  font-size: 0.6875rem;
  background: #F64034;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  color: #ffffff;
  padding: 5px 10px;
  opacity: 1;
  transition: opacity 0.1s linear;
  position: absolute;
  top: 100%;
  z-index: 2;
}
.help-block:empty {
  opacity: 0;
}
.help-block::before {
  content: "";
  width: 0;
  height: 0;
  border-color: transparent transparent #F64034 transparent;
  border-width: 0 7px 5px 7px;
  border-style: solid;
  position: absolute;
  left: 11px;
  top: -5px;
}

h1,
.h1-like {
  font-size: 50px;
  font-size: 3.125rem;
  font-family: "Open Sans", sans-serif;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: bold;
}
h1 a,
.h1-like a {
  color: #2F323C !important;
  text-decoration: underline !important;
}

h2,
.h2-like {
  font-size: 28px;
  font-size: 1.75rem;
  font-family: "Open Sans", sans-serif;
  line-height: 1.428;
  margin-top: 1.785em;
  margin-bottom: 0.714em;
  font-weight: bold;
}
h2 a,
.h2-like a {
  color: #2F323C !important;
  text-decoration: underline !important;
}

h3,
.h3-like {
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "Open Sans", sans-serif;
  line-height: 1.458;
  margin-top: 2.083em;
  margin-bottom: 0.8333em;
  font-weight: bold;
}
h3 a,
.h3-like a {
  color: #2F323C !important;
  text-decoration: underline !important;
}

h4,
.h4-like {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  margin-top: 2em;
  margin-bottom: 0.5em;
  font-weight: bold;
}
h4 a,
.h4-like a {
  color: #2F323C !important;
  text-decoration: underline !important;
}

.promo-card {
  border-radius: 5px;
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 180px 24px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  box-shadow: 0 1px 4px rgba(166, 175, 193, 0.48);
}
.promo-card_subscribe {
  background-image: url("../images/widgets/subscribe-main-big.webp");
  background-color: #691FCE;
}
.promo-card_try {
  background-image: url("../images/widgets/try-bg_x2.webp");
  background-color: #D5DAE1;
}
.promo-card__form {
  padding: 0 8px;
}
.promo-card__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.428;
  margin-bottom: 43px;
  text-align: center;
}
.promo-card_subscribe .promo-card__text {
  color: rgba(255, 255, 255, 0.6);
}
.promo-card_try .promo-card__text {
  color: rgba(26, 36, 60, 0.6);
}
.promo-card__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "Open Sans", sans-serif;
  text-align: center;
  font-weight: bold;
  margin-bottom: 32px;
}
.promo-card_subscribe .promo-card__title {
  color: #ffffff;
  margin-bottom: 20px;
}
.promo-card input[type=email],
.promo-card .btn {
  box-shadow: none;
}

.social-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  background: url("../images/social-icons/sprite.png");
  background-size: 124px 49px;
}
.social-icon_instagram {
  background-position: -50px 0;
}
.social-icon_instagram:hover, .social-icon_instagram-color {
  background-position: -50px -25px;
}
.social-icon_facebook {
  background-position: -25px 0;
}
.social-icon_facebook:hover, .social-icon_facebook-color {
  background-position: -25px -25px;
}
.social-icon_linkedin {
  background-position: -100px 0;
}
.social-icon_linkedin:hover, .social-icon_linkedin-color {
  background-position: -100px -25px;
}
.social-icon_twitter {
  background-position: 0 0;
}
.social-icon_twitter:hover, .social-icon_twitter-color {
  background-position: 0 -25px;
}
.social-icon_youtube {
  background-position: -75px 0;
}
.social-icon_youtube:hover, .social-icon_youtube-color {
  background-position: -75px -25px;
}

.social-list {
  list-style: none;
  display: flex;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.social-list > li:not(:last-child) {
  margin-right: 15px;
}

.splash-screen {
  position: relative;
  padding: 40px 0;
}
.splash-screen_old {
  background-color: #151130;
}
@media screen and (max-width: 768px) {
  .splash-screen_old {
    background-color: #ffffff;
  }
}
.splash-screen__top-img {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .splash-screen__top-img {
    display: none;
  }
}
@media screen and (min-width: 1921px) {
  .splash-screen__top-img {
    position: static;
    -ms-transform: none;
    transform: none;
  }
}
@media screen and (min-width: 3000px) {
  .splash-screen__top-img {
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
  }
}
@media screen and (min-width: 1921px) {
  .splash-screen__top-img img {
    width: 100%;
  }
}
@media screen and (min-width: 3000px) {
  .splash-screen__top-img img {
    width: auto;
  }
}
.splash-screen_main .splash-screen__top-img {
  right: 0;
  top: 0;
  left: 0;
  -ms-transform: none;
  transform: none;
}
@media screen and (max-width: 768px) {
  .splash-screen_main .splash-screen__top-img {
    display: block;
  }
}
@media screen and (min-width: 1921px) {
  .splash-screen_main .splash-screen__top-img img {
    width: auto;
  }
}
@media screen and (min-width: 3000px) {
  .splash-screen_main .splash-screen__top-img img {
    width: auto;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
  }
}
@media screen and (min-width: 3000px) {
  .splash-screen_main .splash-screen__top-img {
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
  }
}
.splash-screen__author {
  font-size: 14px;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  color: #A0A3AD;
  position: relative;
  z-index: 2;
}
.splash-screen__author a, .splash-screen__author b {
  color: #2F323C;
  text-decoration: none;
}
.splash-screen_old .splash-screen__author, .splash-screen_dark .splash-screen__author {
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .splash-screen_old .splash-screen__author, .splash-screen_dark .splash-screen__author {
    color: #2F323C;
  }
}
.splash-screen_old .splash-screen__author a, .splash-screen_old .splash-screen__author b, .splash-screen_dark .splash-screen__author a, .splash-screen_dark .splash-screen__author b {
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .splash-screen_old .splash-screen__author a, .splash-screen_old .splash-screen__author b, .splash-screen_dark .splash-screen__author a, .splash-screen_dark .splash-screen__author b {
    color: #2F323C;
  }
}
.splash-screen__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
  display: block;
  text-decoration: none;
  overflow: hidden;
}
.splash-screen__bg img {
  width: auto;
  height: auto;
}
@media screen and (min-width: 1921px) {
  .splash-screen__bg {
    display: flex;
    justify-content: center;
  }
}
.splash-screen_old .splash-screen__bg {
  opacity: 0.2;
}
@media screen and (max-width: 800px) {
  .splash-screen_main .splash-screen__bg {
    background-position: left center;
  }
}
@media screen and (min-width: 1921px) {
  .splash-screen_main .splash-screen__bg {
    display: flex;
    justify-content: flex-end;
  }
}
.splash-screen__underline {
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.1s linear;
  text-decoration: none !important;
}
.splash-screen__underline:hover {
  border-color: #23293A;
}
.splash-screen_dark .splash-screen__underline, .splash-screen_old .splash-screen__underline {
  color: #ffffff !important;
}
.splash-screen_dark .splash-screen__underline:hover, .splash-screen_old .splash-screen__underline:hover {
  border-color: #ffffff;
}
.splash-screen__inner {
  box-sizing: content-box;
  padding-left: 40px;
  padding-right: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.splash-screen__inner-main {
  width: 60%;
  padding-top: 40px;
  padding-bottom: 50px;
}
@media screen and (max-width: 800px) {
  .splash-screen__inner-main {
    width: auto;
  }
}
.splash-screen__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  text-decoration: none;
}
.splash-screen__tags {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 4;
  justify-content: center;
}
.splash-screen__tags a {
  margin-bottom: 5px;
}
.splash-screen_old .splash-screen__tags a:link, .splash-screen_old .splash-screen__tags a:visited, .splash-screen_dark .splash-screen__tags a:link, .splash-screen_dark .splash-screen__tags a:visited {
  background-color: rgba(255, 255, 255, 0.15);
}
.splash-screen_old .splash-screen__tags a:focus, .splash-screen_old .splash-screen__tags a:hover, .splash-screen_dark .splash-screen__tags a:focus, .splash-screen_dark .splash-screen__tags a:hover {
  background-color: #4AC353;
}
.splash-screen_main .splash-screen__tags {
  justify-content: flex-start;
  display: inline-block;
}
.splash-screen__title {
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1.1;
  color: #2F323C;
  margin-bottom: 40px;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 800px) {
  .splash-screen__title {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.splash-screen_old .splash-screen__title, .splash-screen_dark .splash-screen__title {
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .splash-screen_old .splash-screen__title, .splash-screen_dark .splash-screen__title {
    color: #2F323C;
  }
}
@media screen and (max-width: 768px) {
  .splash-screen_main.article-header_dark .splash-screen__title {
    color: #ffffff;
  }
}
@media screen and (max-width: 768px) {
  .splash-screen_main.article-header_dark .splash-screen__author {
    color: #ffffff;
  }
}
@media screen and (max-width: 768px) {
  .splash-screen_main.article-header_dark .splash-screen__author b {
    color: #ffffff;
  }
}

.tag,
.tags a {
  font-size: 11px;
  font-size: 0.6875rem;
  height: 1.818181em;
  line-height: 1.818181em;
  display: inline-block;
  border-radius: 3px;
  padding: 0 10px;
  font-weight: 600;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background-color 0.1s linear;
  background-color: #2F323C;
  color: #ffffff !important;
  margin-right: 5px;
}
.tag:last-child,
.tags a:last-child {
  margin-right: 0;
}
.tag:hover,
.tags a:hover {
  background-color: #4AC353;
}
@media screen and (max-width: 768px) {
  .tag,
.tags a {
    color: #2F323C !important;
    background-color: #ffffff;
  }
}

@media screen and (max-width: 768px) {
  .article-header_main .tag,
.article-header_main .tags a {
    background-color: #2F323C;
    color: #ffffff !important;
  }
}

.news-card {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 1px 4px rgba(166, 175, 193, 0.48);
  position: relative;
  padding-bottom: 77.6px;
  text-decoration: none;
  transition: box-shadow 0.15s linear, transform 0.15s linear;
}
.news-card:hover {
  box-shadow: 0 1px 20px rgba(166, 175, 193, 0.6);
  transform: translateY(-1px);
}
.news-card__author {
  font-weight: 600;
}
.news-card__body {
  padding: 30px 30px 0 30px;
}
.news-card__footer {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.3;
  padding: 22px 30px 40px 30px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  color: #2F323C;
}
.news-card__header {
  height: 170px;
  overflow: hidden;
  border-radius: 5px 5px 0 0;
}
.news-card__header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-card__title {
  color: #2F323C;
  font-size: 23px;
  font-size: 1.4375rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
.news-card:hover .news-card__title {
  text-decoration: underline;
}

.news-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 330px);
  grid-column-gap: 55px;
  grid-row-gap: 40px;
  justify-content: center;
}
@media screen and (max-width: 1180px) {
  .news-card-grid {
    grid-template-columns: repeat(2, 330px);
  }
}
@media screen and (max-width: 795px) {
  .news-card-grid {
    grid-template-columns: repeat(1, 330px);
  }
}

.news-card-more {
  width: 330px;
  font-weight: 600;
  font-size: 14px;
  font-size: 0.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  height: 50px;
  box-shadow: 0 1px 4px rgba(166, 175, 193, 0.48);
  text-decoration: none;
  color: #2F323C !important;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.1s linear;
}
.news-card-more:hover {
  text-decoration: none;
  opacity: 0.8;
}

.map-bg {
  background-image: url("/images/bg/map.png");
  background-position: top center;
  background-repeat: no-repeat;
}

.bg-gray-light {
  background-color: #f5f7fb;
}

.pt-80 {
  padding-top: 80px;
}

.pb-100 {
  padding-bottom: 100px;
}

.layout-align-center-center > * {
  max-width: 100%;
  box-sizing: border-box;
}

.layout-column {
  flex-direction: column;
}

.layout-row {
  flex-direction: row;
}

.container-fixed {
  max-width: 1100px;
  margin: 0 auto;
}

.text-gray {
  color: #7e818c;
}

@media (max-width: 1100px) {
  .container-fixed {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 599px) {
  .container-fixed {
    padding-left: 20px;
    padding-right: 20px;
  }
}

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