/*
################
                Base css
################
*/

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600i,700|Rubik:400,400i,500,700&subset=latin-ext');

:root {
  --main-font-color: #013A52;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  height: auto !important;
}

a {
  text-decoration: none!important;
}

.header {
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0px 1px 0px #D0E2F2;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  z-index: 100;
}

section {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}

.container-theme-small {
  max-width: 870px;
}

.button {
  padding: 11px 31px 11px 31px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  text-decoration: none;
  font-size: 14px;
  border: none;
  cursor: pointer;
  outline: none;
}

.button-theme-blue {
  background: #11ABEC;
  color: #fff!important;
  border: 2px solid #11ABEC;
}

.button-theme-transparent {
  background: transparent;
  border: 2px solid #11ABEC;
  color: #11ABEC;
}

.button-theme-rounded {
  border-radius: 5px;
}

.btn-theme-rounded-right {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.button-theme-full-width {
  width: 100%;
  display: inline-block;
  text-align: center;
  line-height: 26px;
}

.button-theme-soon {
  display: block;
  text-align: center;
  width: 140px;
  padding: 10px;
  margin: 0 auto;
}

.form__field {
  border: 2px solid #D0E2F2;
  background: #ffffff;
  font-size: 14px;
  color: #556677;
  border-radius: 5px;
  padding: 16px 0 19px 18px;
  outline: none;
}

.form__textarea {
  width: 100%;
  height: 134px;
  background: #fff;
  border: 2px solid #D0E2F2;
  padding: 16px 0 19px 18px;
  font-size: 14px;
  color: #556677;
  outline: none;
  resize: none;
  border-radius: 5px;
}

.modal__submit {
  display: inline-block;
  width: 100%;
  padding: 17px 20px;
  margin-top: 10px;
  font-weight: 500;
  font-size: 13px;
  line-height: 15px;
  text-align: center;
  background: #013A52;
  color: #fff;
  border: 2px solid #013A52;
  border-radius: 4px;
}

.modal__message_center {
  text-align: center;
}

.modal__option {
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
}

.modal__option:hover {
  font-weight: 500;
  background: #E6F3FF;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #556677;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #556677;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #556677;
}
:-moz-placeholder { /* Firefox 18- */
  color: #556677;
}

.modal h3 {
  font-family: 'Rubik', sans-serif;
  font-size: 24px;
  color: var(--main-font-color);
  margin-bottom: 21px;
  font-weight: 400;
}

.modal p {
  font-size: 18px;
  color: #556677;
  line-height: 24px;
}

.form.form-modal {
  width: 100%;
  padding-right: 0;
  justify-content: center;
}

.input-group-addon.form__field {
  line-height: 0;
  padding-right: 12px;
}

/*
################
               support-banner
################
*/

.support-banner {
  background: #013A52 url(https://static.socialshopwave.com/images/official/supportBannerBG.png) no-repeat 36% 0%;
  background-size: contain;
}

.support-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.support-banner .container:before,
.support-banner .container:after {
  content: unset;
}

.support-banner__text {
  color: #fff;
  font-size: 13px;
  line-height: 19px;
  border-left: 2px solid #fff;
  padding: 5px 10px;
  margin: 0;
}

.support-banner__link {
  font-family: "Rubik", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #fff;
}

.support-banner__link:hover,
.support-banner__link:focus {
  color: #fff;
}

.support-banner__arrow {
  margin-left: 10px;
  vertical-align: middle;
  width: 20px;
  height: 14px;
}

@media all and (max-width: 768px) {
  .support-banner {
    background: #013A52;
  }

  .support-banner .container {
    flex-wrap: wrap;
    padding: 7px 20px;
  }

  .support-banner__text {
    font-size: 12px;
    line-height: 16px;
  }

  .support-banner__link {
    margin-left: auto;
    font-size: 13px;
  }
}
/*
################
              cc-window
################
*/
.cc-window {
  position: fixed!important;
  bottom: 20px!important;
  left: 20px!important;
  border-radius: 6px!important;
  border: 1px solid #ECECEC!important;
  padding: 1.5rem!important;
  background-color: white!important;
  width: 380px!important;
  box-shadow: 0 10px 24px 0 rgba(0,0,0,0.04)!important;
  -webkit-animation: fadeIn 0.3s ease-in-out!important;
  animation: fadeIn 0.3s ease-in-out!important;
  z-index: 2147483004!important;
  align-items: center;
  flex-direction: column!important;
}
.cc-message {
  line-height: 18px!important;
  font-size: 13px!important;
  text-align: left;
  display: flex!important;
  flex-direction: column;
  align-items: flex-start;
}
.cc-link {
  text-decoration: underline!important;
  color: #11ABEC!important;
}
.cc-btn {
  padding: 11px 31px 11px 31px!important;
  font-family: 'Rubik', sans-serif!important;
  font-weight: 400!important;
  text-decoration: none!important;
  font-size: 14px!important;
  border: none!important;
  cursor: pointer!important;
  outline: none!important;
  background: #11ABEC!important;
  color: #fff!important;
  border: 2px solid #11ABEC!important;
  border-radius: 5px!important;
  margin-top: 10px!important;
  text-transform: uppercase!important;
}
@media screen and (min-device-width : 1024px)  {
  .cc-banner.cc-bottom {
    z-index: 1000;
    padding: .5em 1.8em;
    text-align: center;
    display: block;
  }
  .cc-banner.cc-bottom > * {
    display: inline-block;
  }
}
@media screen and (min-device-width : 848px)  {
  .cc-compliance {
    margin-left: 1em;
  }
}
@media all and (max-width: 420px) {
  .cc-window {
    left: 0!important;
    bottom: 0!important;
    width: 100%!important;
  }
}
.cc-banner .cc-message {
  flex: initial;
}
.cc-btn.cc-dismiss {
  color: #3498DB;
  text-decoration: none;
}


/*
################
               header
################
*/

.header-top {
  background: #f34f4e;
  color: #fff;
  text-align: center;
  padding: 12px 0;
}

.header-top a {
  color: #fff;
  text-decoration: underline!important;
}

.header-top a:hover {
  text-decoration: none!important;
}

.header > .container {
  height: 70px;
  display: flex;
  align-items: center;
}

.header__logo {
  margin-right: auto;
}

.header__nav__list {
  display: flex;
  list-style: none;
  margin: 0;
}

.header__nav__list-theme-child {
  min-width: 150px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 6px #A3B2BF;
  padding: 20px 30px;
  position: absolute;
  left: -18px;
  top: 100%;
  flex-wrap: wrap;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-out;
}

.header__nav__list-theme-wide {
  width: 466px;
  padding: 31px 0 40px 40px;
}

.header__nav__list-theme-child-active {
  display: flex!important;
}

.header__nav__list-item {
  padding: 22.5px;
  position: relative;
}

.header__nav__list-item:hover {
  color: var(--main-font-color);
}

.header__nav__list-item:hover .header__nav__list-theme-child {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.header__mobile-nav .header__nav__list-item:hover .header__nav__list-theme-child {
  display: none;
}

.header__nav__list-item:hover .header__nav__list-link:before,
 .header__nav__list-item:hover .header__nav__list-link:after {
   background-color: #11ABEC;
 }

.header__mobile-nav .header__nav__list-item:hover .header__nav__list-link:before,
.header__mobile-nav .header__nav__list-item:hover .header__nav__list-link:after {
  background-color: #acacac!important;
}

.header__nav__list-item:hover .header__nav__list-link:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header__nav__list-item:hover .header__nav__list-link:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header__mobile-nav .header__nav__list-item:hover .header__nav__list-link:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header__mobile-nav .header__nav__list-item:hover .header__nav__list-link:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header__nav__list-link-theme-active {
  color: #11ABEC;
}

.header__nav__list-link-theme-active:after {
  -webkit-transform: rotate(45deg)!important;
  transform: rotate(45deg)!important;
}

.header__nav__list-link-theme-active:before {
  -webkit-transform: rotate(-45deg)!important;
  transform: rotate(-45deg)!important;
}

.header__nav__list-item:last-of-type {
  padding-right: 45px;
}

.header__nav__has-children>a:after,
.header__nav__has-children>a:before {
  content: '';
  display: block;
  background-color: #acacac;
  width: 6px;
  height: 2px;
  position: absolute;
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}

.header__nav__has-children>a:after {
  right: 6px;
  margin-top: -10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header__nav__has-children>a:before {
  right: 10px;
  margin-top: 11px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header__nav__list-theme-child .header__nav__list-item {
  width: 100%;
  padding: 0;
  margin-bottom: 15px;
}

.header__nav__list-theme-child .header__nav__list-item:last-of-type {
  margin-bottom: 0;
}

.header__nav__list-theme-wide .header__nav__list-item {
  width: auto;
  min-width: 50%;
}

.header__nav__list-theme-wide  .header__nav__list-item:nth-last-child(-n+2) {
  margin-bottom: 0;
}

.header__nav__list-link {
  color: var(--main-font-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.2s ease-out;
}

.header__nav__list-link:hover {
  color: var(--main-font-color);
  border-bottom: 1px solid;
  border-color: #11ABEC;
}

.header__mobile-nav .header__nav__list-link:hover {
  color: var(--main-font-color);
}

.header__mobile-nav .header__nav__list-link:active {
  color: var(--main-font-color);
}

.header__nav__list-link:active {
  color: #11ABEC;
}

.header__nav__list-link-theme-active {
  color: #11ABEC;
}

.header__nav__list-theme-child .header__nav__list-link {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.header__nav__list-theme-child .header__nav__list-link:hover {
  color: #11ABEC;
}

.header__navbar-toggle {
  display: none;
  cursor: pointer;
  background: #11ABEC;
  border: none;
  outline: none;
  width: 32px;
  height: 3px;
  padding: 0;
  border-radius: 10px;
  position: relative;
}


.header__navbar-toggle:before {
  content: " ";
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 10px;
  background: #11ABEC;
  position: absolute;
  top: -7px;
}

.header__navbar-toggle:after {
  content: " ";
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 10px;
  background: #11ABEC;
  position: absolute;
  bottom: -7px;
}

.header__mobile-nav {
  display: none;
}

.header__mobile-nav.header__mobile-nav-theme-active {
  display: none!important;
}

.button-header {
  margin-left: 12px;
}


/*
################
               Section header form
################
*/

.header-form {
  height: 650px;
}

.header-form > .container {
  display: flex;
  height: 100%;
}

.index .header-form__inner {
  width: 37%;
}

.header-form__inner {
  width: 57%;
  height: 100%;
  background: #F1F8FF;
  box-shadow: -300px 0 0 0 #F1F8FF;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header-form__title {
  font-family: 'Rubik', sans-serif;
  font-size: 48px;
  color: var(--main-font-color);
  font-weight: 400;
  margin: 0 0 25px 0;
}

.index .header-form__desc {
  font-size: 19px;
  padding-right: 0px;
}

.header-form__desc {
  margin: 0 0 60px 0;
  font-size: 19px;
  font-weight: 400;
  color: #556677;
  line-height: 34px;
  padding-right: 140px;
}

.form-getting-started {
  display: flex;
  padding-right: 155px;
  margin-bottom: 18px;
}

.form-getting-started__store {
  width: 250px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

textarea,
input:matches(
  [type="email"],
  [type="number"],
  [type="password"],
  [type="search"],
  [type="tel"],
  [type="text"],
  [type="url"]
) {
  -webkit-appearance: none;
}

.form-getting-started__domain {
  width: 135px;
  border-radius: 0;
  border-right: none;
  border-left: none;
}

.header-form__notice {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #556677;
  line-height: 24px;
}

.header-form__gradient {
  width: 200px;
  height: 100%;
  background: -moz-linear-gradient(left, rgba(241,248,255,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left, rgba(241,248,255,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(241,248,255,1) 0%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f1f8ff', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 */
}

/*
################
               Shopify-flow page
################
*/

.section-shopify-flow-header{
  background: #F1F8FF url(https://static.socialshopwave.com/images/official/header-bgr.svg) 50% 100% no-repeat;
  height: 650px;
  background-size: 92%;
  background-position: 0px 0px;
}

.container.shopify-flow{
  display: flex;
  height: 100%;
  flex-direction: row-reverse;
}

.section-shopify-flow-header__info{
  box-shadow: none;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-shopify-flow-header__title{
  font-family: 'Rubik', sans-serif;
  font-size: 48px;
  color: var(--main-font-color);
  font-weight: 400;
  margin: 0 0 30px 0;
}

.section-shopify-flow-header__desc{
  margin: 0 0 60px 0;
  font-size: 18px;
  color: #556677;
  line-height: 34px;
}

.section-shopify-flow-header__bottom{
  display: flex;
  align-items: center;
}

.section-shopify-flow-header__bottom__notice{
  font-size: 14px;
  color: rgb(85, 102, 119);
  font-family: "Open sans", sans-serif;
  line-height: 24px;
  margin-bottom: 20px;
}

.section-shopify-flow-header__bottom a {
  margin-right: 20px;
}

.section-shopify-flow-merchants {
  padding: 100px 0 140px 0;
}

.section-shopify-flow-merchants__title{
  text-align: center;
  font-family: 'Rubik', sans-serif;
  font-size: 44px;
  color: var(--main-font-color);
  font-weight: 400;
  margin: 0 0 75px 0;
}

.section-shopify-flow-merchants__list{
  display: flex;
}

.section-shopify-flow-merchants__list__item{
  margin-right: 30px;
}

.section-shopify-flow-merchants__list__item:nth-of-type(3n) {
  margin-right: 0px;
}

.section-shopify-flow__img-block {
  height: 93px;
}

.section-shopify-flow-merchants__list__item__title {
  font-family: 'Rubik', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--main-font-color);
  margin-bottom: 20px;
}

.section-shopify-flow-merchants__list__item__desc {
  font-size: 18px;
  line-height: 34px;
  color: #556677;
}

.section-shopify-flow-how-works {
  background: #F1F8FF;
  text-align: center;
  padding: 104px 0 150px 0;
}

.section-shopify-flow-how-works__title {
  font-family: 'Rubik', sans-serif;
  font-size: 44px;
  color: var(--main-font-color);
  font-weight: 400;
  margin: 0 0 41px 0;
}

.section-shopify-flow-how-works__desc__title {
  font-size: 18px;
  line-height: 34px;
  color: #556677;
  padding: 0px 0px 41px 0px;
  width: 570px;
  margin: 0 auto;
}

.section-shopify-flow-how-works__list {
  display: flex;
}

.section-shopify-flow-how-works__list__item {
  margin-right: 32px;
  width: 25%;
}

.section-shopify-flow-how-works__list__item:nth-of-type(4n) {
  margin-right: 0;
}

.section-shopify-flow-how-works__list__item__desc {
  font-size: 18px;
  line-height: 34px;
  color: #556677;
}

.section.section-shopify-flow-fav-apps.Gorgias {
  padding: 104px 0 150px 0;
}

.section-shopify-flow-fav-apps__title {
  font-family: 'Rubik', sans-serif;
  font-size: 48px;
  color: var(--main-font-color);
  font-weight: 400;
  text-align: center;
  margin: 0px 0px 80px 0px;
}

.section-shopify-flow-fav-apps__list {
  flex-wrap: wrap;
  display: flex;
}

.section-shopify-flow-fav-apps__list__item {
  position: relative;
  margin-right: 10px;
  width: 48%;
  margin-bottom: 80px;
}

.section-shopify-flow-fav-apps__list__item:nth-of-type(2n) {
  margin-right: 0px;
}

.section-shopify-flow-fav-apps__list__item:nth-of-type(3n) {
  margin-bottom: 0px;
}

.section-shopify-flow-fav-apps__list__item__title {
  font-family: 'Rubik', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--main-font-color);
  margin-bottom: 21px;
}

.section-shopify-flow-fav-apps__item__title {
  font-family: 'Rubik', sans-serif;
  font-size: 48px;
  color: var(--main-font-color);
  font-weight: 400;
  margin: 0 0 25px 0;
}

.section-shopify-flow-fav-apps__list__item__title__desc {
  font-size: 18px;
  line-height: 34px;
  color: #556677;
  margin-bottom: 20px;
}

.section-shopify-flow-fav-apps__list__item__arrow {
  margin: 0;
  font-size: 70px;
  position: absolute;
  top: -22px;
  right: 50px;
}

.section-shopify-flow-fav-apps.Klaviyo {
  padding: 104px 0 112.5px 0;
  background: #F1F8FF;
}

.section-shopify-flow-fav-apps__txt {
  font-size: 16px;
  line-height: 34px;
  color: #556677;
  font-family: Open Sans, Italic;
}

.section-shopify-flow-connect-growave {
  padding: 80px 0 122px 0px;
}

.section-shopify-flow-connect-growave .container {
  display: flex;
  align-items: center;
}

.section-shopify-flow-connect-growave__left {
  margin-right: 120px;
}

.section-shopify-flow-connect-growave__left__title {
  font-family: 'Rubik', sans-serif;
  font-size: 36px;
  color: var(--main-font-color);
  margin-bottom: 23px;
}

.section-shopify-flow-connect-growave__left__text {
  font-size: 18px;
  color: #556677;
  margin-bottom: 40px;
}

.section-shopify-flow-connect-growave__block {
  width: 41%;
  margin: 0;
  padding: 54px 0 40px 0;
  background: #F1F8FF url(https://static.socialshopwave.com/images/official/quote-white.svg) no-repeat 26px 40px;
}

.section-shopify-flow-connect-growave__block__text {
  width: 90%;
  margin: 0 auto 55px auto;
  text-align: center;
  font-family: 'Rubik', sans-serif;
  font-size: 26px;
  line-height: 46px;
  color: var(--main-font-color);
}

.section-shopify-flow-connect-growave__block__info {
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.section-shopify-flow-connect-growave__block__info__author {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.section-shopify-flow-connect-growave__block__info__photo {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  border-radius: 50%;
}

.section-shopify-flow-connect-growave__block__info__author__info {
  display: flex;
  flex-direction: column;
}

.section-shopify-flow-connect-growave__block__info__author__info__name {
  font-size: 16px;
  font-weight: bold;
  color: var(--main-font-color);
  margin-bottom: 4px;
}

.section-shopify-flow-connect-growave__block__info__author__info__spec {
  text-transform: inherit;
  color: #556677;
}

.section-shopify-flow-connect-growave .section-shopify-flow-header__bottom {
  margin-bottom: 40px;
}

@media (max-width: 1390px){
  .section-shopify-flow-header {
    background-size: cover;
    background-position: center;
  }
}

@media all and (min-width: 1900px) {
  .section-slide {
    padding-top: 50px!important;
  }
}

@media (max-width: 1050px){
  .section-shopify-flow-connect-growave .container {
    flex-direction: column;
  }

  .section-shopify-flow-connect-growave__left {
    width: 100%;
    text-align: center;
    margin-right: auto;
  }

  .section-shopify-flow-connect-growave__block {
    margin-top: 70px;
    width: 100%;
  }
}
@media (max-width: 830px){
    .section-shopify-flow-header {
        height: auto;
        padding: 40px 0;
        background: #F1F8FF!important;
    }

  .section-shopify-flow-header__info {
    width: 100%;
    text-align: center;
  }

  .section-shopify-flow-header__bottom {
    margin: 0 auto;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .section-shopify-flow-merchants__list {
    flex-direction: column;
    text-align: center;
  }

  .section-shopify-flow-merchants__list__item {
    width: 300px;
    margin: 0 auto 60px auto!important;
  }

  .section-shopify-flow-merchants__list__item__desc {
    line-height: 24px;
  }

  .section-shopify-flow-how-works__list {
    flex-direction: column;
    text-align: center;
  }

  .section-shopify-flow-how-works__list__item {
    width: 300px;
    margin: 0 auto 60px auto!important;
  }

  .section-shopify-flow-how-works__list__item__desc {
    line-height: 24px;
  }

  .section-shopify-flow-fav-apps__list__item__title {
    font-size: 18px;
    line-height: 24px;
  }

  .section-shopify-flow-fav-apps__list {
    flex-direction: column;
    text-align: center;
  }

  .section-shopify-flow-fav-apps__list__item {
    width: 300px;
    margin: 0 auto 60px auto!important;
  }

  .section.section-shopify-flow-fav-apps.Gorgias .section-shopify-flow-fav-apps__list__item__arrow {
    transform: rotate(90deg);
    left: 20%;
    bottom: -28%;
    top: auto;
    font-size: 50px;
  }

  .section-shopify-flow-fav-apps__list__item__arrow {
    transform: rotate(90deg);
    left: 19%;
    bottom: -15%;
    top: auto;
    font-size: 50px;
  }

  .section-shopify-flow-header__title {
    font-size: 34px;
  }

  .section-shopify-flow-header__desc {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .section-shopify-flow-how-works__title {
    font-size: 34px;
  }

  .section-shopify-flow-header__bottom__notice {
    font-size: 12px;
  }

  .section-shopify-flow-merchants__title {
    font-size: 34px;
  }

  .section-shopify-flow-how-works__desc__title {
    font-size: 18px;
    line-height: 24px;
    width: 80%;
  }

  .section-shopify-flow-fav-apps__title {
    font-size: 34px;
  }

  .section-shopify-flow-fav-apps__item__title {
    font-size: 34px;
  }

  .section-shopify-flow-fav-apps__list__item__title__desc {
    line-height: 24px;
  }

  .section-shopify-flow-fav-apps__list__item {
    width: 300px;
    margin: 0 auto 60px auto!important;
  }
}

@media (max-width: 500px){
  .section-shopify-flow-header__bottom {
    flex-direction: column;
    text-align: center;
  }
  .section-shopify-flow-header__bottom__notice {
    margin-top: 5px;
  }
  .section-shopify-flow-header__bottom a {
    margin-right: 0;
  }
}

@media (max-width: 400px){
  .section-shopify-flow-merchants__list__item {
    width: 100%;
  }
  .section-shopify-flow-how-works__list__item {
    width: 100%;
  }
  .section-shopify-flow-fav-apps__list__item {
    width: 100%;
  }
}

/*
################
               Section features
################
*/

.features {
  padding: 100px 0 112px 0;
}

.features__list {
  display: flex;
}

.features__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 140px;
}

.features__item:nth-of-type(3n) {
  margin-right: 0;
}

.feature__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 53px;
  height: 53px;
  border: 2px solid;
  border-color: #0099FF;
  border-radius: 30px;
}

.features__ico {
  margin-bottom: 36px;
  width: 50px;
  height: 50px;
  fill: #11ABEC;
}

.features__title {
  font-family: 'Rubik', sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-top: 25px;
  margin-bottom: 21px;
  color: var(--main-font-color);
}

.features__title:after {
  content: '';
  position: relative;
  top: 9px;
  display: block;
  width: 52px;
  height: 2px;
  margin: 0 auto;
  background: #11ABEC;
}

.features__desc {
  line-height: 34px;
  color: #556677;
  text-align: center;
  font-size: 18px;
}

/*
################
               Section features quote
################
*/

.section-features-quote {
  padding: 97px 0 110px 0;
  background: #FAFCFF;
}

.section-features-quote .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.section-features-quote__title {
  width: 100%;
  margin: 0 0 62px 0;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  font-size: 36px;
  text-align: center;
  color: #556677;
}

.section-features-quote__subtitle {
  max-width: 800px;
  margin: 0 0 46px 0;
  font-weight: 400;
  font-size: 18px;
  color: #556677;
  text-align: center;
}

.section-features-quote__list {
  display: flex;
  justify-content: center;
}

.section-features-quote__item {
  max-width: 22%;
  margin-left: 45px;
}

.section-features-quote__item:first-of-type {
  margin-left: 0;
}

.section-features-quote__img {
  width: 100%;
}

.section-features-quote__ico {
  width: 36px;
  height: 36px;
  margin-right: 16px;
  fill: #11ABEC;
}

.section-features-quote__info__title {
  margin: 40px 0;
  font-family: 'Rubik', sans-serif;
  font-size: 24px;
  color: #556677;
}

.section-features-quote__info__desc {
  min-height: 111px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #556677;
}

.section-features-quote__block {
  width: 49%;
  margin-left: 6%;
  background: #FFFFFF url('https://static.socialshopwave.com/images/official/quote_bg.svg') no-repeat 26px 40px;
  background-size: 135px 96px;
  padding: 95px 0 57px 0;
}

.section-features-quote__block-text {
  width: 90%;
  margin: 0 auto 55px auto;
  text-align: center;
  font-family: 'Rubik', sans-serif;
  font-size: 30px;
  line-height: 46px;
  color: var(--main-font-color);
}

.section-features-quote__block-info {
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.section-features-quote__block-author {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.section-features-quote__block-photo {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  border-radius: 50%;
}

.section-features-quote__block-author-info {
  display: flex;
  flex-direction: column;
}

.section-features-quote__block-author-name {
  font-size: 16px;
  font-weight: bold;
  color: var(--main-font-color);
  margin-bottom: 4px;
}

.section-features-quote__block-author-spec {
  color: #556677;
  text-transform: uppercase;
  font-weight: 400;
}

.section-features-quote__block-link {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  color: #11ABEC;
  text-decoration: none;
}

/*
################
               Section info
################
*/

.block-info__title {
  margin: 90px 0 83px 0;
  text-align: center;
}

.block-info__items {
  display: flex;
  margin-bottom: 103px;
}

.block-info__item {
  width: 33.3%;
  display: flex;
  align-items: flex-start;
  margin: 0 30px;
}

.block-info__item:first-child {
  margin-left: 0;
}

.block-info__item:last-child {
  margin-right: 0;
}

.block-info__bl {
  width: 100%;
  margin-left: 16px;
}

.block-info__img {
  padding-top: 6px;
}

.block-info__item:nth-child(2):after,
.block-info__item:nth-child(2):before {
  content: '';
  position: relative;
  display: flex;
  top: 22px;
  width: 1px;
  background: url(https://static.socialshopwave.com/images/official/Rectangle.svg);
  height: 95px;
}

.block-info__item:nth-child(2):after {
  left: 30px;
}

.block-info__item:nth-child(2):before {
  right: 30px;
}

.block-info__text {
  margin: 10px 0;
  font-size: 24px;
  color: #556677;
}

.block-info__desc {
  margin-top: 10px;
  font-size: 18px;
  color: #556677;
  opacity: 0.85;
}

/*
################
               Section reviews
################
*/

.section-view-reviews {
  padding: 91px 0 40px 0;
  background: rgba(230,243,255, 0.2);
}

.section-view-reviews__slick {
  display: flex;
  justify-content: center;
}

.section-view-reviews__slider {
  position: relative;
  width: 33.3%;
}

.section-view-reviews__title {
  margin: 0;
  margin-bottom: 92px;
  color: #556677;
  text-align: center;
}

.section-view-reviews__slider .slick-track {
  display: flex;
}

.section-view-reviews__slider .slick-prev,
.section-view-reviews__slider .slick-next {
  width: 40px;
  height: 40px;
  background: #ffffff;
  color: #556677;
  font-size: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  border: none;
  outline: none;
  line-height: 0;
  -webkit-box-shadow: 0px 0px 25px -2px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 0px 0px 25px -2px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 0px 25px -2px rgba(34, 60, 80, 0.2);
  border-radius: 30px;
  z-index: 100;
}

.section-view-reviews__slider .slick-next {
  position: absolute;
  top: 50%;
  right: 0px;
}

.section-view-reviews__slider .slick-prev {
  position: absolute;
  top: 50%;
  left: 0px;
}

.section-view-reviews__slider .slick-prev:before {
  content: ' ';
  position: absolute;
  top: 6px;
  left: 6px;
  height: 28px;
  width: 28px;
  background-image: url('https://static.socialshopwave.com/images/official/presliderindex.svg');
  background-size: 28px 28px;
}

.section-view-reviews__slider .slick-prev:hover {
  background: #0099FF;
}

.section-view-reviews__slider .slick-prev:hover.slick-prev:before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  background-image: url('https://static.socialshopwave.com/images/official/nextsliderindex.svg');
  background-size: 28px 28px;
}

.section-view-reviews__slider .slick-next:before {
  content: ' ';
  position: absolute;
  top: 6px;
  left: 6px;
  height: 28px;
  width: 28px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  background-image: url('https://static.socialshopwave.com/images/official/presliderindex.svg');
  background-size: 28px 28px;
}

.section-view-reviews__slider .slick-next:hover {
  background: #0099FF;
}

.section-view-reviews__slider .slick-next:hover.slick-next:before {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  background-image: url('https://static.socialshopwave.com/images/official/nextsliderindex.svg');
  background-size: 28px 28px;
}

.section-view-reviews__clip {
  margin: 0 20px;
  padding: 60px 46px;
  background: #FAFDFF;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 34px -18px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 0px 0px 34px -18px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 0px 34px -18px rgba(34, 60, 80, 0.2);
  outline: none;
}

.section-view-reviews__clip.slick-slide.slick-current.slick-active.slick-center {
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 36px -6px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 0px 0px 36px -6px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 0px 36px -6px rgba(34, 60, 80, 0.2);
}

.section-view-reviews__decs {
  margin-bottom: 30px;
  color: rgba(85, 102, 119, 0.85);
  font-size: 18px;
}

.section-view-reviews__profile {
  display: flex;
}

.section-view-reviews__data {
  margin-left: 26px;
}

.section-view-reviews__name {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}

.section-view-reviews__position {
  font-size: 14px;
}

.section-view-reviews__clients {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px 0 45px 0;
}

.section-view-reviews__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 24px;
}

.section-view-reviews__item {
  margin: 0 10px;
}


/*
################
               Section brands
################
*/

.brands {
  background: #fff;
  padding: 100px 0 90px 0;
}

.brands__title {
  width: 100%;
  font-family: 'Rubik', sans-serif;
  font-size: 34px;
  font-weight: 400;
  text-align: center;
  color: var(--main-font-color);
  margin: 0 0 80px 0;
}

.brands__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.brands__item {
  width: 200px;
  margin-bottom: 40px;
  position: relative;
}

.brands__logo {
  width: 80%;
  display: block;
  margin: 0 auto;
  transition: all 0.3s ease-out;
  filter: grayscale(1) brightness(0%);
  opacity: 0.5;
}

.brands__item:hover .brands__logo {
  filter: none;
  opacity: 1;
}

.brands__block {
  display: flex;
}

.brands__list {
  width: 63%;
}

.brands-info {
  width: 37%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.brands-info__item {
  background: #FFFFFF url(https://static.socialshopwave.com/images/official/quote_bg.svg) no-repeat;
  background-size: 40px 40px;
  padding: 22px;
  color: var(--main-font-color);
  font-size: 22px;
  line-height: 34px;
}

.brands-info__item:first-of-type {
  padding-bottom: 0px;
  margin-bottom: 40px;
  margin-top: 30px;
}

.brands-info__description {
  margin: 0 !important;
}

@media all and (max-width: 998px) {
  .brands__list {
    margin: 0 auto;
  }
  .brands__block {
    flex-direction: column;
  }
  .brands-info {
    width: 100%;
    flex-direction: unset;
    justify-content: center;
  }
  .brands-info__item:first-of-type {
    margin: 0;
    margin-bottom: 20px;
  }
  .brands-info__item {
    width: 37%;
  }
}

@media all and (max-width: 986px) {
  .brands-info {
    flex-direction: column;
    align-items: center;
  }
}

@media all and (max-width: 860px) {
  .brands-info__item {
    width: 50%;
  }
}

@media all and (max-width: 680px) {
  .brands__list {
    width: 100%;
  }
  .brands-info__item {
    width: 80%;
  }
}

@media all and (max-width: 500px) {
  .brands-info__item {
    width: 100%;
  }
}
/*
################
               Section form
################
*/

.section-form {
  padding: 90px 0 98px 0;
  background: #F1F8FF url('https://static.socialshopwave.com/images/official/footer_bg_1.svg') no-repeat center;
  background-size: cover;
}

.section-form__title {
  width: 100%;
  text-align: center;
  font-family: 'Rubik', sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--main-font-color);
  margin: 0 0 20px 0;
}

.section-form__description {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: #556677;
  margin: 0 0 20px;
}

.section-form-theme-btns .section-form__title {
  margin-bottom: 10px;
}

.section-form__desc {
  font-size: 14px;
  color: #556677;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 400;
}

.section-form__btns {
  display: flex;
  justify-content: center;
}

.section-form__btns .button {
  margin: 0 10px;
}

.section-form .form-getting-started {
  width: 570px;
  margin: 0 auto 18px auto;
  padding: 0;
  display: flex;
  justify-content: center;
}

.section-form__notice {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: #556677;
  margin: 0;
}

.reward-board {
  background: #F1F8FF url('https://static.socialshopwave.com/images/apps/reward/header-form__bg 3.svg') no-repeat right center;
}

/*
################
               Section features vertical
################
*/

.section-features-vertical {
  background: #fff;
}

.section-features-vertical__top {
  font-family: 'Rubik', sans-serif;
  font-size: 48px;
  color: var(--main-font-color);
  line-height: 64px;
  margin-bottom: 21px;
  text-align: center;
}

.section-features-vertical__subtitle {
  text-align: center;
  font-size: 18px;
  color: #556677;
}

.section-features-vertical__list {
  display: flex;
  flex-direction: column;
}

.section-features-vertical__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 0 75px 0;
}

.section-features-vertical__img {
  order: 2;
  margin-left: 130px;
  display: block;
}

.section-features-vertical__item:nth-of-type(2n) .section-features-vertical__img {
  order: 1;
  margin-right: 130px;
  margin-left: 0;
}

.section-features-vertical__info {
  order: 1;
}

.section-features-vertical__item:nth-of-type(2n) .section-features-vertical__info {
  order: 2;
}

.section-features-vertical__title {
  font-family: 'Rubik', sans-serif;
  font-size: 34px;
  color: var(--main-font-color);
  margin-bottom: 30px;
}

.section-features-vertical__text {
  font-size: 18px;
  line-height: 34px;
  color: #556677;
}

.section-features__vertical__list {
  list-style: none;
  padding-left: 0;
}

.section-features__vertical__list-item {
  display: flex;
  align-items: flex-start;
  line-height: 1.2;
  margin-bottom: 27px;
}

.section-features__vertical__list-item:before {
  content: " ";
  display: block;
  width: 24px;
  height: 24px;
  background: url('https://static.socialshopwave.com/images/official/checked-ico_new-v2.svg') no-repeat center;
  background-size: 100%;
  margin-right: 22px;
  flex: none;
}

.section-features__vertical__list-text {
  color: #556677;
}

/*
################
               Section features motivate
################
*/

.section-features-motivate {
  background: #fff;
}

.section-features-motivate__top {
  font-family: 'Rubik', sans-serif;
  font-size: 48px;
  color: var(--main-font-color);
  line-height: 64px;
  margin-bottom: 21px;
  text-align: center;
}

.section-features-motivate__list {
  display: flex;
  flex-direction: column;
}

.section-features-motivate__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 0 75px 0;
}

.section-features-motivate__img {
  order: 1;
  display: block;
}

.section-features-motivate__info {
  order: 1;
  padding-left: 25px;
}

.section-features-motivate__title {
  font-family: 'Rubik', sans-serif;
  font-size: 34px;
  color: var(--main-font-color);
  margin-bottom: 30px;
}

.section-features-motivate__text {
  font-size: 18px;
  line-height: 34px;
  color: #556677;
}

.section-features-motivate__copy {
  list-style: none;
  padding-left: 0;
  margin-top: 60px;
}

.section-features-motivate__copy-item {
  display: flex;
  align-items: flex-start;
  line-height: 1.2;
  margin-bottom: 27px;
}

.section-features-motivate__copy-item:before {
  content: " ";
  display: block;
  width: 24px;
  height: 24px;
  background: url('https://static.socialshopwave.com/images/official/Group 4118.svg') no-repeat center;
  background-size: 100%;
  margin-right: 22px;
  flex: none;
}

/*
################
               Section features choice
################
*/

.section-features-choice {
  background: #F1F8FF;
}

.section-features-choice__list {
  display: flex;
  flex-direction: column;
}

.section-features-choice__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 0 75px 0;
}

.section-features-choice__img {
  order: 2;
  display: block;
  margin-left: 0;
}

.section-features-choice__info {
  order: 1;
}

.section-features-choice__title {
  font-family: 'Rubik', sans-serif;
  font-size: 34px;
  color: var(--main-font-color);
  margin-bottom: 30px;
}

.section-features-choice__text {
  font-size: 18px;
  line-height: 34px;
  color: #556677;
}

.section-features-choice__copy{
  list-style: none;
  padding-left: 0;
  margin-top: 60px;
}

.section-features-choice__copy-item {
  display: flex;
  align-items: flex-start;
  line-height: 1.2;
  margin-bottom: 27px;
}

.section-features-choice__copy-item:before {
  content: " ";
  display: block;
  width: 24px;
  height: 24px;
  background: url('https://static.socialshopwave.com/images/official/Group 4118.svg') no-repeat center;
  background-size: 100%;
  margin-right: 22px;
  flex: none;
}

.section-features-choice__copy-text {
  color: #556677;
  font-size: 18px;
}

.section-features-choice__block {
  padding-bottom: 20px;
}

/*
################
               Section features referral
################
*/

.section-features-referral {
  background: #E6F3FF;
}

.section-features-referral__list {
  display: flex;
  flex-direction: column;
}

.section-features-referral__item {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 100px 0 75px 0;
}

.section-features-referral__img {
  order: 1;
  display: block;
  margin-left: 0;
}

.section-features-referral__info {
  order: 2;
  padding-left: 50px;
  margin-top: 70px;
}

.section-features-referral__title {
  font-family: 'Rubik', sans-serif;
  font-size: 34px;
  color: var(--main-font-color);
  margin-bottom: 30px;
}

.section-features-referral__text {
  font-size: 18px;
  line-height: 34px;
  color: #556677;
}

.section-features-referral__copy {
  list-style: none;
  padding-left: 0;
  margin-top: 60px;
}

.section-features-referral__copy-item {
  display: flex;
  align-items: flex-start;
  line-height: 1.2;
  margin-bottom: 27px;
}

.section-features-referral__copy-item:before {
  content: " ";
  display: block;
  width: 24px;
  height: 24px;
  background: url('https://static.socialshopwave.com/images/official/Group 4118.svg') no-repeat center;
  background-size: 100%;
  margin-right: 22px;
  flex: none;
}

.section-features-referral__copy-text {
  color: #556677;
  font-size: 18px;
}

.section-features-referral__block {
  padding-bottom: 20px;
}

/*
################
               Section features vip
################
*/

.section-features-vip {
  background: #FFFFFF;
}

.section-features-vip__list {
  display: flex;
  flex-direction: column;
}

.section-features-vip__item {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 100px 0 75px 0;
}

.section-features-vip__img {
  order: 2;
  display: block;
  margin-left: 0;
}

.section-features-vip__info {
  order: 1;
  margin-top: 70px;
}

.section-features-vip__title {
  font-family: 'Rubik', sans-serif;
  font-size: 34px;
  color: var(--main-font-color);
  margin-bottom: 30px;
}

.section-features-vip__text {
  font-size: 18px;
  line-height: 34px;
  color: #556677;
}

.section-features-vip__copy {
  list-style: none;
  padding-left: 0;
  margin-top: 60px;
}

.section-features-vip__copy-item {
  display: flex;
  align-items: flex-start;
  line-height: 1.2;
  margin-bottom: 27px;
}

.section-features-vip__copy-item:before {
  content: " ";
  display: block;
  width: 24px;
  height: 24px;
  background: url('https://static.socialshopwave.com/images/official/Group 4118.svg') no-repeat center;
  background-size: 100%;
  margin-right: 22px;
  flex: none;
}

.section-features-vip__copy-text {
  color: #556677;
  font-size: 18px;
}

.section-features-vip__block {
  padding-bottom: 20px;
}

/*
################
               Section features marketing
################
*/

.section-features-marketing {
  background: #E6F3FF;
}

.section-features-marketing__list {
  display: flex;
  flex-direction: column;
}

.section-features-marketing__item {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 100px 0 75px 0;
}

.section-features-marketing__img {
  order: 1;
  display: block;
}

.section-features-marketing__info {
  order: 2;
  padding-left: 50px;
}

.section-features-marketing__title {
  font-family: 'Rubik', sans-serif;
  font-size: 34px;
  color: var(--main-font-color);
  margin-bottom: 30px;
}

.section-features-marketing__text {
  font-size: 18px;
  line-height: 34px;
  color: #556677;
}

.section-features-marketing__block {
  padding-bottom: 20px;
}

.section-features-marketing__text-bold {
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 15px;
}

.section-features-marketing__subtext {
  line-height: 25px;
  font-size: 18px;
}

/*
################
               Section features analytics
################
*/

.section-features-analytics {
  background: #FFFFFF;
}

.section-features-analytics__list {
  display: flex;
  flex-direction: column;
}

.section-features-analytics__item {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 100px 0 75px 0;
}

.section-features-analytics__img {
  order: 2;
  display: block;
  margin-left: 0;
}

.section-features-analytics__info {
  order: 1;
  margin-top: 20px;
}

.section-features-analytics__title {
  font-family: 'Rubik', sans-serif;
  font-size: 34px;
  color: var(--main-font-color);
  margin-bottom: 30px;
}

.section-features-analytics__text {
  font-size: 18px;
  line-height: 34px;
  color: #556677;
}

.section-features-analytics__copy {
  list-style: none;
  padding-left: 0;
  margin-top: 60px;
}

.section-features-analytics__copy-item {
  display: flex;
  align-items: flex-start;
  line-height: 1.2;
  margin-bottom: 27px;
}

.section-features-analytics__copy-item:before {
  content: " ";
  display: block;
  width: 24px;
  height: 24px;
  background: url('https://static.socialshopwave.com/images/official/Group 4118.svg') no-repeat center;
  background-size: 100%;
  margin-right: 22px;
  flex: none;
}

.section-features-analytics__copy-text {
  color: #556677;
  font-size: 18px;
}

.section-features-analytics__block {
  padding-bottom: 20px;
}

/*
################
               Section features grid
################
*/

.section-features-grid {
  display: flex;
  flex-wrap: wrap;
}

.section-features-grid__item {
  width: 50%;
  background: #F1F8FF;
  padding: 60px 60px 30px 20px;
}

.section-features-grid__wrapper,
.section-features-grid__wrapper_left {
  max-width: 505px;
  margin-left: auto;
}

.section-features-grid__item:nth-child(2n) {
  background: #E6F3FF;
  padding-left: 60px;
  padding-right: 20px;
}

.section-features-grid__wrapper_left {
  margin-right: auto;
  margin-left: 0;
}

.section-features-grid__image-block {
  margin-bottom: 20px;
  height: 340px;
  display: flex;
  align-items: center;
}

.section-features-grid__img {
  max-width: 85%;
}

.section-features-grid__title {
  font-family: 'Rubik', sans-serif;
  font-size: 34px;
  color: var(--main-font-color);
  margin-bottom: 30px;
  margin-top: 60px;
}

.section-features-grid__text {
  font-size: 18px;
  line-height: 34px;
  color: #556677;
}

/*
################
               Section features app
################
*/

.section-features-app {
  background: #F1F8FF;
  padding: 100px 0;
}

.section-features-app__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.section-features-app__item {
  width: 40%;
  margin-bottom: 80px;
}

.section-features-app__item:nth-last-child(-n+2) {
  margin-bottom: 0;
}

.section-features-app__title {
  font-family: 'Rubik', sans-serif;
  font-size: 20px;
  color: var(--main-font-color);
  margin-bottom: 15px;
}

.section-features-app__text {
  font-size: 18px;
  line-height: 34px;
  color: #556677;
}

.section-features-app__wrapper-img {
  max-height: 650px;
}

section-features-app__img {
  obejct-fit: contain;
}

/*
################
               Section features recommended
################
*/

.section-features-recommended {
  background: #fff;
  padding: 103px 0 120px 0;
}

.section-features-recommended__title {
  max-width: 780px;
  margin: 0 auto;
  font-family: 'Rubik', sans-serif;
  font-size: 34px;
  color: var(--main-font-color);
  margin-bottom: 22px;
  text-align: center;
}

.section-features-recommended__text {
  max-width: 780px;
  margin: 0 auto;
  font-size: 18px;
  color: #556677;
  line-height: 34px;
  margin-bottom: 80px;
  text-align: center;
}

.section-features-recommended__list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.section-features-recommended__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 33.3%;
  margin-bottom: 60px;
}

.section-features-recommended__circle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 20px;
  margin-left: 15px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #11ABEC;
}

.section-features-recommended__ico {
  fill: #fff;
  width: 80px;
  height: 35px;
}

.section-features-recommended__ico path {
  fill: #fff;
}

.section-features-recommended__designation {
  margin-left: 20px;
}

.section-features-recommended__name {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  color: #556677;
  text-align: center;
}

.section-features-recommended__description {
  max-width: 250px;
  font-size: 18px;
  color: #556677;
  text-align: center;
}

  /*
  ################
                 Section quote brands
  ################
  */

.section-quote-brands {
  background: #fff;
  padding: 103px 0 127px 0;
}

.section-quote-brands__title {
  font-family: 'Rubik', sans-serif;
  font-size: 34px;
  color: var(--main-font-color);
  margin-bottom: 52px;
  text-align: center;
}

.section-quote-brands__brand {
  width: 65%;
  margin: 0 auto 65px auto;
}

.section-quote-brands__brand-logo {
  max-width: 128px;
  margin: 0 auto 39px auto;
  vertical-align: middle;
  display: block;
}

.section-quote-brands__brand-quote {
  font-family: 'Rubik', sans-serif;
  font-size: 30px;
  color: var(--main-font-color);
  line-height: 46px;
  margin-bottom: 35px;
  text-align: center;
}

.section-quote-brands__brand-author {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  color: var(--main-font-color);
  text-align: center;
}

.section-quote-brands__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-quote-brands__item {
  max-width: 173px;
  position: relative;
}

.section-quote-brands__logo {
  width: 80%;
  margin: 0 auto;
  display: block;
  transition: all 0.3s ease-out;
  filter: grayscale(1) brightness(0%);
  opacity: 0.5;
}
.section-quote-brands__item:hover .section-quote-brands__logo {
  filter: none;
  opacity: 1;
}


/*
################
               Section apps recommended
################
*/

.section-apps-recommended {
  background: #fff;
  padding: 103px 0 120px 0;
}

.section-apps-recommended__title {
  max-width: 780px;
  margin: 0 auto;
  font-family: 'Rubik', sans-serif;
  font-size: 34px;
  color: var(--main-font-color);
  margin-bottom: 22px;
  text-align: center;
}

.section-apps-recommended__text {
  max-width: 780px;
  margin: 0 auto;
  font-size: 18px;
  color: #556677;
  line-height: 34px;
  margin-bottom: 80px;
  text-align: center;
}

.section-apps-recommended__list {
  display: flex;
  flex-wrap: wrap;
}

.section-apps-recommended__item {
  display: flex;
  width: 33.3%;
  margin-bottom: 60px;
}

.section-apps-recommended__circle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #11ABEC;
}

.section-apps-recommended__ico {
  fill: #fff;
  width: 80px;
  height: 35px;
}

.section-apps-recommended__ico path {
  fill: #fff;
}

.section-apps-recommended__designation {
  margin-left: 20px;
}

.section-apps-recommended__name {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  color: #556677;
}

.section-apps-recommended__description {
  max-width: 250px;
  font-size: 14px;
  color: #556677;
}

/*
################
               Section slide onboarding
################
*/
.welcome-growave__inner {
  width: 100%;
  height: 100%;
  background: #F1F8FF url('https://static.socialshopwave.com/images/official/header-form__bg.svg') no-repeat right top;
}

.loyalty-growave__inner {
  width: 100%;
  height: 100%;
  background: #F1F8FF url('https://static.socialshopwave.com/images/official/Group 169.svg') no-repeat right top;
}

.reviews-growave__inner {
  width: 100%;
  height: 100%;
  background: #F1F8FF url('https://static.socialshopwave.com/images/official/Group 174.svg') no-repeat right top;
}

.wishlist-growave__inner {
  width: 100%;
  height: 100%;
  background: #F1F8FF url('https://static.socialshopwave.com/images/official/wishlist1.png') no-repeat right top;
}

.login-growave__inner {
  width: 100%;
  height: 100%;
  background: #F1F8FF url('https://static.socialshopwave.com/images/official/Group 168.svg') no-repeat right top;
}

.instagram-growave__inner {
  width: 100%;
  height: 100%;
  background: #F1F8FF url('https://static.socialshopwave.com/images/official/Group 183.svg') no-repeat right top;
}

.section-slide .container {
  height: 100%;
}

.section-slide:first-of-type {
  display: flex;
}
.section-slide {
  display: none;
  align-items: center;
  height: calc(100vh - 70px);
  padding-top: 30px;
  background: #f1f8ff;
}

.welcome-growave {
  padding-right: 10px;
}

.section-slide__list {
  display: flex;
  height: 100%;
}

.section-slide__info {
  width: 60%;
  height: 100%;
  background: #F1F8FF;
  box-shadow: -300px 0 0 0 #F1F8FF;
  display: flex;
  flex-direction: column;
  padding-right: 50px;
  padding-top: 15px;
}

.section-slide__title {
  font-weight: bold;
  font-size: 40px;
  margin: 0px;
  margin-bottom: 47px;
  color: var(--main-font-color);
}

.section-slide__description {
  min-height: 310px;
}

.section-slide__text {
  font-size: 16px;
  line-height: 26px;
  color: #6D6C6C;
  margin: 0px;
  margin-bottom: 20px;
}

.welcome-growave .section-slide__question {
  text-align: right;
}

.section-slide__question {
  text-align: right;
}

.welcome-growave .section-slide__question {
  margin-right: 66px;
}

.login-growave .section-slide__question {
  margin-right: 66px;
}

.section-slide__btn-next {
  max-width: 148px;
  width: 100%;
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 45px;
  background: #2699FB;
  color: #ffffff;
  border-radius: 4px;
  border: none;
  outline: none;
}

.section-slide__block {
  width: 200px;
  height: 100%;
  background: -moz-linear-gradient(left, rgba(241,248,255,1) 0%, rgba(255,255,255,0) 100%);
  background: -webkit-linear-gradient(left, rgba(241,248,255,1) 0%,rgba(255,255,255,0) 100%);
  background: linear-gradient(to right, rgba(241,248,255,1) 0%,rgba(255,255,255,0) 100%);
}

.section-slide__question-text {
  margin-right: 39px;
  color: #455A64;
  font-size: 16px;
}

.section-slide__btn-skip {
  font-size: 14px;
  margin-left: 54px;
  color: #2699FB;
  background: transparent;
  border: none;
  outline: none;
}

.onboarding .header__nav__list {
  display: none;
}

.onboarding .header__logo {
  pointer-events: none;
}

.onboarding .footer {
  display: none;
}

/*
################
   Price Page
################
*/
.old-plan-message {
  width: 50%;
  margin: 0 auto;
  padding: 10px;
  font-family: Roboto;
  font-style: normal;
  text-align: center;
  color: #fff;
  background: #013A52;
  border-radius: 0 0 10px 10px;
}

.old-plan-message__title {
  font-weight: 500;
  font-size: 16px;
}

.old-plan-message__desc {
  font-weight: normal;
  font-size: 16px;
}

.section-tariffs {
  padding: 56px 0 112px;
  font-family: Rubik,sans-serif;
  font-style: normal;
  color: #013A52;
}

.section-tariffs__title {
  margin-bottom: 65px;
  font-weight: normal;
  font-size: 38px;
  line-height: 45px;
  text-align: center;
}
.switcher {
  display: flex;
  align-items: center;
  justify-content: center;
}

.switcher__toggler {
  display: inline-block;
  margin: 10px;
  vertical-align: middle;
  font-family: Arial;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
}

.switcher__toggler_active {
  font-weight: bold;
}

.switcher__toggler_annually {
  position: relative;
}

.switcher__toggler_annually:before {
  content: 'SAVE 20%';
  position: absolute;
  top: -20px;
  right: 0;
  width: 55px;
  font-family: Arial;
  font-style: normal;
  font-weight: bold;
  font-size: 11px;
  line-height: 13px;
  color: #6ABF6E;
}

.switcher__toggle {
  position: relative;
  width: 51px;
  height: 31px;
  border-radius: 100px;
  background: #11ABEC;
  overflow: hidden;
  box-shadow: inset 0 0 2px 1px rgb(0 0 0 / 5%);
}

.switcher__checkbox {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 100;
  cursor: pointer;
}

.switcher__switch {
  position: absolute;
  left: 2px;
  top: 2px;
  bottom: 2px;
  right: 37.5%;
  z-index: 1;
  background-color: #fff;
  border-radius: 36px;
  transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-property: left, right;
  transition-delay: 0s, 0.08s;
  box-shadow: 0 1px 2px rgb(0 0 0 / 20%);
}

.switcher__checkbox:checked ~ .switcher__switch {
  right: 2px;
  left: 42.5%;
  transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-property: left, right;
  transition-delay: 0.08s, 0s;
}

.section-tariffs__list {
  position: relative;
}

.slick-track {
  display: flex;
}

.section-tariffs__list .slick-list {
  padding: 34px 0!important;
}

.section-tariffs__list .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  font-size: 0;
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  line-height: 0;
}

.section-tariffs__list .slick-next {
  right: -60px;
}

.section-tariffs__list .slick-prev {
  left: -80px;
}

.section-tariffs__list .slick-disabled {
  opacity: 0.6;
  cursor: initial;
}

.section-tariffs__list .slick-arrow:before {
  content: ' ';
  position: absolute;
  top: 6px;
  left: 6px;
  height: 28px;
  width: 28px;
  background-image: url(https://static.socialshopwave.com/images/official/presliderindex.svg);
  background-size: 28px 28px;
}

.section-tariffs__list .slick-next:before {
  transform: rotate(180deg);
}

.plan {
  position: relative;
  width: 25%;
  margin: 0 10px;
  text-align: center;
  background: #fff;
  box-shadow: 0 0 60px 2px rgba(0, 0, 0, 0.05);
}

.plan_active {
  border: 1px solid rgba(1, 58, 82, 0.3);
}

.plan_popular:before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -28px;
  right: 0;
  padding: 8px 12px;
  font-weight: 500;
  font-size: 11px;
  line-height: 13px;
  background: #FFC444;
  border-radius: 5px 5px 0 0;
  color: #013A52;
}

.plan_popular-left:before {
  right: unset;
  left: 0;
}

.plan__type {
  position: relative;
  padding: 20px 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  background: #F2F2F2;
  overflow: hidden;
}

.plan__type-text {
  text-transform: uppercase;
}

.discounts {
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(45deg);
  width: 150px;
  overflow: hidden;
  height: 150px;
  text-align: center;
}

.discounts__ribbon {
  padding: 4px 0;
  font-weight: bold;
  font-size: 10px;
  color: #013A52;
  line-height: 12px;
  background: #FFC444;
  transition: transform .3s ease;
  transform: translate(0px, -22px);
}

.discounts__ribbon_active {
  transform: translate(0px, 0px);
}


.plan__type_dark {
  background: #013A52;
  color: #fff;
}

.plan__price {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.plan__price_hide {
  display: none;
}

.plan__price-title {
  font-family: Roboto,sans-serif;
  font-weight: bold;
  font-size: 52px;
  line-height: 61px;
}

.plan__price-subtitle {
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: rgba(1, 58, 82, 0.3);
}

.plan__for {
  padding: 21px;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
}

.plan__features {
  min-height: 220px;
  margin: 0 16px;
  padding: 16px 0;
  text-align: start;
  border-color: #c4c4c482;
  border-width: 1px 0;
  border-style: solid;
}

.plan__features-title {
  margin-bottom: 16px;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
}

.plan__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.plan__item {
  display: flex;
  align-items: center;
  margin: 5px 0;
}

.plan__text {
  margin: 0 0 0 10px;
}

.plan__btn-wrapper {
  padding: 20px;
}

.plan__btn {
  width: 100%;
  padding: 12px 20px;
  font-weight: 500;
  font-size: 13px;
  line-height: 15px;
  text-align: center;
  background: #fff;
  border: 2px solid #013A52;
  border-radius: 4px;
  display: inline-block;
  color: inherit;
  text-transform: uppercase;
  cursor: pointer;
}

.plan__btn:hover {
  background: #013A52;
  border-color: #013A52;
  color: #fff;
}

.plan__btn_dark {
  background: #013A52;
  color: #fff;
  transition: all 0.5s ease;
}

.plan__btn_dark:hover {
  padding: 10px;
  width: 95%;
  font-size: 11.7px;
  box-shadow: 0 0 60px 2px rgba(0, 0, 0, 0.05);
}

.plan__notice {
  font-weight: 500;
  font-size: 13px;
  padding: 12px 0;
  text-align: center;
  color: #013A52;
  background: rgba(1, 58, 82, 0.1);
  border-radius: 4px;
}

.plan__notice_versus {
  margin-top: 10px;
}

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

.plan__notice-text {
  position: absolute;
  bottom: 70px;
  left: 20px;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: rgba(1, 58, 82, 0.3);
}

.plan__notice-text_versus {
  position: unset;
}

.plan__features_active {
  border-width: 1px 0 0;
}

.section-clients {
  background: #F1F8FF;
}

.section-clients__list {
  position: relative;
  padding: 40px 0;
}

.section-clients__logo {
  width: 100%;
  height: 70px;
  padding: 0 20px;
}

.section-clients__item:hover .section-clients__logo {
  filter: none;
  opacity: 1;
}

.section-clients__logo:hover {
  width: 100%;
  height: 70px;
  padding: 0 20px;
  transition: all 0.3s ease-out;
  filter: grayscale(1) brightness(0%);
  opacity: 0.5;
}

.slick-list {
  overflow: hidden;
}

.section-clients__list .slick-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  display: flex;
  justify-content: center;
  padding: 0;
  list-style: none;

}

.section-clients__list .slick-dots li button {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  font-size: 0;
  line-height: 0;
  color: transparent;
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
}

.section-clients__list .slick-dots li button:before {
  content: "\2022";
  width: 7px;
  height: 7px;
  font-size: 23px;
  opacity: 0.25;
  color: black;
}

.section-clients__list .slick-dots .slick-active button:before {
  opacity: 1;
}

.modal__title {
  font-weight: bold;
  font-size: 28px;
  line-height: 33px;
  color: #013A52;
}

.modal .modal__desc {
  margin-bottom: 24px;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #013A52;
}

.modal-body_bold {
  padding: 32px;
}

.modal__form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.modal__input {
  width: 100%;
  padding: 18px;
  margin-bottom: 12px;
  border: 1px solid rgba(112, 112, 115, 0.7);
  border-radius: 4px;
  font-size: 13px;
  line-height: 16px;
  color: #013A52;
  outline-color: #013A52;
}

.modal__input_invalid {
  border: 1px solid red;
}

.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}

.modal__select {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 12px;
  color: #013A52;
  cursor: pointer;
}

.modal__selected {
  padding: 17px;
  border: 1px solid rgba(112, 112, 115, 0.7);
  border-radius: 4px;
  font-size: 13px;
  line-height: 16px;
  color: #013A52;
}

.modal__selected_invalid {
  border-color: red;
}

.modal__selected:after {
  content: "";
  background: url(https://static.socialshopwave.com/images/official/presliderindex.svg) no-repeat;
  transform: rotateZ(-90deg);
  width: 18px;
  height: 18px;
  position: absolute;
  top: 16px;
  right: 20px;
}
.modal__selected.active {
  font-size: 13px;
  line-height: 15px;
  border-radius: 4px 4px 0 0;
}

.modal__options {
  display: none;
  padding: 0;
  border: 1px solid rgba(112, 112, 115, 0.7);
  box-sizing: border-box;
  border-radius: 0 0 4px 4px;
  list-style: none;
}
.modal__option {
  margin: 0;
  padding: 12px 0;
  text-indent: 15px;
  font-family: Rubik,sans-serif;
  font-size: 16px;
}
.modal__option:hover {
  font-weight: 500;
  background: #E6F3FF;
}
.modal__option[rel="hide"] {
  display: none;
}

.accordion__arrow:before,
.accordion__arrow:after,
.accordion__desc {
  transition: all 0.25s ease-in-out;
}

.accordion__card {
  animation: flipdown 0.5s ease both;
}

.accordion__title {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.accordion__title {
  margin: 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
}

.accordion__desc {
  width: 90%;
  margin-top: 8px;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
}

.accordion__link {
  position: relative;
  z-index: 100;
}

.accordion {
  perspective: 900;
  width: 690px;
  padding: 0;
  margin: 0 auto;
  font-family: Rubik;
  font-style: normal;
  color: #013A52;
  list-style: none;
}

.accordion__card {
  position: relative;
  padding: 32px;
  margin: 16px 0;
  background: #FFFFFF;
  box-shadow: 0 0 60px 2px rgba(0, 0, 0, 0.05);
}

.accordion__card:nth-of-type(1) {
  animation-delay: 0.5s;
}

.accordion__card:nth-of-type(2) {
  animation-delay: 0.75s;
}

.accordion__card:nth-of-type(3) {
  animation-delay: 1s;
}

.accordion__arrow {
  position: absolute;
  right: 40px;
  transform: translate(-6px, 0);
  margin-top: 10px;
}

.accordion__arrow:before,
.accordion__arrow:after {
  content: "";
  position: absolute;
  width: 3px;
  height: 9px;
  background-color: #000;
}
.accordion__arrow:before {
  transform: translate(-2px, 0) rotate(45deg);
}
.accordion__arrow:after {
  transform: translate(2px, 0) rotate(-45deg);
}
.accordion__checkbox {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.accordion__checkbox:checked ~ .accordion__desc {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.accordion__checkbox:checked ~ .accordion__arrow:before {
  transform: translate(2px, 0) rotate(45deg);
}
.accordion__checkbox:checked:checked ~ .accordion__arrow:after {
  transform: translate(-2px, 0) rotate(-45deg);
}

@keyframes flipdown {
  0% {
    opacity: 0;
    transform-origin: top center;
    transform: rotateX(-90deg);
  }
  5% {
    opacity: 1;
  }
  80% {
    transform: rotateX(8deg);
  }
  83% {
    transform: rotateX(6deg);
  }
  92% {
    transform: rotateX(-3deg);
  }
  100% {
    transform-origin: top center;
    transform: rotateX(0deg);
  }
}

.section-faq {
  padding: 106px 0 76px 0;
  background: #FFF;
}

.section-faq__title {
  margin-bottom: 75px;
  font-size: 34px;
  font-family: 'Rubik', sans-serif;
  text-align: center;
  color: var(--main-font-color);
}

.section-faq__list {
  display: flex;
  flex-wrap: wrap;
}

.section-faq__list-item {
  width: 50%;
  margin-bottom: 44px;
  padding-right: 130px;
}

.section-faq__list-item:nth-of-type(2n) {
  padding-right: 70px;
}

.section-faq__list-name {
  margin-bottom: 12px;
  font-size: 20px;
  font-family: 'Rubik', sans-serif;
  color: var(--main-font-color);
}

.section-faq__list-text {
  font-size: 18px;
  line-height: 34px;
  color: #556677;
}

.section-faq__list-text a {
  color: #11ABEC;
  text-decoration: none;
}

.section-versus {
  padding: 100px 0;
  font-family: Rubik;
  font-style: normal;
  color: #013A52;
  background: #F5FAFF;
}

.section-versus__title {
  margin-bottom: 20px;
  font-weight: normal;
  font-size: 38px;
  line-height: 45px;
  text-align: center;
}

.section-versus__desc {
  margin-bottom: 55px;
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
}

.section-versus__wrapper {
  position: relative;
  display: flex;
  background: #FFFFFF;
  box-shadow: 0 0 40px 2px rgba(0, 0, 0, 0.07);
}

.section-versus__apps {
  width: 50%;
  padding: 56px 96px;
}

.section-versus__apps_background {
  background: rgba(244, 244, 244, 0.44);
}

.section-versus__app {
  display: flex;
  align-items: start;
  margin-bottom: 18px;
}

.section-versus__app_border {
  border-bottom: 1px solid #c4c4c482;
  padding-bottom: 20px;
}

.section-versus__app-name {
  margin-left: 13px;
}

.section-versus__app-title {
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
}

.section-versus__app-title_bold {
  font-weight: 500;
  font-size: 19.9368px;
}

.section-versus__app-desc {
  margin-top: 5px;
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  opacity: 0.7;
}

.section-versus__app-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
}

.section-versus__icon {
  position: absolute;
  top: calc(50% - 37px);
  left: calc(50% - 37px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 40px 1px rgb(0 0 0 / 5%);
}

.section-versus__list {
  padding: 25px 0;
  border-top: 1px solid #c4c4c482;
  border-bottom: 1px solid #c4c4c482;
  list-style: none;
}

.section-versus__item {
  display: flex;
  align-items: center;
  margin: 5px 0 12px;
}

.section-versus__text {
  margin: 0 0 0 10px;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
}

.section-versus__sub-list {
  list-style: disc;
}

.section-versus__sub-item {
  margin-bottom: 6px;
}

.section-versus__price {
  margin-top: 30px;
  margin-bottom: 17px;
  font-weight: 500;
  font-size: 32.76px;
  line-height: 38px;
  text-align: center;
}

.section-versus__btn {
  width: 100%;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 13px;
  line-height: 15px;
  text-align: center;
  background: #fff;
  border-radius: 4px;
  border: 2px solid #013A52;
}

.section-versus__btn:hover {
  background: #013A52;
  border-color: #013A52;
  color: #fff;
}

.section-brands {
  padding: 100px 0;
  font-family: Rubik;
  font-style: normal;
  color: #013A52;
}

.section-brands__title {
  margin-bottom: 100px;
  font-weight: normal;
  font-size: 38px;
  line-height: 45px;
  text-align: center;
}

.section-brands__inner {
  display: flex;
}

.section-brand__video {
  width: 50%;
}

.section-brands__links {
  width: 50%;
  margin-left: 57px;
}

.section-brands__img {
  margin-bottom: 12px;
}

.section-brands__img_lower {
  display: none;
}

.section-brands__text {
  margin-bottom: 56px;
  font-weight: normal;
  font-size: 24px;
  line-height: 28px;
}

.section-brands__customer {
  margin-bottom: 37px;
}

.section-brands__name {
  margin-bottom: 8px;
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
}

.section-brands__position {
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  opacity: 0.7;
}

.section-brands__list {
  display: flex;
  justify-content: center;
  padding: 50px 0;
  background: #F1F8FF;
}

.section-versus__prices-standart {
  display: flex;
  align-items: flex-end;
  margin-bottom: 15px;
  font-family: 'Rubik', sans-serif;
  font-size: 19px;
}

.section-versus__prices-standart-big {
  margin-right: 10px;
  font-size: 40px;
  line-height: 34px;
}

.section-versus__left .section-versus__prices-standart-big {
  color: #6ABF6E;
}

.section-versus__right .section-versus__prices-standart-big {
  color: #FF6E5C;
}
.section-versus__prices-biggest {
  font-size: 17px;
  color: #556677;
}
.section-versus__left .section-versus__prices {
  padding-top: 12px;
  padding-bottom: 10px;
}

/*
################
               Section startup
################
*/

.section-header-startup {
  background: #F1F8FF;
  padding: 77px 0 107px 0;
}

.section-header-startup .container {
  display: flex;
}

.section-header-startup__img {
  margin-right: 20px;
}

.section-header-startup__name {
  font-family: 'Rubik', sans-serif;
  font-size: 48px;
  color: var(--main-font-color);
  line-height: 64px;
  margin: 0 0 30px;
  font-weight: 400;
}

.section-header-startup__text {
  font-size: 18px;
  color: #556677;
  line-height: 34px;
  margin-bottom: 60px;
}

.section-header-startup__right .button {
  margin-right: 20px;
}

.section-header-startup__notice {
  font-size: 14px;
  line-height: 24px;
  color: #556677;
}

/*
################
               Section quote white
################
*/

.section-quote-white {
  padding: 100px 0;
}

.section-quote-white .container {
  display: flex;
  align-items: center;
}

.section-quote-white__left {
  margin-right: auto;
}

.section-quote-white__title {
  font-family: 'Rubik', sans-serif;
  font-size: 34px;
  color: var(--main-font-color);
  margin-bottom: 20px;
}

.section-quote-white__text {
  font-size: 18px;
  color: #556677;
  margin-bottom: 45px;
}

.section-quote-white__items {
  display: flex;
  flex-wrap: wrap;
}

.section-quote-white__item {
  width: 50%;
  margin-bottom: 45px;
}

.section-quote-white__item-ico {
  margin-bottom: 15px;
  width: 40px;
  height: 40px;
  fill: #00a8ef;
}

.section-quote-white__item-desc {
  font-size: 18px;
  color: var(--main-font-color);
}

.section-quote-white .section-features-quote__block {
  width: 41%;
  margin: 0;
  padding: 54px 0 40px 0;
  background: #F1F8FF url(https://static.socialshopwave.com/images/official/quote-white.svg) no-repeat 26px 40px;
}

.section-quote-white .section-features-quote__block-text {
  font-size: 26px;
}

/*
################
               Pricing page popup modal
################
*/

.pricing-page.modal .modal-title {
  margin-bottom: 0px;
  margin-top: 20px;
  text-align: center;
}

.pricing-page.modal .modal-body__title h4 {
  font-size: 18px;
  color: #556677;
  line-height: 34px;
}

.pricing-page.modal form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.pricing-page.modal form .form-group {
  width: 49%;
  margin-bottom: 25px;
}

.section-help__list-item a {
  cursor: pointer;
}

.pricing-page.modal form .form-group textarea#message-text {
  width: 100% !important;
}

.pricing-page.modal .text-form {
    display: none;
}
.pricing-page.modal .select-form {
    margin-bottom: 20px;
}

.select-form .form__field {
    padding: 5px;
    height: 35px;
}


@media all and (max-width: 768px){
  .pricing-page.modal form .form-group {
    width: 100%;
  }

  .pricing-page.modal .modal-title {
    font-size: 21px;
  }

  .pricing-page.modal .modal-body__title h4 {
    font-size: 14px;
  }

  .select-form .form__field {
      font-size: 13px;
  }
}

/*
################
               Section quote blue
################
*/

.section-quote-blue {
  padding: 100px 0;
  background: #F1F8FF;
}

.section-quote-blue .container {
  display: flex;
  align-items: center;
}

.section-quote-blue__left {
  margin-right: auto;
}

.section-quote-blue__title {
  font-family: 'Rubik', sans-serif;
  font-size: 34px;
  color: var(--main-font-color);
  margin-bottom: 20px;
}

.section-quote-blue__text {
  font-size: 18px;
  color: #556677;
  margin-bottom: 45px;
}

.section-quote-blue__left .button {
  margin-right: 20px;
}

.section-quote-blue__notice {
  font-size: 14px;
  color: #556677;
}

.section-quote-blue .section-features-quote__block {
  width: 41%;
  margin: 0;
  padding: 54px 0 40px 0;
}

.section-quote-blue .section-features-quote__block-text {
  font-size: 26px;
}

/*
################
               Section login
################
*/

.section-login {
  padding: 157px 0 250px 0;
}

.section-login__title {
  font-size: 48px;
  font-family: 'Rubik', sans-serif;
  color: var(--main-font-color);
  line-height: 64px;
  margin: 0 0 21px;
  text-align: center;
  font-weight: 400;
}

.section-login__notice {
  font-size: 18px;
  color: #556677;
  margin-bottom: 50px;
  text-align: center;
}

.section-login .form {
  max-width: 510px;
  margin: 0 auto;
  padding-right: 0;
}

/*
################
               Section partners login
################
*/

.section-partners-login {
  background: #F1F8FF;
}

.section-partners-login-theme-last {
  padding: 80px 0 77px 0;
  background: #F1F8FF url(https://static.socialshopwave.com/images/official/form-section_bg.svg) no-repeat center;
  background-size: cover;
}

.section-partners-login-theme-header {
  background: #F1F8FF url(https://static.socialshopwave.com/images/official/MaskGroup4.svg) no-repeat top center;
  background-size: cover;
  padding: 188px 0 228px 0;
}

.section-partners-login__title {
  font-family: 'Rubik', sans-serif;
  font-size: 48px;
  line-height: 64px;
  color: var(--main-font-color);
  margin: 0 0 20px;
  text-align: center;
  font-weight: 400;
}

.section-partners-login__subtitle {
  font-size: 18px;
  color: #556677;
  text-align: center;
  margin-bottom: 50px;
}

.form-partners-login {
  display: flex;
  max-width: 770px;
  margin: 0 auto 18px auto;
  padding: 0;
  position: relative;
}

.form-partners-login__name {
  width: 200px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
}

.form-partners-login__email {
  width: 200px;
  border-radius: 0;
}

.form-partners-login__password {
  width: 200px;
  border-radius: 0;
  border-right: 0;
  border-left: 0;
}

.section-partners-login__notice {
  font-size: 14px;
  color: #556677;
  text-align: center;
}

.section-partners-login__notice a {
  color: #11ABEC;
  font-weight: 600;
  text-decoration: none;
}

/*
################
               Section partners features
################
*/

.section-partners-features {
  padding: 106px 0 150px 0;
}

.section-partners-features__title {
  font-family: 'Rubik', sans-serif;
  font-size: 34px;
  color: var(--main-font-color);
  text-align: center;
  margin-bottom: 60px;
}

.section-partners-features__items {
  display: flex;
  flex-wrap: wrap;
}

.section-partners-features__item {
  width: 50%;
  padding-right: 130px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}

.section-partners-features__item:nth-of-type(2n) {
  padding-right: 0;
}

.section-partners-features__ico {
  width: 40px;
  height: 40px;
  margin-right: 20px;
  flex: none;
}

.section-partners-features__text {
  font-size: 18px;
  line-height: 34px;
  color: #556677;
}

/*
################
               Section contacts
################
*/

.section-contacts {
  background: #F1F8FF;
  padding: 120px 0;
}

.section-contacts .container {
  display: flex;
}

.section-contacts__left {
  max-width: 585px;
  width: 100%;
  margin-right: auto;
  background: url(https://static.socialshopwave.com/images/official/message_bg.svg) no-repeat bottom right;
}

.section-contacts__title {
  font-size: 48px;
  font-family: 'Rubik', sans-serif;
  color: var(--main-font-color);
  line-height: 64px;
  margin: 0 0 21px;
  font-weight: 400;
}

.section-contacts__text {
  font-size: 18px;
  color: #556677;
  line-height: 34px;
}

.section-contacts__text a {
  text-decoration: none;
  color: #11ABEC;
}

.section-contacts__right {
  max-width: 470px;
  width: 100%;
}

.form-contacts {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  align-items: flex-start;
}

.form-contacts .form__field {
  width: 100%;
  margin-bottom: 10px;
}

.form-contacts .form__textarea {
  margin-bottom: 10px;
}

.form-contacts__horizontal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.section-contacts__notice {
  font-size: 14px;
  color: #556677;
  line-height: 24px;
  padding-right: 20px;
}

.section-contacts__notice a {
  text-decoration: none;
  color: #11ABEC;
}

/*
################
               Section contacts
################
*/

.section-page-text {
  padding: 120px 0;
  font-size: 18px;
  color: #556677;
  line-height: 34px;
}

.section-page-text h1 {
  font-size: 48px;
  font-family: 'Rubik', sans-serif;
  color: var(--main-font-color);
  line-height: 64px;
  font-weight: 400;
  margin: 0;
  margin-bottom: 67px;
}

.section-page-text h2 {
  font-size: 34px;
  font-family: 'Rubik', sans-serif;
  color: var(--main-font-color);
  font-weight: 400;
  margin-top: 40px;
}


.section-page-text a {
  text-decoration: none;
  color: #11ABEC;
}

/*
################
               Section integrations
################
*/

.section-integrations {
  padding: 188px 0 150px 0;
  background: #F1F8FF url(https://static.socialshopwave.com/images/official/integration_header_bg.svg) no-repeat top center;
  background-size: 100%;
}

.section-integrations__title {
  font-size: 48px;
  font-family: 'Rubik', sans-serif;
  color: var(--main-font-color);
  line-height: 64px;
  font-weight: 400;
  text-align: center;
  margin: 0;
  margin-bottom: 21px;
}

section.partners h2.section-integrations__text {
  margin-bottom: 0px;
}

.section-integrations__text {
  font-size: 18px;
  color: #556677;
  line-height: 34px;
  text-align: center;
  margin-bottom: 80px;
}

section.partners a.button.button-theme-transparent {
  display: block;
  text-align: center;
  width: 185px;
  margin: 40px auto 140px;
}

.section-integrations__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 27px;
}

.section-integrations__list-item {
  max-width: 270px;
  width: 100%;
  background: #fff;
  padding: 20px 30px;
  margin: 0 23px 23px 0;
}

.section-integrations__list-img {
  width: 200px;
  height: 115px;
  display: block;
  vertical-align: middle;
  margin: 0 auto 10px auto;
  object-fit: contain;
}

.section-integrations__list-title {
  font-size: 16px;
  font-weight: bold;
  color: var(--main-font-color);
  margin-bottom: 10px;
  text-align: center;
}

.section-integrations__list-text {
  font-size: 14px;
  color: #556677;
  line-height: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.section-integrations__list-link {
  font-size: 14px;
  color: #11ABEC;
  text-align: center;
  display: block;
  margin-bottom: 20px;
}

.section-integrations__notice {
  font-size: 14px;
  color: #556677;
  line-height: 34px;
}

.section-integrations__notice a {
  color: #11ABEC;
  text-decoration: none;
}

/*
################
               Section book a demo
################
*/

.section-book-demo {
  padding: 100px 0 100px 0;
}

.section-book-demo__title {
  font-size: 48px;
  font-family: 'Rubik', sans-serif;
  color: var(--main-font-color);
  line-height: 64px;
  font-weight: 400;
  text-align: center;
  margin: 0;
  margin-bottom: 21px;
}

.section-book-demo__subtitle {
  font-size: 18px;
  color: #556677;
  line-height: 34px;
  text-align: center;
  margin-bottom: 80px;
}

.section-book-demo__form {
  display: flex;
  flex-direction: column;
  max-width: 550px;
  margin: 0 auto;
}

.section-book-demo__form .form__field {
  margin-bottom: 20px;
}

.section-book-demo__form .button {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  padding: 17px 31px 17px 31px;
}

/*
################
               Section ssw is growave
################
*/

.section-sswisgrowave {
  padding: 100px 0;
}

.section-sswisgrowave .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-sswisgrowave__title {
  font-size: 48px;
  font-family: 'Rubik', sans-serif;
  color: var(--main-font-color);
  line-height: 64px;
  font-weight: 400;
  text-align: center;
  margin: 0;
  margin-bottom: 21px;
}

.section-sswisgrowave__text {
  font-size: 18px;
  color: #556677;
  line-height: 34px;
  text-align: center;
  margin-bottom: 80px;
}

.section-sswisgrowave__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}

.section-sswisgrowave__logo:first-of-type {
  width: 200px;
}

.section-sswisgrowave__logo {
  width: 150px;
  margin: 0 75px;
}

/*
################
               Section about us
################
*/

.section-about-us {
  padding: 100px 0;
}

.section-about-us__title {
  font-size: 48px;
  font-family: 'Rubik', sans-serif;
  color: var(--main-font-color);
  line-height: 64px;
  font-weight: 400;
  text-align: center;
  margin: 0;
  margin-bottom: 21px;
}

.section-about-us__text {
  font-size: 18px;
  color: #556677;
  line-height: 34px;
  text-align: center;
  margin-bottom: 80px;
}

.section-about-us__text p {
  margin: 50px 0;
}

.section-about-us__features {
  display: flex;
  justify-content: space-between;
}

.section-about-us__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-about-us__feature-number {
  font-size: 34px;
  font-family: 'Rubik', sans-serif;
  color: var(--main-font-color);
  text-align: center;
}

.section-about-us__feature-title {
  font-size: 18px;
  color: #556677;
  line-height: 34px;
  text-align: center;
}

/*
################
 customers page
################
*/

.section-amirisu-shop {
  background: #E6F3FF;
}

.section-plant-essentials {
  background: #F1F8FF;
}

.customer-stories {
  display: flex;
  padding: 40px 0;
  font-family: Rubik;
}

.customer-stories__title {
  margin-bottom: 23px;
  font-weight: normal;
  font-size: 48px;
  line-height: 57px;
  color: var(--main-font-color);
}

.customer-stories__desc {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #556677;
}

.customer-stories__customer {
  margin-top: 60px;
}

.customer-stories__info {
  position: relative;
  width: 50%;
  padding: 10px 0 10px 90px;
  font-size: 12px;
  line-height: 19px;
  color: #fff;
  background: #11ABEC;
  border-radius: 50px 26.2391px 0 26.2391px;
}

.customer-stories__info-title {
  font-size: 16px;
  font-weight: bold;
}

.customer-stories__info-desc {
  margin-bottom: 0;
}

.customer-stories__info-img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 85px;
  height: 86px;
}

.customer-stories__review {
  position: relative;
  display: flex;
  padding: 20px;
  font-size: 14px;
  font-weight: 400;
  color: var(--main-font-color);
  background: #ffffff;
  border-radius: 0 20px 20px 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.customer-stories__review-wrapper {
  width: 50%;
  font-size: 13px;
  font-weight: 500;
}

.customer-stories__review-text {
  font-weight: 400;
  color: var(--main-font-color);
}

.customer-stories__review-img {
  position: absolute;
  right: 0;
  bottom: 38px;
}

.customer-stories__review-author {
  position: absolute;
  bottom: -56px;
  right: 0;
  width: 50%;
}

.customer-stories__review-info {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px 10px 0 10px;
  width: 100%;
  font-size: 12px;
  line-height: 19px;
  background: #F98181;
  color: #fff;
  border-radius: 18.2301px 0px 18.2301px;
}

.customer-stories__review-info-title {
  font-size: 16px;
  font-weight: bold;
}

.customer-stories__review-info_blue {
  background: #AAE46B;
}

.customer-stories__customer_img-right {
  margin-bottom: 70px;
}

.customer-stories__review_img-right {
  border-radius: 20px 20px 0 20px;
}

.customer-stories__customer_img-left {
  margin: 80px 0 60px;
}

.customer-stories__review_img-left {
  justify-content: flex-end;
  border-radius: 20px;
}

.customer-stories__review-wrapper_img-left {
  width: 67%;
}

.customer-stories__review-author_img-left {
  left: 0;
}

.customer-stories__review-img_img-left {
  left: 0;
}

.customer-stories__review-info_img-left {
  border-radius: 0 18.2301px;
}

.customer-stories__analytics-list {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 20px auto;
}

.customer-stories__analytics-item {
  width: 150px;
  height: 130px;
  flex: 1 1 auto;
  margin: 10px;
  padding: 10px;
  font-size: 12px;
  font-weight: 300;
  color: var(--main-font-color);
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.customer-stories__analytics-title {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
}

.customer-stories__analytics-desc {
  font-weight: 400;
}

.customer-stories__analytics-img {
  width: 50px;
  margin-right: 10px;
}

.section-stories {
  padding: 60px 0;
  background: #F1F8FF;
}

.section-stories__title {
  font-family: 'Roboto', sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-transform: capitalize;
  text-align: center;
  color: var(--main-font-color);
}

.section-stories__list {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}

.section-stories__list-item {
  display: flex;
  flex-direction: column;
  width: 25%;
  padding: 40px 0;
}

.section-stories__list-title {
  margin: 40px 0;
}

.section-stories__list-description {
  height: 70px;
  margin-bottom: 20px;
  font-family: 'Roboto',sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--main-font-color);
}

.section-stories__list-link {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  color: #4790FD;
}

.section-features-growave {
  padding: 60px;
  background: #FAFCFF;
}

.section-features-growave__title {
  width: 100%;
  margin: 0 0 62px 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 48px;
  text-align: center;
  color: var(--main-font-color);
}

.section-features-growave__list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.section-features-growave__item {
  width: 33.333%;
  padding: 0 20px;
}

.section-features-growave__item-img {
  max-width: 100%;
}

.section-features-growave__info-title {
  margin: 40px 0;
  font-family: 'Roboto',sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--main-font-color);
}

.section-features-growave__info-desc {
  min-height: 111px;
  margin-bottom: 10px;
  font-family: 'Roboto',sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--main-font-color);
}

/*
################
 low-valued-currency-loyalty page
################
 */

.section-benefits {
  padding: 100px 0;
}

.section-benefits__title {
  margin: 0 0 21px 0;
  font-size: 36px;
  font-family: 'Rubik', sans-serif;
  line-height: 64px;
  font-weight: 400;
  text-align: center;
  color: var(--main-font-color);
}

.section-benefits__features {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: var(--main-font-color);
}

.section-benefits__feature {
  width: 33.33%;
  padding: 20px;
}

.section-benefits__feature-title {
  margin: 20px 0;
  font-family: Rubik;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
}

.section-benefits__feature-image {
  max-width: 100%;
  height: 380px;
}

.section-merchants {
  background: #F1F8FF;
  padding: 20px 0;
  color: var(--main-font-color);
}

.section-merchants__title {
  margin-bottom: 62px;
  font-family: Rubik;
  font-style: normal;
  font-weight: normal;
  font-size: 36px;
  line-height: 140%;
  text-align: center;
  color: var(--main-font-color);;
}

.section-merchants__logo-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.section-merchants__logo {
  margin: 10px 0;
}

.section-compare-app__text {
  padding: 60px 20px;
  text-align: center;
}

.section-compare-app__title {
  font-family: Rubik;
  font-style: normal;
  font-weight: normal;
  font-size: 48px;
  line-height: 140%;
  text-align: center;
  color: var(--main-font-color);
}

.section-compare-app__desc {
  margin-bottom: 40px;
  font-size: 24px;
  text-align: center;
  font-weight: 400;
  color: #556677;
}

/*
################
                Shopify plus page
################
*/

.section-view-plus-header {
  background: #F1F8FF;
  height: 650px;
}

.section-view-plus-header > .container {
  height: 100%;
  display: flex;
  align-items: center;
}

.section-view-plus-header__img {
  margin-right: 130px;
}

.section-view-plus-header__info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.section__title {
  font-size: 47px;
  color: var(--main-font-color);
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  line-height: 64px;
  margin: 0 0 30px 0;
}

.section-view-plus-header__desc {
  font-size: 18px;
  color: #556677;
  font-family: 'Open sans', sans-serif;
  line-height: 34px;
  margin-bottom: 40px;
}

.section-view-plus-header__bottom {
  display: flex;
  align-items: center;
}

.section-view-plus-header__bottom .button {
  margin-right: 20px;
}

.section-view-plus-header__notice {
  font-size: 14px;
  color: #556677;
  font-family: 'Open sans', sans-serif;
  line-height: 24px;
}


.section-view-plus-features-small {
  padding: 100px 0 90px 0;
}

.section-view-plus-features-small .section__title {
  text-align: center;
  margin: 0 0 60px 0;
}

.section-view-plus-features-small__list {
  display: flex;
  flex-wrap: wrap;
}

.section-view-plus-features-small__item {
  width: 23%;
  margin-right: 2%;
  margin-bottom: 60px;
}

.section-view-plus-features-small__item:nth-of-type(4n) {
  margin-right: 0;
}

.section-view-plus-features-small__img-wrapp {
  height: 70px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.section-view-plus-features-small__img {
  vertical-align: middle;
  flex: none;
}

.section-view-plus-features-small__title {
  font-size: 20px;
  color: var(--main-font-color);
  font-family: 'Rubik', sans-serif;
  margin-bottom: 15px;
  line-height: 34px;
}

.section-view-plus-features-small__desc {
  font-size: 18px;
  color: #556677;
  font-family: 'Open sans', sans-serif;
  line-height: 34px;
}

.section-view-plus-features-big {
  padding: 90px 0 85px 0;
  background: #F1F8FF;
}

.section-view-plus-features-big .container {
  display: flex;
  flex-wrap: wrap;
}

.section-view-plus-features-big__item {
  width: 50%;
  padding: 0 63px;
  margin-bottom: 65px;
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.section-view-plus-features-big__wrapp-img {
  height: 80px;
  margin-bottom: 24px;
}

.section-view-plus-features-big__img {
  vertical-align: middle;
}

.section-view-plus-features-big__title {
  color: var(--main-font-color);
  font-size: 34px;
  font-family: 'Rubik', sans-serif;
  line-height: 50px;
  margin-bottom: 10px;
}

.section-view-plus-features-big__desc {
  font-size: 18px;
  color: #556677;
  font-family: 'Open sans', sans-serif;
  line-height: 34px;
}

.section-view-plus-brands {
  padding: 100px 0 150px 0;
}

.section-view-plus-brands .section__title {
  text-align: center;
  margin-bottom: 60px;
}

.section-view-plus-brands__list {
  display: flex;
  justify-content: center;
}

.section-view-plus-brands__item {
  filter: grayscale(1) brightness(0%);
  opacity: 0.5;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  vertical-align: middle;
}

.section-view-plus-brands__item:hover {
  filter: none;
  opacity: 1;
}

.section-view-plus-testimonials {
  padding: 0 0 150px 0;
}

.section-view-plus-testimonials .section__title {
  text-align: center;
  margin-bottom: 80px;
}

.section-view-plus-testimonials__list {
  display: flex;
  justify-content: space-between;
}

.section-view-plus-testimonials__item {
  width: 32%;
  height: 400px;
  position: relative;
}

.section-view-plus-testimonials__wrapp-img {
  display: flex;
  align-items: center;
  height: 80px;
  margin-bottom: 25px;
}

.section-view-plus-testimonials__desc {
  font-family: 'Rubik', sans-serif;
  font-size: 20px;
  color: var(--main-font-color);
  line-height: 35px;
  font-style: italic;
}

.section-view-plus-testimonials__stars {
  position: absolute;
  bottom: 0;
  left: 0;
}

/*
################
               Footer
################
*/

.footer {
  background: #E6F3FF;
  padding: 100px 0;
}

.footer__list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
}

.footer__list-theme-child {
  flex-direction: column;
  width: auto;
}

.footer__item {
  width: 18%;
}

.footer__item:first-of-type {
  width: 29%;
}

.footer__list-theme-child .footer__item {
  width: auto;
}

.footer__item-title {
  font-family: 'Rubik', sans-serif;
  font-size: 20px;
  color: var(--main-font-color);
  margin-bottom: 30px;
  display: block;
}

.footer__item-logo {
  margin-top: 5px;
  margin-bottom: 30px;
  display: block;
}

.footer__list-text {
  max-width: 90%;
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: #556677;
  line-height: 34px;
  margin-bottom: 30px;
}

.footer__list-link {
  display: block;
  font-size: 18px;
  text-decoration: none;
  color: #556677;
  margin-bottom: 15px;
  line-height: 28px;
}

.footer__list-socials {
  display: flex;
  align-items: center;
}

.footer__list-social {
  text-decoration: none;
  margin-right: 25px;
}

/*
################
               Upgrade message
################
*/

.subscription-status.well {
  margin-bottom: 100px;
  background-color: unset;
  border: none;
  box-shadow: unset;
}

.subscription-status.well h4 {
  font-size: 20px;
}


/*
################
               Section themes
################
*/

.section-themes {
  padding: 188px 0 150px 0;
  background: #F1F8FF url(https://static.socialshopwave.com/images/official/integration_header_bg.svg) no-repeat top center;
  background-size: 100%;
}

.section-themes__title {
  font-size: 48px;
  font-family: 'Rubik', sans-serif;
  color: var(--main-font-color);
  line-height: 64px;
  font-weight: 400;
  text-align: center;
  margin: 0;
  margin-bottom: 21px;
}

.section-themes__text {
  font-size: 18px;
  color: #556677;
  line-height: 34px;
  text-align: center;
  margin-bottom: 80px;
}

.section-themes__list {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 27px;
}

.section-themes__list-item {
  max-width: 300px;
  width: 100%;
  background: #fff;
  padding: 20px 30px;
  margin: 0 23px 23px 0;
}

.section-themes__list-img {
  width: 230px;
  height: 115px;
  display: block;
  vertical-align: middle;
  margin: 0 auto 10px auto;
  object-fit: contain;
}

.section-themes__list-title {
  font-size: 16px;
  font-weight: bold;
  color: var(--main-font-color);
  margin-bottom: 10px;
  text-align: center;
}

.section-themes__list-link {
  font-size: 14px;
  color: #11ABEC;
  text-align: center;
  display: block;
  margin-bottom: 20px;
}

/*
################
               Section compare page
################
*/

.section-reviews__wrapper {
  display: flex;
  color: var(--main-font-color);
  padding-top: 90px;
  padding-bottom: 60px;
  padding-left: 100px;
}

.section-reviews__customer {
  width: 33%;
  background: #F1F8FF;
  margin-right: 50px;
  border-radius: 10px;
  padding: 20px;
  padding-top: 0;
}

.section-reviews__customer-img-block {
  text-align: center;
}

.section-reviews__customer-image {
  width: 295px;
  border-radius: 100px 10px;
  transform: translateY(-30px);
}

.section-reviews__customer-review {
  position: relative;
  font-size: 17px;
  padding: 0 20px;
}

.section-reviews__customer-quotes {
  position: absolute;
  left: 0px;
  top: -8px;
  width: 60px;
}

.section-reviews__customer-text {
  position: relative;
}

.section-reviews__customer-name {
  font-size: 16px;
  margin-top: 25px;
  margin-bottom: 0;
  padding: 0 20px;
}

.section-reviews__customer-name span {
  color: #cccccc;
  font-weight: bold;
}

.section-reviews__stars {
  padding: 5px 20px;
  margin-bottom: 10px;
}

.section-reviews__info {
  display: flex;
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  width: 65%;
  background: #F1F8FF;
  border-radius: 10px 0 0 10px;
}

.section-reviews__info:after {
  content: '';
  background: #B8E6F9;
  opacity: 0.3;
  display: block;
  width: 100%;
  height: 150%;
  position: absolute;
  border-radius: 50%;
  left: 52%;
  z-index: 0;
}

.section-reviews__info-inner {
  background: #fff;
  z-index: 1;
  padding: 34px;
  margin: 0 75px;
  color: #556677;
  border-radius: 10px;
}

.section-reviews__img-wave {
  width: 75px;
}

.section-reviews__text {
  font-size: 20px;
  margin: 25px 0;
}

.section-reviews__info-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.section-reviews__info-text {
  font-size: 16px;
}

.button-theme-with-arrow {
  position: relative;
  padding-right: 50px;
  transition: all .5s ease;
}

.button-theme-with-arrow:hover {
  background: #013A52;
  border-color: #013A52;
}

.button-theme-with-arrow:hover:after {
  margin-left: 15px;
}

.button-theme-with-arrow:after {
  content: '';
  background-image: url(https://static.socialshopwave.com/images/arrow.png);
  width: 17px;
  height: 10px;
  position: absolute;
  margin-left: 8px;
  top: 15px;
  transition: all .3s ease;
}

.section-apps {
  background-image: url(https://static.socialshopwave.com/images/bg2.png);
  background-size: cover;
  background-position: center;
}

.section-apps .container {
  position: relative;
}

.compare-page-title {
  font-family: Rubik;
  font-weight: normal;
  font-size: 29px;
  line-height: 40px;
  text-align: center;
  color: var(--main-font-color);
  margin-bottom: 50px;
}

.section-apps__inner {
  display: flex;
  margin-bottom: 30px;
}

.section-apps__icons-list {
  display: flex;
  flex: 50%;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.section-apps__icon-item {
  width: 180px;
}

.section-apps__icon-img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  background: #11ABEC;
  border-radius: 14px;
}

.section-apps__icon-title {
  font-family: Rubik;
  font-weight: 500;
  font-size: 17px;
  color: var(--main-font-color);
  margin-top: 15px;
  text-align: center;
}

.section-apps__app-description {
  flex: 50%;
  padding: 20px;
  border-radius: 10px;
  background: #F1F8FF;
  margin-left: 30px;
}

.section-apps__description-inner {
  height: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 35px;
}

.section-apps__text {
  color: #556677;
  font-size: 17px;
  margin-top: 15px;
}

.section-compare {
  background: #f1f8ff;
}

.section-compare_desktop {
  overflow: visible;
  padding: 10px 0;
}

.section-compare__title {
  margin-top: 60px;
}

.section-compare__logo-list {
  position: sticky;
  z-index: 1;
  top: 70px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  min-height: 60px;
  background: #f1f8ff;
}

.section-compare__logo {
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-compare__logo-img {
  max-width: 120px;
}

.section-compare__price-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 15px;
  margin-bottom: 25px;
}

.section-compare__tab-title {
  width: 28%;
  font-family: Rubik;
  font-size: 17px;
  color: #556677;
  padding: 14px;
}

.section-compare__price-item {
  width: 120px;
  text-align: center;
  padding: 8px;
  border-left: 2px solid #F3FBFE;
}

.section-compare__price {
  font-family: Rubik;
  font-weight: 500;
  font-size: 21px;
  line-height: 23px;
  text-align: center;
  color: var(--main-font-color);
  margin-bottom: 0;
}

.section-compare__period {
  font-size: 14px;
  color: #B4B4B4;
}

.section-compare__tab-toggle {
  display: block;
  position: relative;
  font-family: Rubik;
  font-size: 15px;
  color: #11ABEC;
  float: right;
  padding-right: 27px;
  padding-bottom: 8px;
  cursor: pointer;
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}

.section-compare__tab-toggle:hover {
  color: var(--main-font-color);
  text-decoration: underline;
}

.section-compare__tab-toggle:hover:before,
.section-compare__tab-toggle:hover:after {
  background-color: #013A52;
}

.section-compare__tab-toggle:before,
.section-compare__tab-toggle:after {
  content: '';
  display: block;
  background-color: #11ABEC;
  width: 6px;
  height: 2px;
  position: absolute;
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}

.section-compare__tab-toggle:before {
  right: 10px;
  margin-top: 9px;
  transform: rotate(-45deg);
}

.section-compare__tab-toggle:after {
  right: 6px;
  margin-top: -12px;
  transform: rotate(45deg);
}

.tab-toggle_show:before {
  transform: rotate(45deg);
}

.tab-toggle_show:after {
  transform: rotate(-45deg);
}

.section-compare__main-tab {
  display: flex;
  width: 100%;
  justify-content: space-between;
  background: #fff;
  border-radius: 15px;
}

.section-compare__tab-content {
  margin-top: 20px;
}

.section-compare__main-tab-title {
  display: flex;
  align-items: center;
  width: 28%;
}

.section-compare__title-icon {
  background: #11ABEC;
  padding: 12px;
  border-radius: 15px;
}

.section-compare__icon-img {
  width: 25px;
}

.section-compare__title-main-title-text {
  font-family: Rubik;
  font-weight: 500;
  font-size: 17px;
  color: var(--main-font-color);
  margin-left: 14px;
  margin-bottom: 0;
}

.section-compare__checkbox {
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-left: 2px solid #F3FBFE;
}

.section-compare__checkbox-item {
  vertical-align: -webkit-baseline-middle;
  width: 15px;
}

.section-compare__sub-tab-title {
  font-family: Rubik;
  font-size: 16px;
  color: #556677;
  width: 28%;
  padding: 14px;
}

.section-compare__sub-tab {
  display: flex;
  background: #fff;
  justify-content: space-between;
  border-radius: 15px;
  margin-top: 10px;
}

.section-compare__tabs {
  margin-bottom: 50px;
}

.section-compare__tab-item {
  margin-bottom: 25px;
}

.owl-carousel .owl-item img {
  width: auto!important;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  background: #CCCCCC!important;
  border-radius: 47px;
  width: 60px;
  height: 60px;
  color: #fff!important;
}

.owl-carousel .owl-nav button.owl-prev:focus,
.owl-carousel .owl-nav button.owl-next:focus {
  outline: none;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
  background: #11ABEC!important;
}

.owl-carousel .owl-nav button.owl-prev span,
.owl-carousel .owl-nav button.owl-next span {
  font-size: 53px;
  line-height: 23px;
}

.owl-nav {
  position: absolute;
  top: -5px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.section-chart-wrapper {
  display: flex;
  justify-content: space-around;
  margin-bottom: 70px;
}

.section-chart__title {
  margin-top: 70px;
}

.section-chart__left {
  width: 40%;
}

.section-chart__inner {
  border: 4px solid #F1F8FF;
  border-radius: 10px 10px 0 0;
  border-bottom: none;
  padding: 30px;
}

.section-chart__left-logo {
  margin-bottom: 30px;
  margin-top: 15px;
}

.section-chart__logo {
  width: 150px;
}

.section-chart__left-apps {
  padding-left: 0;
  margin-bottom: 30px;
}

.section-chart__left-app {
  display: flex;
  align-items: center;
  font-family: Rubik;
  font-size: 17px;
  margin-bottom: 20px;
  color: var(--main-font-color);
  list-style: none;
}

.section-chart__left-app:before {
  content: " ";
  display: block;
  width: 17px;
  height: 17px;
  margin-right: 15px;
  background: url(https://static.socialshopwave.com/images/checkbox.png) no-repeat center;
  background-size: cover;
}

.section-chart__left-prices {
  background: #11ABEC;
  border-radius: 0px 0px 10px 10px;
  color: #fff;
  padding: 30px;
}

.button-theme-white {
  display: block;
  text-align: center;
  font-weight: 500;
  line-height: 30px;
  background: #fff;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
  color: #11ABEC;
}

.button-theme-white:hover {
  color: #fff;
}

.button-theme-white:after {
  background-image: url(https://static.socialshopwave.com/images/blue-arrow.png);
  top: 20px;
}

.button-theme-white:hover:after {
  background-image: url(https://static.socialshopwave.com/images/arrow.png);
}

.section-chart__biggest-price {
  font-family: Rubik;
  font-size: 16px;
  opacity: 0.8;
}

.section-chart__biggest-price-del {
  text-decoration-line: line-through;
  font-weight: 500;
}

.section-chart__standart-price {
  font-family: Rubik;
  font-size: 16px;
  margin-bottom: 6px;
}

.section-chart__standart-price-bold {
  font-weight: 500;
  font-size: 45px;
}

.section-chart__vs {
  font-family: Rubik;
  font-weight: 500;
  font-size: 27px;
  color: #556677;
  margin-top: 200px;
}

.section-chart__right {
  width: 40%;
}

.section-chart__right-app {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.section-chart__right-app-logo {
  width: 42px;
}

.section-chart__right-app-info {
  margin-left: 20px;
}

.section-chart__right-app-title {
  font-family: Rubik;
  font-size: 17px;
  line-height: 20px;
  color: var(--main-font-color);
  margin-bottom: 3px;
}

.section-chart__right-app-price {
  font-family: Rubik;
  font-size: 15px;
  line-height: 18px;
  color: #556677;
  margin-bottom: 0;
}

.section-chart__right-app-price-bold {
  font-weight: 500;
}

.section-chart__right-prices {
  background: #F1F8FF;
  border-radius: 0px 0px 10px 10px;
  padding: 30px;
}

.section-chart__right-price {
  font-family: Rubik;
  font-size: 16px;
  color: #556677;
}

.section-chart__right-price-bold {
  font-weight: 500;
  font-size: 35px;
  line-height: 47px;
  color: #FF7B7B;
}

.section-world-brands__wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.section-world-brands__logo-list {
  width: 65%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-left: 50px;
  padding-right: 30px;
}

.section-world-brands__logo {
  margin: 20px;
  width: 165px;
  text-align: center;
}

.section-world-brands__logo-img {
  transition: all 0.3s ease-out;
  filter: grayscale(1) brightness(100%);
  opacity: 0.5;
}

.section-world-brands__logo:hover .section-world-brands__logo-img {
  filter: none;
  opacity: 1;
}

.section-world-brands__text-block {
  width: 35%;
  padding: 0 20px;
}

.section-world-brands__text {
  position: relative;
  font-size: 19px;
  line-height: 30px;
  color: var(--main-font-color);
  margin-bottom: 30px;
}

.section-world-brands__text:before {
  content: '';
  position: absolute;
  top: -10px;
  left: -20px;
  display: block;
  width: 35px;
  height: 24px;
  background: url(https://static.socialshopwave.com/images/quotes.png) no-repeat center;
  background-size: cover;
  z-index: -1;
}

.section-world-brands__text-quotes {
  color: #11ABEC;
}

/*
################
               Section features
################
*/

.section-features__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.section-features__inner {
  padding: 80px 0;
}

.section-features__title {
  font-family: 'Rubik', sans-serif;
  font-size: 29px;
  color: var(--main-font-color);
  margin-bottom: 20px;
}

.reward-page .section-features__title {
  padding-top: 20px;
}

.section-features__logo {
  width: 130px ;
}

.section-features__image-block {
  width: 50%;
}

.section-features__img {
  max-width: 85%;
}

.section-features__info {
  width: 50%;
}

.section-features__text-block {
  font-size: 16px;
  line-height: 28px;
  color: #556677;
}

.section-features__list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.section-features__list-item {
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
  margin-bottom: 18px;
}

.section-features__list-item:before {
  content: " ";
  display: block;
  width: 24px;
  height: 24px;
  background: url('https://static.socialshopwave.com/images/official/checked-ico_new-v2.svg') no-repeat center;
  background-size: 100%;
  margin-right: 22px;
  flex: none;
}

.section-features__list-item_number:nth-child(1):before {
  background: url('https://static.socialshopwave.com/images/Group_4887.svg') no-repeat center;
  background-size: 100%;
}

.section-features__list-item_number:nth-child(2):before {
  background: url('https://static.socialshopwave.com/images/Group_4888.svg') no-repeat center;
  background-size: 100%;
}

.section-features__list-item_number:nth-child(3):before {
  background: url('https://static.socialshopwave.com/images/Group_4890.svg') no-repeat center;
  background-size: 100%;
}

.section-features__list-item_number:nth-child(4):before {
  background: url('https://static.socialshopwave.com/images/Group_4892.svg') no-repeat center;
  background-size: 100%;
}

.section-features__list-item_number:nth-child(5):before {
  background: url('https://static.socialshopwave.com/images/Group_4893.svg') no-repeat center;
  background-size: 100%;
}

.section-features-blue {
  background: #F1F8FF;
}

.section-features-blue__note {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.section-features-blue__note-text {
  position: relative;
  font-size: 16px;
  color: #556677;
  background: #FFFFFF;
  border-radius: 5px;
  padding: 12px;
  margin-left: 30px;
}

.section-features-blue__note-text:before {
  content: '';
  position: absolute;
  left: -24px;
  top: 14px;
  border: 10px solid transparent;
  border-right: 14px solid #fff;
}

.section-features-dark-blue {
  background: #E6F3FF;
}

.section-features-light__item {
  justify-content: space-between;
}

.section-features-light__image-block {
  width: 44%;
}

.section-features-cols {
  display: flex;
  flex-wrap: wrap;
}

.section-compare-app .section-features-cols {
  position: relative;
}

.section-features-cols__item {
  width: 50%;
  background: #F1F8FF;
  padding: 60px 60px 30px 20px;
}

.section-features-cols__icon {
  position: absolute;
  top: calc(50% - 37px);
  left: calc(50% - 37px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  background: #fff;
  border-radius: 50%;
}

.section-features-cols__wrapper {
  max-width: 515px;
  margin-left: auto;
}

.section-features-cols__item:last-child {
  background: #E6F3FF;
  padding-left: 60px;
  padding-right: 20px;
}

.section-features-cols__item:last-child > div {
  margin-right: auto;
  margin-left: 0;
}

.section-features-cols__image-block {
  margin-bottom: 20px;
  height: 340px;
  display: flex;
  align-items: center;
}

.section-features-cols__img {
  max-width: 85%;
}

.section-features__text-bold {
  font-weight: 600;
}

.section-apps-reviews {
  text-align: center;
}

.section-apps-reviews__title {
  font-family: Rubik;
  font-size: 34px;
  color: var(--main-font-color);
  margin-bottom: 30px;
  margin-top: 60px;
}

.section-apps-reviews__author-img {
  display: inline-block;
  border: 8px solid #F1F8FF;
  border-radius: 50%;
  width: 150px;
  height: 150px;
}

.section-apps-reviews__author {
  border-radius: 50%;
  max-width: 100%;
}

.section-apps-reviews__review {
  width: 62%;
  margin: 30px auto;
}

.section-apps-reviews__review-text {
  position: relative;
  font-family: Rubik;
  font-size: 21px;
  line-height: 35px;
  color: var(--main-font-color);
}

.section-apps-reviews__review-text:after {
  content: " ";
  position: absolute;
  display: block;
  width: 150px;
  height: 110px;
  right: -30px;
  bottom: -29px;
  z-index: -1;
  background: url(https://static.socialshopwave.com/images/quotes2.png) no-repeat center;
  background-size: 100%;
}

.section-apps-reviews__author-name {
  font-family: Rubik;
  font-size: 20px;
  color: #697887;
}

.section-apps-reviews__logo {
  margin: 40px 0;
}

.section-apps-reviews__author-name-bold {
  font-weight: 500;
  color: var(--main-font-color);
}

.section-apps-reviews__logo-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
}

.section-apps-reviews__logo-item {
  width: 220px;
  margin: 30px 20px 30px 20px;
}

.section-apps-reviews__logo-item:hover .section-apps-reviews__logo-img {
  filter: none;
  opacity: 1;
}

.section-apps-reviews__logo-img {
  transition: all 0.3s ease-out;
  filter: grayscale(1) brightness(100%);
  opacity: 0.5;
}

.section-recommended-apps {
  padding: 60px 0 30px 0;
}

.section-recommended-apps__title {
  max-width: 780px;
  margin: 0 auto;
  font-family: 'Rubik', sans-serif;
  font-size: 34px;
  color: var(--main-font-color);
  margin-bottom: 22px;
  text-align: center;
}

.section-recommended-apps__text {
  max-width: 780px;
  margin: 0 auto;
  font-size: 18px;
  color: #556677;
  line-height: 34px;
  margin-bottom: 30px;
  text-align: center;
}

.section-recommended-apps__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 910px;
  margin: 0 auto;
}

.section-recommended-apps__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.section-recommended-apps__circle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 22px;
  width: 80px;
  height: 80px;
  border-radius: 14px;
  background: #11ABEC;
}

.section-recommended-apps__ico {
  fill: #fff;
  width: 80px;
  height: 35px;
}

.section-recommended-apps__ico path {
  fill: #fff;
}

.section-recommended-apps__designation {
  text-align: center;
}

.section-recommended-apps__name {
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 15px;
  color: #556677;
}

.section-recommended-apps__description {
  max-width: 355px;
  font-size: 18px;
  line-height: 29px;
  color: #556677;
}

.section-features__image-block-right {
  text-align: right;
  padding-left: 75px;
}

.section-features__image-block-left {
  padding-right: 75px;
}

.section-features__info-left {
  max-width: 570px;
  margin-left: auto;
}

.section-features__info-right {
  max-width: 580px;
  margin-right: auto;
}

.pricing-brands__inner {
  display: flex;
  margin-bottom: 50px;
}

.pricing-brands__video {
  width: 60%;
}

.pricing-brands__links {
  width: 40%;
  padding-left: 30px;
}

.pricing-brands__item {
  margin-bottom: 30px;
}

.pricing-brands__logo {
  height: 60px;
}

.pricing-brands__text {
  font-size: 19px;
  line-height: 30px;
  color: var(--main-font-color);
}

.pricing-brands__item-link {
  font-size: 17px;
}

.pricing-brands .brands__list {
  width: 100%;
}

/* compare yotpo page */
.section-header-form {
  padding: 56px 0;
  font-family: Rubik,sans-serif;
  font-style: normal;
  font-weight: normal;
  background: url(https://static.socialshopwave.com/images/official/yotpo_Bg.svg) no-repeat center;
  background-size: cover;
}

.section-header-form__container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
}

.section-header-form__inner {
  display: flex;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
}

.section-header-form__image-wrapper {
  width: 43%;
  border-right: 1px solid;
}

.section-header-form__content {
  width: 57%;
  padding-left: 60px;
}

.section-header-form__content_smile {
  padding: 0;
  margin-left: 40px;
}

.section-header-form__content-title {
  margin-bottom: 24px;
  font-size: 48px;
  font-weight: normal;
  line-height: 57px;
  color: var(--main-font-color);
}

.section-header-form__content-title_smile {
  margin-bottom: 56px;
  font-size: 38px;
}

.section-header-form__content-subtitle {
  margin-bottom: 48px;
  font-weight: 300;
  font-size: 36px;
  line-height: 62px;
  color: var(--main-font-color);
}

.section-header-form__content-subtitle_smile {
  font-size: 30px;
}

.section-header-form__content-box {
  padding: 10px 20px;
  font-weight: 500;
  font-size: 36px;
  line-height: 171.5%;
  background: #FFC453;
  border-radius: 5px;
  white-space: nowrap;
}

.section-header-form__content-text {
  margin-bottom: 20px;
  font-weight: 300;
  font-size: 22px;
  line-height: 26px;
  color: var(--main-font-color);
}

.section-header-form__list {
  display: flex;
  align-self: center;
  padding: 0;
}

.section-header-form__list-item {
  width: 33.333%;
  padding: 10px 20px;
  margin: 0 8px;
  font-weight: 300;
  font-size: 22px;
  line-height: 26px;
  color: var(--main-font-color);
  list-style: none;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0 17px -1px rgba(34, 60, 80, 0.25);
  text-align: center;
}

.section-header-form__list-item_no-space {
  margin: 0;
}

.section-header-form__install {
  margin-top: 52px;
}

.section-header-form__install .form-getting-started {
  justify-content: start;
}

.section-header-form__install-desc {
  font-family: Open Sans,sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 19px;
}

.section-growing-brands {
  padding: 56px 0;
  font-family: Rubik,sans-serif;
  font-style: normal;
  font-weight: normal;
  text-align: center;
  background: #fff;
}

.section-growing-brands__container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.section-growing-brands__title {
  margin-bottom: 16px;
  font-size: 34px;
  line-height: 140%;
  color: var(--main-font-color);
}

.section-growing-brands__logo-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 100px;
}

.section-growing-brands__logo {
  margin: 20px;
  text-align: center;
}

.section-growing-brands__logo-img {
  width: 100%;
}

.section-choose-growave {
  padding: 56px 0;
  font-family: Rubik,sans-serif;
  font-style: normal;
  background: #f7ffffa3 url(https://static.socialshopwave.com/images/official/analitycs_bg.svg) no-repeat center;
  background-size: cover;
}

.section-choose-growave__container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}

.reviews-tab__content {
  padding: 90px 32px 0 56px;
  min-height: 740px;
  background: #FFFFFF;
  box-shadow: 0 13.601px 81.606px rgba(0, 0, 0, 0.1);
  border-radius: 20px 20px 0 0;
}

.reviews-tab__content-inner {
  display: none;
  justify-content: space-between;
}

.reviews-tab__content-inner_active {
  display: flex;
}

.reviews-tab__features {
  width: 40%;
}

.reviews-tab__review {
  width: 60%;
  margin-left: 52px;
}

.review-tabs-slide {
  display: none;
}

.review-tabs-slide_active {
  display: block;
}

.review-tab__review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reviews-tab__review-owner {
  display: flex;
  align-items: center;
}

.review-tab__review-name {
  font-weight: 500;
  font-size: 28px;
  line-height: 26px;
  color: var(--main-font-color);
}

.review-tab__review-date {
  font-family: Open Sans,sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 34px;
  color: var(--main-font-color);
}

.reviews-tab__review-content {
  position: relative;
  font-size: 18px;
  line-height: 30px;
  color: var(--main-font-color);
  padding: 32px 5px;
}

.reviews-tab__review-content_small-text {
  height: 300px;
  display: flex;
  align-items: center;
}

.reviews-tab__review-content:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 113px;
  height: 79px;
  background: url(https://static.socialshopwave.com/images/official/textArrow.svg) no-repeat center;
  background-size: cover;
}

.reviews-tab__review-content:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 113px;
  height: 79px;
  background: url(https://static.socialshopwave.com/images/official/textArrow.svg) no-repeat center;
  transform: rotateZ(180deg);
  background-size: cover;
}

.reviews-tab__review-navs {
  display: flex;
  align-items: center;
}

.reviews-tab__review-navs_right {
  justify-content: flex-end;
}

.reviews-tab__review-arrow {
  background: transparent;
  border: none;
}

.reviews-tab__review-arrow:focus {
  outline: none;
  border: none;
}

.reviews-tab__features-title {
  margin-bottom: 56px;
  font-weight: 500;
  font-size: 36px;
  line-height: 34px;
  color: var(--main-font-color);
}

.reviews-tab__features-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
}

.reviews-tab__features-item_wrap {
  flex-wrap: wrap;
  align-items: flex-start;
}

.reviews-tab__features-apps {
  width: 25%;
  margin-bottom: 26px;
  text-align: center;
}

.reviews-tab__features-apps-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 8px;
  padding: 12px;
  background: #FFFFFF;
  box-shadow: 0 2.83715px 17.0229px rgb(0 0 0 / 10%);
  border-radius: 10px;
}

.reviews-tab__features-apps-img {
  width: 100%;
}

.reviews-tab__features-apps-text {
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  color: var(--main-font-color);
}

.reviews-tab__features-text {
  font-size: 18px;
  line-height: 30px;
  color: var(--main-font-color);
}

.reviews-tab__features-text_space {
  margin: 11px 0;
}

.reviews-tab__features-icon {
  margin-right: 32px;
}

.reviews-tab__nav {
  display: flex;
  justify-content: space-between;
  padding: 0;
}

.reviews-tab__nav-item {
  display: flex;
  width: 33.333%;
  background: #f5f1f1ad;
  box-shadow: 0 13px 81px rgba(0, 0, 0, 0.1);
  list-style: none;
}

.reviews-tab__nav-item_left-radius {
  border-radius: 0 0 0 20px;
}

.reviews-tab__nav-item_right-radius {
  border-radius: 0 0 20px 0;
}

.reviews-tab__nav-link {
  width: 100%;
  padding: 28px;
  font-weight: 500;
  font-size: 28px;
  line-height: 34px;
  color: var(--main-font-color);
  text-align: center;
}

.reviews-tab__nav-item_active {
  background: #FFFFFF;
  box-shadow: 0 13px 81px rgba(0, 0, 0, 0.1);
}

.section-calculate-difference {
  padding: 56px 0;
  background: #fff;
}

.section-calculate-difference__container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}

.section-calculate-difference__inner {
  display: flex;
  align-items: center;
}

.section-calculate-difference__app {
  width: 50%;
}

.section-calculate-difference__header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 115px;
  background: #FFFFFF;
  box-shadow: 21px 2px 81px rgb(0 0 0 / 10%);
}

.section-calculate-difference__header_left-radius {
  border-radius: 20px 0 0 0;
}

.section-calculate-difference__header_right-radius {
  border-radius: 0 20px 0 0;
}

.section-calculate-difference__header-img {
  width: 190px;
}

.section-calculate-difference__content {
  display: flex;
  background: #FFFFFF;
}

.section-calculate-difference__content_left-shadow {
  align-items: center;
  justify-content: center;
  padding: 16px 15px;
  box-shadow: 60px 20px 81px rgb(0 0 0 / 10%);
  border-radius: 0 0 20px 0;
}

.section-calculate-difference__content_right-shadow {
  box-shadow: 0 13px 81px rgb(0 0 0 / 10%);
  border-radius: 0 0 0 20px;
}

.section-calculate-difference__content-inner {
  width: 100%;
  position: relative;
  background: #F4F4F4;
  border-radius: 20px;
}

.section-calculate-difference__content-inner:after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 428px;
  height: 208px;
  background: url(https://static.socialshopwave.com/images/official/yotpo_rocket.svg) no-repeat center;
  background-size: contain;
}

.app-features_growave {
  margin: 148px 0 99px 70px;
}

.app-features_growave:before {
  content: '';
  position: absolute;
  top: -120px;
  right: -180px;
  width: 296px;
  height: 303px;
  background: url(https://static.socialshopwave.com/images/official/growave_rocket.svg) no-repeat center;
  background-size: cover;
}

.app-features_yotpo {
  margin: 78px 196px 137px 50px;
}

.section-calculate-difference__box {
  position: relative;
  width: 305px;
  height: 505px;
  padding: 32px;
  font-family: Rubik,sans-serif;
  font-style: normal;
  box-shadow: 0 13px 81px rgb(0 0 0 / 10%);
  background: #fff;
}

.app-features__header {
  display: flex;
  align-items: center;
}

.app-features__header-logo {
  margin-right: 5px;
}

.app-features__header-title {
  font-weight: normal;
  font-size: 8px;
  line-height: 11px;
  border-radius: 3.22149px;
}

.app-features__header-title_growave {
  color: #FFFFFF;
  background: #6ABF6E;
  padding: 8px 33px 8px 16px;
}

.app-features__header-title_yotpo {
  padding: 3px 32px 3px 16px;
  color: #243967;
  background: #888f9773;
}

.app-features__header-title_smile {
  padding: 7px 32px 7px 16px;
  color: #243967;
  background: #888f9773;
}

.app-features__title {
  margin-top: 16px;
  font-weight: 500;
  font-size: 35px;
  line-height: 42px;
  color: #243967;
}

.app-features__price {
  width: 164px;
  padding: 8px;
  font-weight: normal;
  font-size: 22px;
  line-height: 27px;
  color: #FFFFFF;
  border-radius: 5px;
}

.app-features__price_growave {
  background: #6ABF6E;
}

.app-features__price_yotpo {
  background: #888F97;
}

.app-features__feature-list {
  position: relative;
  z-index: 1;
  padding-left: 20px;
  margin: 16px 0;
}

.app-features__feature-item {
  margin: 4px 0;
  font-weight: normal;
  font-size: 13px;
  line-height: 15px;
  color: #243967;
}

.app-features__feature-item::marker {
  font-size: 22px;
  color: #E3D0FF;
}

.app-features__feature-item_bold {
  font-weight: 500;
}

.app-features__subscribe-btn {
  display: block;
  padding: 16px 36px;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #FFFFFF;
  background: #11ABEC;
  border-radius: 5px;
}

.app-features__pricing {
  position: absolute;
  bottom: 113px;
  left: 160px;
  z-index: 3;
}

.app-features__pricing_smile-page {
  bottom: 121px;
}

.app-features__pricing-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px 13px;
  background: #FFFFFF;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  white-space: nowrap;
}

.app-features__text {
  margin-right: 10px;
  font-weight: 300;
  font-size: 24px;
  line-height: 35px;
  color: var(--main-font-color);
}

.app-features__year-price {
  font-weight: 500;
  font-size: 36px;
  line-height: 35px;
  color: var(--main-font-color);
}

.app-features__extra-app {
  position: absolute;
  top: 172px;
  left: 208px;
}

.app-features__extra-app_smile-page {
  top: 153px;
  left: 215px;
}

.app-features__extra-app-inner {
  position: relative;
  padding: 16px 24px 17px 27px;
  background: #FFFFFF;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

.app-features__extra-app-list {
  padding: 0;
  margin-bottom: 0;
}

.app-features__extra-app-item {
  display: flex;
  align-items: center;
  margin: 4px 0;
  list-style: none;
}

.app-features__extra-app-text {
  margin-left: 10px;
  font-weight: 500;
  font-size: 13px;
  line-height: 15px;
  color: #243967;
  white-space: nowrap;
}

.app-features__order-limit {
  position: absolute;
}

.app-features__order-limit_growave {
  bottom: 170px;
  left: 302px;
  z-index: 2;
  width: 113px;
}

.app-features__order-limit_smile-page {
  left: 358px;
  bottom: 174px;
  z-index: 4;
}

.app-features__order-limit_yotpo {
  top: 145px;
  left: 210px;
  width: 133px;
}

.app-features__price-attractiveness {
  bottom: 242px;
  left: 354px;
}

.app-features__price-attractiveness .app-features__order-limit-inner {
  padding-right: 40px;
}

.app-features__order-limit-inner {
  position: relative;
  padding: 16px;
  background: #FFFFFF;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

.app-features__order-limit-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #243967;
}

.features-logo {
  position: absolute;
  top: -10px;
  left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

.features-logo_grey {
  background: #888F97;
}

.features-logo_green {
  background: #6ABF6E;
}

.features-logo_text {
  font-size: 22px;
  color: #fff;
}

.section-calculate-difference__advantages-header {
  text-align: center;
  margin: 40px 0 20px;
}

.section-calculate-difference__advantage-list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.section-calculate-difference__advantages-item {
  width: 33.33%;
  height: 239px;
  margin: 5px;
  padding: 20px 20px;
  font-family: Rubik,sans-serif;
  font-style: normal;
  background: #FFFFFF;
  box-shadow: 0 8px 22px rgb(0 0 0 / 15%);
  border-radius: 20px;
}

.advantages-item__header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.advantages-item__header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 93px;
  width: 93px;
  margin-right: 16px;
}

.advantages-item__header-img {
  width: 100%;
}

.advantages-item__header-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 26px;
  color: var(--main-font-color);
}

.advantages-item__text {
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  color: var(--main-font-color);
}

.section-apps-support {
  padding: 56px 0;
  font-family: Rubik,sans-serif;
  font-style: normal;
  background: #f7ffffa3;
}

.section-apps-support__container {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
}

.section-apps-support__title {
  margin-bottom: 30px;
  font-weight: 300;
  font-size: 36px;
  line-height: 140%;
  text-align: center;
  color: var(--main-font-color);
}

.section-apps-support__title-box {
  padding: 10px 20px;
  font-weight: 500;
  font-size: 36px;
  line-height: 171.5%;
  background: #FFC453;
  border-radius: 5px;
  white-space: nowrap;
}

.section-apps-support__inner {
  display: flex;
  justify-content: space-around;
  align-items: start;
}

.section-apps-support__app {
  width: 50%;
}

.section-apps-support__app:first-child {
  margin-right: 53px;
}

.section-apps-support__app:last-child {
  margin-left: 53px;
}

.section-apps-support__app-header {
  display: flex;
  justify-content: space-around;
  width: 80%;
}

.section-apps-support__app-header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin-right: 16px;
  background: #FFFFFF;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

.section-apps-support__app-header-name {
  width: 335px;
  height: 120px;
  padding: 20px;
  font-size: 36px;
  line-height: 43px;
  background: #FFFFFF;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  color: var(--main-font-color);
}

.section-apps-support__app-header-title {
  font-weight: 500;
}

.section-apps-support__app-image_add-space {
  margin-top: 25px;
}

.section-apps-support__app-img {
  width: 100%;
}

.section-intuitive-functional {
  padding: 56px 0;
  background: #fff;
}

.section-intuitive-functional__container {
  width: 100%;
  max-width: 1296px;
  margin: 0 auto;
}

.section-solution {
  padding: 56px 0;
  background: #f7ffffa3 url(https://static.socialshopwave.com/images/official/analitycs_bg.svg) no-repeat center;
  background-size: cover;
}

.section-solution__container {
  width: 100%;
  max-width: 1296px;
  margin: 0 auto;
}

.compare-apps {
  display: flex;
  justify-content: space-around;
  align-items: start;
}

.compare-apps__app {
  width: 50%;
}

.compare-apps__app_right-space {
  margin-right: 54px;
}

.compare-apps__app_left-space {
  margin-left: 54px;
}

.compare-apps__app-header {
  width: 82%;
  padding: 7px 0;
  margin: 0 auto 32px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
  border-radius: 20px;
}

.compare-apps__app-title {
  font-family: Rubik,sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 140%;
  color: var(--main-font-color);
  text-align: center;
}

.compare-apps__app-img {
  width: 100%;
}

.section-advanced-analytics {
  padding: 69px 0;
  background: url(https://static.socialshopwave.com/images/official/analitycs_bg.svg) no-repeat center;
  background-size: cover;
}

.section-advanced-analytics__container {
  width: 100%;
  max-width: 1169px;
  margin: 0 auto;
}

.section-advanced-analytics__image {
  width: 1089px;
  height: 646px;
}

.section-title {
  margin-bottom: 56px;
  font-family: Rubik,sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 36px;
  line-height: 60px;
  color: var(--main-font-color);
  text-align: center;
}

.section-title__important-box {
  padding: 10px 20px;
  font-weight: 500;
  background: #FFC453;
  border-radius: 5px;
  white-space: nowrap;
}

.section-cancel-yotpo {
  padding: 69px 0;
  font-family: Rubik,sans-serif;
  font-style: normal;
  background: #f7ffffa3;
}

.section-cancel-yotpo__container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.section-cancel-yotpo__inner {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  background: url(https://static.socialshopwave.com/images/official/cancel_yotpo_bg.svg) no-repeat right bottom;
  background-size: contain;
}

.section-cancel-yotpo__list {
  width: 56%;
  margin: 32px 32px 16px 0;
}

.section-cancel-yotpo__item {
  padding: 32px;
  margin-bottom: 16px;
  background: #FFFFFF;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
}

.section-cancel-yotpo__item_small-with {
  width: 75%;
  margin-left: auto;
}

.section-cancel-yotpo__item-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.section-cancel-yotpo__item-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 93px;
  height: 93px;
  padding: 10px;
  margin-right: 16px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 6px 15px rgb(0 0 0 / 10%);
}

.section-cancel-yotpo__item-img {
  width: 100%;
}

.section-cancel-yotpo__item-title {
  font-weight: 500;
  font-size: 32px;
  line-height: 26px;
  color: var(--main-font-color);
}

.section-cancel-yotpo__item-text {
  margin-bottom: 32px;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
  color: #000000;
}

.section-cancel-yotpo__item-steps {
  display: flex;
}

.section-cancel-yotpo__item-step {
  width: 345px;
}

.cancel-steps_left-space {
  margin-left: 16px;
}

.cancel-steps__header {
  padding: 2px 40px;
  width: 160px;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  background: #FEC601;
  box-shadow: 0px 0px 22px rgb(0 0 0 / 15%);
  border-radius: 10px 10px 0px 0px;
  color: #000000;
}

.cancel-steps__text {
  padding: 16px;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
  color: #000000;
  background: #FFFFFF;
  box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.15);
  border-radius: 0px 20px 20px 20px;
}

.section-footer-form {
  padding: 120px 0;
  font-family: Rubik,sans-serif;
  font-style: normal;
  background: url(https://static.socialshopwave.com/images/official/footer_bg.svg) no-repeat right;
  background-size: cover;
}

.section-footer-form__container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.section-footer-form__text {
  font-weight: normal;
  font-size: 34px;
  line-height: 140%;
  color: var(--main-font-color);
}

.section-footer-form__desc {
  margin-bottom: 56px;
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  color: var(--main-font-color);
}

.section-footer-form__title {
  margin-bottom: 32px;
  font-weight: 500;
  font-size: 36px;
  line-height: 43px;
  color: var(--main-font-color);
}

.section-footer-form__btns-demo {
  padding: 11px 31px 11px 31px;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #013A52;
  background: transparent;
  border: 2px solid #013A52;
  border-radius: 5px;
}

.section-footer-form__btns-start {
  padding: 11px 31px 11px 31px;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #FFFFFF;
  background: #013A52;
  border: 2px solid #013A52;
  border-radius: 5px;
}

.section-footer-form__btns-start:hover {
  color: #FFFFFF;
}

.install-form {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: Rubik,sans-serif;
  font-style: normal;
  font-size: 14px;
  line-height: 17px;
}

.install-form__shop-name {
  width: 50%;
  padding: 17px 31px;
  background: #FFFFFF;
  border: 2px solid #D0E2F2;
  border-radius: 5px 0 0 5px;
}

.install-form__domain {
  width: 30%;
  padding: 17px 31px;
  background: #FFFFFF;
  border: 2px solid #D0E2F2;
}

.install-form__button {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 20%;
  padding: 19px 31px;
  border: none;
  background: #11ABEC;
  border-radius: 0 5px 5px 0;
  font-weight: normal;
  color: #fff;
}

/* smile page */
.section-cancel-smile {
  padding: 56px 0;
  font-family: Rubik;
  font-style: normal;
  background: #fff;
}

.section-cancel-smile__container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 63px;
}

.section-cancel-smile__inner {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  background: url(https://static.socialshopwave.com/images/official/cancel_yotpo_bg.svg) no-repeat right bottom;
  background-size: cover;
}

.section-cancel-smile__list {
  width: 56%;
  margin: 32px 32px 16px 0;
}

.section-cancel-smile__item {
  padding: 32px;
  margin-bottom: 30px;
  background: #FFFFFF;
  box-shadow: 0 8px 22px rgb(0 0 0 / 15%);
  border-radius: 20px;
}

.section-cancel-smile__item-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.section-cancel-smile__item-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 93px;
  height: 93px;
  padding: 10px;
  margin-right: 16px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 6px 15px rgb(0 0 0 / 10%);
}

.section-cancel-smile__item-img {
  width: 100%;
}

.section-cancel-smile__item-title {
  font-weight: 500;
  font-size: 32px;
  line-height: 26px;
  color: var(--main-font-color);
}

.section-cancel-smile__item-text {
  font-size: 18px;
  line-height: 26px;
  color: #000000;
}

.cancel-smile {
  width: 75%;
  margin-left: auto;
}

.cancel-smile__steps {
  margin-bottom: 30px;
}

.cancel-smile__steps-header {
  width: 106px;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  background: #FEC601;
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.15);
  border-radius: 10px 10px 0 0;
  text-align: center;
}

.cancel-smile__steps-content {
  padding: 19px;
  background: #FFFFFF;
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.15);
  border-radius: 0 20px 20px 20px;
}

.cancel-smile__steps-title {
  margin-bottom: 9px;
  font-weight: 500;
  font-size: 24px;
  line-height: 26px;
  color: var(--main-font-color);
}

.cancel-smile__steps-text {
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
  color: var(--main-font-color);
}