/* override container styles  */
.container.v-landing-page-container {
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}

/* hide some elements from default template  */
.share-block .share-caption,
.share-block .social-likes,
.page-header h1 {
  display: none;
}

/* common */
.nowrap {
  white-space: nowrap;
}

/* general page styles */
.s-landing-page {
  font-family: Gotham, Proxima Nova, Roboto, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1;
  padding-bottom: 128px;
  color: #222b45;
  background-color: #fff;
}

/* inner element */
.el-inner {
  position: relative;
  width: 100%;
  max-width: 1316px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding-top: 32px;
  padding-bottom: 32px;
}

/* subtitle element  */
.el-subtitle {
  font-size: 32px;
  line-height: 1.125;
  font-weight: 500;
  text-align: center;
  margin: 0;
  padding: 0;
}

.el-subtitle.v-spaced {
  margin-bottom: 28px;
}

/* text-group element */
.el-text-group > .lp-title {
  font-size: 56px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.el-text-group > .lp-subtitle {
  padding-top: 20px;
  font-size: 32px;
  line-height: 1.125;
}

.el-text-group > .lp-text {
  padding-top: 24px;
}

.el-text-group > .lp-text p {
  margin: 6px 0;
  padding: 0;
  font-size: 20px;
  line-height: 1.4;
}

.el-text-group > .lp-text ul {
  display: block;
  margin: 0;
  padding: 0;
  padding-top: 8px;
}

.el-text-group > .lp-text ul li {
  display: block;
  position: relative;
  padding: 4px 0 0 18px;
  margin: 0;
  font-size: 20px;
  line-height: 1.24;
}

.el-text-group > .lp-text ul li:before {
  display: block;
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 0;
  top: 14px;
  background-color: #e10054;
}

.el-text-group.v-center {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.el-text-group.v-spaced {
  margin-bottom: 40px;
}

.el-text-group.v-promo > .lp-title {
  display: inline-block;
  position: relative;
  max-width: 480px;
}

.el-text-group.v-promo > .lp-title:before,
.el-text-group.v-promo > .lp-title:after {
  display: block;
  position: absolute;
  content: '';
  width: 32px;
  height: 32px;
  border-color: #222b45;
  border-style: solid;
  border-width: 0;
}

.el-text-group.v-promo > .lp-title:before {
  left: -32px;
  top: -24px;
  border-left-width: 8px;
  border-top-width: 8px;
}

.el-text-group.v-promo > .lp-title:after {
  right: -24px;
  bottom: -16px;
  border-right-width: 8px;
  border-bottom-width: 8px;
}

.el-text-group.v-promo > .lp-title span {
  color: #e10054;
}

.el-text-group.v-promo > .lp-text {
  padding-top: 28px;
}

.el-text-group.v-promo > .lp-text p {
  font-size: 22px;
  line-height: 1.4;
}

/* links-list element */
.el-links-list {
  display: flex;
  flex-wrap: wrap;
}

.el-links-list > .lp-link {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  border-radius: 16px;
  border: 1px solid rgba(166, 193, 255, .16);
  text-decoration: none;
  padding: 12px 16px;
  background-image: linear-gradient(
    to bottom,
    rgba(166, 193, 255, .48),
    rgba(166, 193, 255, .24)
  );
  transition: box-shadow .3s;
}

.el-links-list > .lp-link:hover {
  box-shadow: 0 8px 12px rgba(166, 193, 255, .64);
}

.el-links-list > .lp-link > .lp-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, .64)
  );
  transition: transform .3S;
}

.el-links-list > .lp-link:hover > .lp-icon {
  transform: rotate(-15deg);
}

.el-links-list > .lp-link > .lp-icon img {
  display: block;
}

.el-links-list > .lp-link:not(:last-child) {
  margin-right: 16px;
}

.el-links-list > .lp-link > .lp-text {
  display: block;
  max-width: 176px;
  flex: 1;
  padding-left: 12px;
  font-size: 18px;
  line-height: 1;
}

/* button element */
a.el-button {
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  padding: 14px 20px;
  margin: 0;
  border-radius: 4px;
  outline: none;
  text-decoration: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  background-color: #222b45;
  transition: background-color .3s;
}

a.el-button:hover {
  background-color: #091c7a;
}

/* cards-list element */
.el-cards-list {
  display: flex;
  justify-content: center;
  margin-left: -16px;
  margin-right: -16px;
}

.el-cards-list > .lp-card {
  width: 100%;
  margin-left: 16px;
  margin-right: 16px;
  text-align: center;
}

.el-cards-list > .lp-card > .lp-image {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 20px;
}

.el-cards-list > .lp-card > .lp-image img {
  display: block;
  width: 100%;
  height: auto;
}

.el-cards-list > .lp-card > .lp-name {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 16px;
}

/* header section */
.s-header {
  background-image: linear-gradient(
    to bottom,
    #d9e4ff,
    #f2f6ff
  );
}

.s-header .lp-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding-top: 112px;
  padding-bottom: 64px;
}

.s-header .lp-cover {
  position: absolute;
  right: 0;
  bottom: 0;
}

.s-header .lp-cover img {
  display: block;
}

/* tools-list section  */
.s-tools-list .lp-section:not(:last-child) {
  margin-bottom: 32px;
}

.s-tools-list .lp-section > .lp-list {
  display: flex;
  justify-content: center;
  padding-top: 32px;
  margin-left: -12px;
  margin-right: -12px;
}

.s-tools-list .lp-section > .lp-list > .lp-item {
  box-sizing: border-box;
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}

.s-tools-list .lp-section > .lp-list > .lp-item > button {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 24px 20px;
  font-family: Gotham, Proxima Nova, Roboto, Arial, Helvetica, sans-serif;
  outline: none;
  border: none;
  border-radius: 4px 4px 16px 16px;
  box-shadow: 0 4px 4px rgba(34, 43, 69, .16);
  text-align: left;
  background-color: #fff;
  transition: box-shadow .3s;
}

.s-tools-list .lp-section > .lp-list > .lp-item > button:hover {
  box-shadow: 0 8px 8px rgba(34, 43, 69, .16);
}

.s-tools-list .lp-section > .lp-list > .lp-item > button:before {
  display: block;
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background-image: linear-gradient(
    to right,
    #da188d,
    #e10054
  );
}

.s-tools-list .lp-section > .lp-list > .lp-item > button .lp-content {
  display: block;
  max-width: 196px;
  margin-bottom: 16px;
}

.s-tools-list .lp-section > .lp-list > .lp-item > button .lp-content > .lp-title {
  display: block;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 8px;
}

.s-tools-list .lp-section > .lp-list > .lp-item > button .lp-content > .lp-text {
  display: block;
  font-size: 15px;
  line-height: 1.13;
  font-weight: 400;
}

.s-tools-list .lp-section > .lp-list > .lp-item > button .lp-button {
  display: block;
  margin-top: auto;
  font-size: 14px;
  text-decoration: underline;
  font-weight: 500;
  transition: opacity .3s;
}

.s-tools-list .lp-section > .lp-list > .lp-item > button:hover .lp-button {
  opacity: .8;
}

.s-tools-list .lp-section > .lp-list > .lp-item > button .lp-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 24px;
  top: 24px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-image: linear-gradient(
    45deg,
    rgba(218, 24, 141, .04),
    rgba(218, 24, 141, .12)
  );
  transition: transform .3s;
}

.s-tools-list .lp-section > .lp-list > .lp-item > button:hover .lp-icon {
  transform: rotate(15deg);
}

.s-tools-list .lp-section > .lp-list > .lp-item > button .lp-icon img {
  display: block;
}

/* content-image section */
.s-content-columns {
  /**/
}

.s-content-columns .lp-inner-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -32px;
  margin-right: -32px;
}

.s-content-columns .lp-inner-wrapper > .lp-column {
  width: 50%;
  box-sizing: border-box;
  padding-left: 32px;
  padding-right: 32px;
}

.s-content-columns .lp-inner-wrapper > .lp-column > img {
  display: block;
  width: 100%;
  border-radius: 40px;
}

.s-content-columns .lp-inner-wrapper > .lp-column > .lp-links-slot {
  padding-top: 24px;
}

.s-content-columns .lp-inner-wrapper > .lp-column > .lp-button-slot {
  padding-top: 40px;
}

.s-content-columns.v-reverse .lp-inner-wrapper {
  flex-direction: row-reverse;
}

.s-content-columns.v-reverse .lp-inner-wrapper > .lp-column.v-content {
  padding-right: 0;
  padding-left: 96px;
}

.s-content-columns.v-vertical-align-top .lp-inner-wrapper {
  align-items: flex-start;
}

/* social-links section */
.s-social-links .lp-section {
  padding-top: 32px;
}

.s-social-links .lp-section > .lp-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-left: -16px;
  margin-right: -16px;
  padding-top: 16px;
}

.s-social-links .lp-section > .lp-list > .lp-link {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 378px;
  box-sizing: border-box;
  margin: 16px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 4px rgba(34, 43, 69, .16);
  background-color: #fff;
  transition: box-shadow .3s;
}

.s-social-links .lp-section > .lp-list > .lp-link:hover {
  box-shadow: 0 8px 8px rgba(34, 43, 69, .16);
}

.s-social-links .lp-section > .lp-list > .lp-link > .lp-head {
  display: block;
  position: relative;
  width: 100%;
  height: 60px;
  background-image: linear-gradient(
    to top,
    rgba(32, 32, 34, .24),
    rgba(32, 32, 34, .08)
  );
}

.s-social-links .lp-section > .lp-list > .lp-link > .lp-head > .lp-icon {
  display: block;
  position: absolute;
  bottom: -30px;
  right: 32px;
  transition: transform .3s;
}

.s-social-links .lp-section > .lp-list > .lp-link:hover > .lp-head > .lp-icon {
  transform: translateY(-6px);
}

.s-social-links .lp-section > .lp-list > .lp-link > .lp-content {
  display: block;
  box-sizing: border-box;
  padding: 24px 32px;
}

.s-social-links .lp-section > .lp-list > .lp-link > .lp-content > .lp-name {
  display: block;
  max-width: 272px;
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 8px;
}

.s-social-links .lp-section > .lp-list > .lp-link > .lp-content > .lp-info {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.125;
}

.s-social-links .lp-section > .lp-list > .lp-link > .lp-content > .lp-link {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
}

.s-social-links .lp-section > .lp-list > .lp-link > .lp-content > .lp-link > .lp-domain {
  color: rgba(34, 43, 69, .48);
}

.s-social-links .lp-section > .lp-list > .lp-link > .lp-content > .lp-link > img {
  display: block;
  margin-right: 4px;
  margin-bottom: -1px;
}

.s-social-links .lp-section > .lp-list > .lp-link.v-vk > .lp-head {
  background-image: linear-gradient(
    to top,
    rgba(0, 119, 255, .24),
    rgba(0, 119, 255, .08)
  );
}

.s-social-links .lp-section > .lp-list > .lp-link.v-background-image > .lp-head {
  min-height: 112px;
}

.s-social-links .lp-section > .lp-list > .lp-link.v-background-image > .lp-head > .lp-cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s-social-links .lp-section > .lp-list > .lp-link.v-telegram > .lp-head {
  background-image: linear-gradient(
    to top,
    rgba(0, 136, 204, .24),
    rgba(0, 136, 204, .08)
  );
}

.s-social-links .lp-section > .lp-list > .lp-link.v-ok > .lp-head {
  background-image: linear-gradient(
    to top,
    rgba(255, 136, 0, .24),
    rgba(255, 136, 0, .08)
  );
}

.s-social-links .lp-section > .lp-list > .lp-link.v-rutube > .lp-head {
  background-image: linear-gradient(
    to top,
    rgba(16, 9, 67, .24),
    rgba(16, 9, 67, .08)
  );
}

.s-social-links .lp-section > .lp-list > .lp-link.v-pinterest > .lp-head {
  background-image: linear-gradient(
    to top,
    rgba(230, 0, 35, .24),
    rgba(230, 0, 35, .08)
  );
}

@media (max-width: 1316px) {
  .el-inner {
    padding-left: 32px;
    padding-right: 32px;
  }

  .s-header .lp-content {
    padding-left: 32px;
  }
  .s-header .lp-cover {
    height: 96%;
  }
  .s-header .lp-cover img {
    height: 100%;
    width: auto;
  }

  .s-tools-list .lp-section > .lp-list {
    margin-left: -8px;
    margin-right: -8px;
    padding-top: 16px;
  }
  .s-tools-list .lp-section > .lp-list > .lp-item {
    padding: 8px;
  }
  .s-tools-list .lp-section > .lp-list > .lp-item > button {
    padding: 20px 16px;
  }
  .s-tools-list .lp-section > .lp-list > .lp-item > button .lp-icon {
    width: 48px;
    height: 48px;
    top: 16px;
    right: 16px;
  }
  .s-tools-list .lp-section > .lp-list > .lp-item > button .lp-icon img {
    width: 24px;
  }
  .s-tools-list .lp-section > .lp-list > .lp-item > button .lp-content > .lp-title {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .el-inner {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .s-content-columns .lp-inner-wrapper {
    margin-left: -16px;
    margin-right: -16px;
  }
  .s-content-columns .lp-inner-wrapper > .lp-column {
    padding-left: 16px;
    padding-right: 16px;
  }

  .el-links-list > .lp-link {
    padding: 8px;
    border-radius: 8px;
  }
  .el-links-list > .lp-link:not(:last-child) {
    margin-right: 8px;
  }
  .el-links-list > .lp-link > .lp-text {
    max-width: 140px;
    font-size: 15px;
    padding-left: 8px;
  }
  .el-links-list > .lp-link > .lp-icon {
    width: 40px;
    height: 40px;
  }

  .el-text-group > .lp-title {
    font-size: 40px;
  }
  .el-text-group > .lp-subtitle {
    padding-top: 8px;
    font-size: 22px;
  }
  .el-text-group > .lp-text {
    padding-top: 8px;
  }
  .el-text-group > .lp-text p {
    font-size: 18px;
  }
  .el-text-group.v-spaced {
    margin-bottom: 24px;
  }
  .el-text-group.v-promo > .lp-title {
    max-width: 360px;
  }
  .el-text-group.v-promo > .lp-text p {
    font-size: 18px;
  }

  .el-subtitle {
    font-size: 24px;
  }
  .el-subtitle.v-spaced {
    margin-bottom: 20px;
  }

  .s-content-columns .lp-inner-wrapper > .lp-column > .lp-links-slot {
    padding-top: 16px;
  }
  .s-content-columns .lp-inner-wrapper > .lp-column > .lp-button-slot {
    padding-top: 24px;
  }

  .el-cards-list {
    margin-left: -8px;
    margin-right: -8px;
  }
  .el-cards-list > .lp-card {
    margin-left: 8px;
    margin-right: 8px;
  }
  .el-cards-list > .lp-card > .lp-image {
    margin-bottom: 16px;
  }
  .el-cards-list > .lp-card > .lp-name {
    font-size: 16px;
  }

  .s-social-links .lp-section > .lp-list {
    margin-left: -8px;
    margin-right: -8px;
  }
  .s-social-links .lp-section > .lp-list > .lp-link {
    margin: 8px;
  }
}

@media (max-width: 992px) {
  .el-inner {
    max-width: 768px;
  }

  .s-header {
    background-image: none;
    background-color: rgba(231, 238, 255, 1);
  }
  .s-header > .el-inner {
    display: flex;
    flex-direction: column-reverse;
  }
  .s-header .lp-cover {
    position: relative;
    height: auto;
    right: auto;
    bottom: auto;
  }
  .s-header .lp-cover:after {
    display: block;
    position: absolute;
    content: '';
    width: 100%;
    height: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(
      to top,
      rgba(231, 238, 255, 1),
      rgba(231, 238, 255, 0)
    );
  }
  .s-header .lp-cover > img {
    width: 100%;
    height: auto;
  }
  .s-header .lp-content {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .s-tools-list .lp-section > .lp-list {
    flex-wrap: wrap;
  }
  .s-tools-list .lp-section > .lp-list > .lp-item {
    width: 50%;
  }

  .s-content-columns .lp-inner-wrapper {
    margin-left: 0;
    margin-right: 0;
    flex-direction: column;
  }
  .s-content-columns.v-reverse .lp-inner-wrapper {
    flex-direction: column;
  }
  .s-content-columns .lp-inner-wrapper > .lp-column {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 32px;
  }
  .s-content-columns .lp-inner-wrapper > .lp-column:last-child {
    margin-bottom: 0;
  }

  .s-social-links .lp-section > .lp-list > .lp-link {
    max-width: 320px;
  }
  .s-social-links .lp-section > .lp-list > .lp-link > .lp-head {
    height: 40px;
  }
  .s-social-links .lp-section > .lp-list > .lp-link > .lp-content {
    padding: 16px 20px;
  }
  .s-social-links .lp-section > .lp-list > .lp-link > .lp-content > .lp-name {
    font-size: 18px;
  }
  .s-social-links .lp-section > .lp-list > .lp-link > .lp-content > .lp-info {
    font-size: 15px;
  }
  .s-social-links .lp-section > .lp-list > .lp-link > .lp-head > .lp-icon {
    right: 24px;
    width: 40px;
    height: auto;
    bottom: -20px;
  }

  .el-text-group.v-center {
    max-width: none;
    text-align: left;
  }

  .el-subtitle {
    text-align: left;
  }

  .el-cards-list > .lp-card {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .el-subtitle {
    font-size: 24px;
  }

}

@media (max-width: 576px) {
  .el-inner {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .s-header .lp-content {
    padding-left: 20px;
  }

  .s-tools-list .lp-section > .lp-list {
    margin-left: 0;
    margin-right: 0;
  }
  .s-tools-list .lp-section > .lp-list > .lp-item {
    width: 100%;
    padding: 0;
  }
  .s-tools-list .lp-section > .lp-list > .lp-item > button {
    border-radius: 0;
  }
  .s-tools-list .lp-section > .lp-list > .lp-item:last-child > button {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }

  .el-text-group > .lp-title {
    font-size: 32px;
  }
  .el-text-group > .lp-text {
    padding-top: 4px;
  }
  .el-text-group > .lp-text p {
    font-size: 16px;
  }
  .el-text-group > .lp-text ul li {
    font-size: 16px;
    padding-left: 14px;
  }
  .el-text-group > .lp-text ul li:before {
    top: 11px;
  }
  .el-text-group.v-promo > .lp-text {
    padding-top: 20px;
  }
  .el-text-group.v-promo > .lp-text p {
    font-size: 16px;
    line-height: 1.24;
  }
  .el-text-group.v-promo > .lp-title {
    max-width: 290px;
  }
  .el-text-group.v-promo > .lp-title:before {
    width: 24px;
    height: 24px;
    border-left-width: 6px;
    border-top-width: 6px;
    left: -20px;
    top: -16px;
  }
  .el-text-group.v-promo > .lp-title:after {
    width: 24px;
    height: 24px;
    border-right-width: 6px;
    border-bottom-width: 6px;
    right: -20px;
    bottom: -16px;
  }

  .s-content-columns .lp-inner-wrapper > .lp-column > .lp-links-slot {
    padding-top: 8px;
  }
  .s-content-columns .lp-inner-wrapper > .lp-column > .lp-button-slot {
    padding-top: 20px;
  }

  .s-content-columns .lp-inner-wrapper > .lp-column > img {
    border-radius: 16px;
  }

  .el-cards-list {
    margin-left: -4px;
    margin-right: -4px;
  }
  .el-cards-list > .lp-card {
    margin-left: 4px;
    margin-right: 4px;
  }
  .el-cards-list > .lp-card > .lp-image {
    border-radius: 16px;
    margin-bottom: 8px;
  }
  .el-cards-list > .lp-card > .lp-name {
    margin-bottom: 4px;
    min-height: 40px;
  }

  .el-links-list > .lp-link {
    width: 100%;
    padding: 4px;
  }
  .el-links-list > .lp-link:not(:last-child) {
    margin-right: 0;
    margin-bottom: 8px;
  }
  .el-links-list > .lp-link > .lp-text {
    max-width: none;
  }
  .el-links-list > .lp-link > .lp-icon {
    width: 32px;
    height: 32px;
  }
  .el-links-list > .lp-link > .lp-icon img {
    width: 20px;
    height: auto;
  }
}