.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_press.jpg");
    height: 583px;
    max-height: 583px;
  }
}
@media (max-width: 576px) {
  #press-lpmain {
    background-image: url("/assets/images/scenes/press/press_xs.jpg");
    height: 400px;
    max-height: 400px;
  }
}
#press-lpmain .title {
  color: #FFFFFF;
  font-family: "Lato", sans-serif;
  font-size: 55px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 66px;
  margin-top: 159px;
}
#press-lpmain .title span {
  color: #D8D8D8;
}
@media (max-width: 576px) {
  #press-lpmain .title {
    font-size: 30px;
    line-height: 36px;
    margin-top: 121px;
  }
}
#press-lpmain .border-div {
  box-sizing: border-box;
  height: 1px;
  width: 356px;
  border: 1px solid #FFFFFF;
  opacity: 0.52;
  margin-bottom: 49.5px;
  margin-top: 14.5px;
}
@media (max-width: 576px) {
  #press-lpmain .border-div {
    width: 100%;
    margin-bottom: 19.5px;
    margin-top: 8.5px;
  }
}
#press-lpmain .descr {
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: "Karla", sans-serif;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 3px;
  line-height: 40px;
  text-shadow: 0 2px 4px 0 rgba(167, 95, 95, 0.09);
  margin-bottom: 5px;
}
@media (max-width: 576px) {
  #press-lpmain .descr {
    font-size: 11px;
    letter-spacing: 2.06px;
    line-height: 28px;
    margin-bottom: 2px;
  }
}
#press-lpmain .descr_bold {
  color: #FFFFFF;
  font-family: "Lato", sans-serif;
  font-size: 28px;
  letter-spacing: 0;
  line-height: 42px;
  text-align: center;
  margin-bottom: 5px;
}
@media (max-width: 576px) {
  #press-lpmain .descr_bold {
    font-size: 19px;
    letter-spacing: 0;
    line-height: 29.4px;
  }
}
#press-lpmain p.descr_bold {
  font-weight: 100;
}

#press-main {
  background-color: white;
  position: relative;
}
#press-main .grey-container {
  background-color: #F9F9F9;
}
#press-main .links {
  padding-top: 109px;
  padding-bottom: 143px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media (min-width: 768px) {
  #press-main .links {
    max-width: 597px;
  }
}
@media (max-width: 576px) {
  #press-main .links {
    padding-top: 76px;
    padding-bottom: 88px;
    width: 253px;
    max-width: 253px;
  }
}
@media (max-width: 576px) {
  #press-main .links .link .text{
    display: inline-block!important;
    width: 220px!important;
  }
  #press-main .links .link .icon-left{
    display: inline-block!important;
    width: 24px!important;
    padding: 0 0 0 8px!important;
    margin-right: 16px;
  }
  #press-main .links .link {
    margin-bottom: 87px;
  }
}
#press-main .links i {
  height: 24px;
  width: 24px;
  font-size: 20px;
  padding-top: 8px;
}
#press-main .links h1 {
  color: #000000;
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 24px;
  margin-bottom: 10px;
}
#press-main .links p {
  color: #000000;
  font-family: "Karla", sans-serif;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 30px;
}
#press-main .links .orange {
  color: #FF6F72;
  text-transform: uppercase;
  font-family: "Karla", sans-serif;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 2.06px;
  line-height: 40px;
  text-shadow: 0 2px 4px 0 rgba(167, 95, 95, 0.09);
  cursor: pointer;
}
#press-main .links .orange img {
  width: 77px;
  margin-left: 20px;
}
#press-main .title_section {
  color: #2B2B2B;
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 24px;
}
#press-main .bold_border {
  height: 3px;
  width: 70px;
  background-color: #2B2B2B;
  margin-top: 14px;
}
#press-main .press-releases a {
  text-decoration: none;
}
#press-main .press-releases {
  max-width: 676px;
  text-align: center;
  margin: 0 auto;
  padding-top: 75px;
  padding-bottom: 110px;
  position: relative;
}
@media (max-width: 576px) {
  #press-main .press-releases {
    padding-top: 60px;
    padding-bottom: 60px;
    width: 253px;
    max-width: 253px;
  }
}
#press-main .press-releases .bold_border {
  margin-bottom: 60px;
}
#press-main .press-releases .press-release {
  max-width: 676px;
  margin-bottom: 40px;
  width: 100%;
  align-items: end;
}
@media (min-width: 768px) {
  #press-main .press-releases .press-release {
    display: flex;
    height: 121px;
  }
}
@media (max-width: 576px) {
  #press-main .press-releases .press-release {
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
#press-main .press-releases .press-release .container-xs {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  #press-main .press-releases .press-release .container-xs {
    width: 100%;
    max-width: 100%;
    padding-left: 8px;
  }
}
#press-main .press-releases .press-release .orange-border {
  height: 89px;
  width: 4px;
  border-radius: 3.5px;
  background-color: #FF7354;
  margin-right: 15px;
}
@media (max-width: 576px) {
  #press-main .press-releases .press-release .orange-border {
    display: inline-block;
  }
}
#press-main .press-releases .press-release .container-txt {
  height: 121px;
  max-height: 121px;
  position: relative;
}
@media (max-width: 576px) {
  #press-main .press-releases .press-release .container-txt {
    height: auto;
    max-height: none;
  }
}
#press-main .press-releases .press-release .press-img {
  height: 84px;
  max-height: 84px;
  overflow: hidden;
  width: 218px;
  background-color: #FFFFFF;
  box-shadow: 0 1px 29px 0 rgba(192, 192, 192, 0.32);
  margin-right: 41px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 576px) {
  #press-main .press-releases .press-release .press-img {
    display: inline-block;
    margin-right: 0;
  }
}
#press-main .press-releases .press-release h1 {
  color: #2B2B2B;
  font-family: "Karla", sans-serif;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0;
  text-align: left;
  line-height: 25.26px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  #press-main .press-releases .press-release h1 {
    max-width: 309px;
  }
}
@media (max-width: 576px) {
  #press-main .press-releases .press-release h1 {
    margin-top: 25px;
    margin-bottom: 20px;
    padding-left: 8px;
  }
}
#press-main .press-releases .press-release .date {
  color: #A6A6A6;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 25.26px;
  text-align: left;
  position: absolute;
  bottom: 0;
}
@media (max-width: 576px) {
  #press-main .press-releases .press-release .date {
    position: relative;
  }
}
#press-main .press-releases .navigation {
  margin-top: 70px;
}
@media (max-width: 576px) {
  #press-main .press-releases .navigation {
    margin-top: 60px;
  }
}
#press-main .press-releases .navigation .arrow:first-child {
  margin-right: 20px;
}
#press-main .press-releases .navigation .arrow {
  border-radius: 50%;
  height: 26px;
  width: 26px;
  background-color: #E4E4E4;
  color: white;
  display: inline-block;
  text-align: center;
}
#press-main #brand-assets {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 153px;
  display: block;
  margin: 0 auto;
  max-width: 1052px;
}
@media (max-width: 576px) {
  #press-main #brand-assets {
    padding-top: 49px;
    padding-bottom: 68px;
  }
}
@media (max-width: 576px) {
  #press-main #brand-assets .bold_border {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  #press-main #brand-assets .brand_asset {
    margin-bottom: 40px;
  }
}
#press-main #brand-assets .description {
  color: #2B2B2B;
  font-family: "Karla", sans-serif;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 25.26px;
  text-align: center;
  margin-top: 25px;
  margin-bottom: 65px;
  padding-left: 35%;
  padding-right: 35%;
}
#press-main #brand-assets .white-container {
  background-color: #FFFFFF;
}
#press-main #brand-assets .orange-container {
  background-color: #FF7354;
}
#press-main #brand-assets .brand-img img{
  max-height: 42px;
  max-width: 134px;
}
#press-main #brand-assets .brand-img {
  height: 178px;
  width: 276px;
  margin: 0 auto;
  box-shadow: 0 1px 29px 0 rgba(192, 192, 192, 0.32);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  #press-main #brand-assets .row {
    margin-bottom: 65px;
  }
}
#press-main #brand-assets .file_title {
  color: #2B2B2B;
  font-family: "Karla", sans-serif;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 25.26px;
  text-transform: uppercase;
  margin-top: 24px;
  margin-bottom: 10px;
}
#press-main #brand-assets .download_btn {
  color: #FFFFFF;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 17px;
  text-transform: uppercase;
  cursor: pointer;
  height: 39.24px;
  width: 111px;
  background-color: #FF7354;
  box-shadow: 0 2px 4px 0 rgba(167, 95, 95, 0.09);
  padding: 11px 12px 11.2px 13px;
  border: none;
}
#press-main .orange_text {
  color: #FF6F72;
  font-family: "Karla", sans-serif;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 3px;
  line-height: 40px;
  text-shadow: 0 2px 4px 0 rgba(167, 95, 95, 0.09);
  margin-top: 60px;
  margin-bottom: 29px;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  #press-main .orange_text {
    margin-top: 46px;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2.06px;
  }
}
#press-main .bottom_title {
  color: #222222;
  font-family: "Lato", sans-serif;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 22px;
  padding-bottom: 99px;
}
@media (max-width: 576px) {
  #press-main .bottom_title {
    font-size: 20px;
    line-height: 33px;
  }
}