.app-header {
  font-family: "LatoWeb";
  font-weight: normal;
  height: 72px;
  padding: 0 26px 0 29px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
@media (min-width: 992px) {
  .app-header {
    height: 92px;
    padding: 0;
  }
}
.app-header__content {
  max-width: 1530px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .app-header__content {
    width: 80%;
  }
}
.app-header__logo {
  height: 21px;
}
@media (min-width: 992px) {
  .app-header__logo {
    height: 29px;
  }
}
.app-header__link, .app-header__button {
  text-transform: uppercase;
  font-size: 15px;
}
.app-header__link {
  font-size: 15px;
  line-height: 18px;
  margin-right: 60px;
  color: #ffffff;
}
.app-header__link:hover {
  color: #ffffff;
}
.app-header__link--orange {
  color: #FF7051;
}
.app-header__link--orange:hover {
  color: #FF7051;
}
.app-header__link:last-child {
  margin-right: 43px;
}
.app-header__button {
  color: #ffffff;
  height: 39px;
  width: 111px;
  background-color: #FF7354;
  box-shadow: 0 2px 4px 0 rgba(167, 95, 95, 0.09);
  border: none;
  outline: none;
}
.app-header__menu {
  width: 24px;
  cursor: pointer;
}

.app-header--dark .app-header {
  font-family: "LatoWebMedium";
  font-weight: normal;
  background: #FCFCFC;
}
@media (min-width: 992px) {
  .app-header--dark .app-header {
    height: 75px;
  }
}
.app-header--dark .app-header__link {
  color: rgba(0, 0, 0, 0.6);
}

.dark-background {
  background-color: #212121;
}

.nav-mobile {
  width: 266px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 2px 11px rgba(0, 0, 0, 0.5);
  background-color: #ffffff;
  z-index: 999;
  transition: all 0.3s;
  display: grid;
  grid-template-rows: minmax(40px, 87px) auto 157px;
}
.nav-mobile.is-hidden {
  left: -200%;
}
.nav-mobile__content {
  padding-left: 43px;
}
.nav-mobile__links-list {
  margin-top: 30px;
  list-style-type: none;
  padding: 0;
}
.nav-mobile__item {
  margin-bottom: 24px;
  display: block;
}
.nav-mobile__link {
  font-family: "LatoWebMedium";
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  color: rgba(55, 55, 55, 0.3) !important;
}
.nav-mobile__link:hover {
  text-decoration: none;
  opacity: 1;
}
.nav-mobile__link:active, .nav-mobile__link:focus {
  color: #373737;
}
.nav-mobile__link.is-active {
  color: #373737;
}
.nav-mobile__close {
  background: none;
  border: none;
  position: absolute;
  top: 18px;
  left: 29px;
  opacity: 0.4;
}
.nav-mobile__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
}

.nav-mobile-auth {
  height: 1px;
  width: 198px;
  border-top: 1px solid rgba(151, 151, 151, 0.3);
  margin-left: 25px;
  padding: 18px 0 0 23px;
}
.nav-mobile-auth .nav-mobile__link {
  margin-bottom: 24px;
}

.nav-mobile-profile {
  color: #292C2F;
}
.nav-mobile-profile__avatar-wrapper {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin-left: 19px;
  overflow: hidden;
}
.nav-mobile-profile__avatar {
  width: 100%;
  height: 100%;
}
.nav-mobile-profile__content {
  margin-top: 35px;
}
.nav-mobile-profile__name {
  font-family: "LatoWebBlack";
  font-weight: normal;
  font-size: 25px;
  line-height: 30px;
}
.nav-mobile-profile__plan {
  font-family: "LatoWebBlack";
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  margin-top: 8px;
}
.nav-mobile-profile__signup-date {
  font-family: "LatoWeb";
  font-weight: normal;
  font-size: 13px;
  line-height: 16px;
}

.nav-dashboard {
  width: 266px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 2px 11px rgba(0, 0, 0, 0.5);
  background-color: #ffffff;
  z-index: 999;
  transition: left 0.3s;
}
.nav-dashboard.hidden {
  left: -200%;
}
.nav-dashboard__links {
  margin-top: 30px;
  padding-left: 42px;
  list-style-type: none;
}
.nav-dashboard__links li {
  margin-bottom: 23px;
  display: block;
}
.nav-dashboard__links a {
  font-family: "LatoWebMedium";
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  color: #373737;
  opacity: 0.3;
}
.nav-dashboard__links a:hover {
  text-decoration: none;
  opacity: 1;
}
.nav-dashboard__links a.active {
  opacity: 1;
}
.nav-dashboard__close {
  background: none;
  border: none;
  position: absolute;
  top: 17px;
  left: 27px;
  opacity: 0.4;
}
.nav-dashboard__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
}
.nav-dashboard__profile {
  margin-top: 87px;
  margin-right: 10px;
  text-align: center;
}
.nav-dashboard__profile img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.nav-dashboard__user-data {
  padding-left: 43px;
}
.nav-dashboard__user-name {
  font-family: "LatoWebBlack";
  font-weight: normal;
  font-size: 25px;
  margin-top: 36px;
  margin-bottom: 0;
  color: #000000;
  line-height: 30px;
}
.nav-dashboard__plan {
  font-family: "LatoWebBlack";
  font-weight: normal;
  font-size: 19px;
  margin-top: 11px;
  margin-bottom: 0;
  color: #000000;
  line-height: 22px;
}
.nav-dashboard__join-date {
  font-family: "LatoWeb";
  font-weight: normal;
  font-size: 13px;
  margin-top: 6px;
  margin-bottom: 0;
  color: #000000;
  line-height: 16px;
}
.nav-dashboard hr {
  margin-top: 46px;
  margin-bottom: 25px;
  margin-left: -17px;
  width: 198px;
  border-top: 1px solid #979797;
  opacity: 0.3;
}

.partners_links a {
  color: #000000;
  font-size: 15px;
}
.partners_links a:hover {
  border-bottom: 2px solid #FF7354;
}

.dropdown-item:hover {
  border-bottom: 2px solid #FF7354 !important;
}

.partners_links:hover {
  display: block;
}

.partners_links a:hover {
  text-decoration: none;
}

.partners_link:hover + .partners_links {
  display: block;
}

ul, p, h1, li {
  padding: 0;
  margin: 0;
}

.app-header {
  background-color: transparent;
}
@media (min-width: 768px) {
  .app-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.46);
  }
}

#press-lpmain {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  overflow: hidden;
}
@media (min-width: 768px) {
  #press-lpmain {
    background-image: url("/assets/images/scenes/press/hero_post.jpg");
    max-height: 412px;
    height: 412px;
  }
}
@media (max-width: 576px) {
  #press-lpmain {
    background-image: url("/assets/images/scenes/press/hero_post.jpg");
    max-height: 180px;
    height: 180px;
  }
}

#press_post {
  background-color: white;
  padding-bottom: 101px;
  overflow-wrap: break-word;
}
@media (max-width: 576px) {
  #press_post {
    padding-bottom: 75px;
  }
}
#press_post .grey-container {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 940px;
  background-color: #F9F9F9;
  padding: 65px 140px 71px 160px;
  position: relative;
}
@media (min-width: 768px) {
  #press_post .grey-container {
    margin-top: -110px;
  }
}
@media (max-width: 576px) {
  #press_post .grey-container {
    padding: 42px 20px 75px 20px;
  }
}
#press_post .title {
  color: #000000;
  font-family: "Lato", sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 34px;
  margin-bottom: 15px;
}
#press_post .date {
  color: #A6A6A6;
  font-family: "Karla", sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 25.26px;
  margin-bottom: 50px;
}
#press_post .post-content {
  margin-bottom: 34px;
}
@media (max-width: 576px) {
  #press_post .post-content {
    margin-bottom: 40px;
  }
}
#press_post .post-content p, #press_post .post-content b, #press_post .post-content strong {
  margin-bottom: 15px;
}
#press_post .post-content p {
  color: #000000;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 34px;
}
@media (max-width: 576px) {
  #press_post .post-content p {
    font-size: 16px;
  }
}
#press_post .post-content b,  #press_post .post-content strong{
  color: #000000;
  font-weight: bold;
  font-family: "Karla", sans-serif;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 30px;
}
#press_post .share-container {
  border-top: 1px solid #E7E7E7;
  align-items: center;
  position: relative;
}
@media (min-width: 768px) {
  #press_post .share-container {
    border-bottom: 1px solid #E7E7E7;
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 576px) {
  #press_post .share-container {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media (max-width: 576px) {
  #press_post .share-container .border-xs {
    border-top: 1px solid #E7E7E7;
  }
}
#press_post .share-container .img-container {
  height: 89px;
  max-height: 89px;
  width: 184px;
  max-width: 184px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media (max-width: 576px) {
  #press_post .share-container .img-container {
    margin: 0 auto;
    display: block;
  }
}
#press_post .share-container p {
  color: #A6A6A6;
  font-family: "Karla", sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 25.26px;
}
@media (min-width: 768px) {
  #press_post .share-container p {
    margin-right: 17px;
  }
}
@media (max-width: 576px) {
  #press_post .share-container p {
    padding-top: 16px;
    padding-bottom: 10px;
  }
}
#press_post .share-container button {
  cursor: pointer;
  border: none;
  border-radius: 50%;
  height: 39px;
  width: 39px;
  background-color: #FF7354;
  text-align: center;
}