/*
################
                Base css
################
*/

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600i,700|Rubik:400,400i,500,700&subset=latin-ext');

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: 2;
}

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;
  box-sizing: border-box;
  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;
  box-sizing: border-box;
  border-radius: 5px;
}

::-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: #013A52;
  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;
  }
}

/*
################
               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;
  box-sizing: border-box;
  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 .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 > a {
  color: #11ABEC;
}

.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: #013A52;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease-out;
}

.header__nav__list-link:hover {
  color: #11ABEC;
}

.header__mobile-nav .header__nav__list-link:hover {
  color: #013A52;
}

.header__mobile-nav .header__nav__list-link:active {
  color: #013A52;
}

.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%;
}

.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: #013A52;
  font-weight: 400;
  margin: 0 0 25px 0;
}
.header-form__desc {
  margin: 0 0 60px 0;
  font-size: 18px;
  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;
}

.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: #013A52;
  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: #013A52;
  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: #013A52;
  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: #013A52;
  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: #013A52;
  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: #013A52;
  margin-bottom: 21px;
}

.section-shopify-flow-fav-apps__item__title {
  font-family: 'Rubik', sans-serif;
  font-size: 48px;
  color: #013A52;
  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: #013A52;
  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: #013A52;
}

.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: #013A52;
  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 (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 {
  margin-right: 50px;
}

.features__item:nth-of-type(3n) {
  margin-right: 0;
}

.features__ico {
  margin-bottom: 36px;
  width: 50px;
  height: 50px;
  fill: #11ABEC;
}

.features__title {
  font-family: 'Rubik', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #013A52;
  margin-bottom: 21px;
}

.features__desc {
  font-size: 18px;
  line-height: 34px;
  color: #556677;
}

/*
################
               Section features quote
################
*/

.section-features-quote {
  padding: 103px 0 120px 0;
  background: #F1F8FF;
}

.section-features-quote .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.section-features-quote__title {
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  font-size: 34px;
  color: #013A52;
  margin: 0 0 62px 0;
  width: 100%;
}

.section-features-quote__list {
  width: 40%;
}

.section-features-quote__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 41px;
}

.section-features-quote__item:last-of-type {
  margin-bottom: 0;
}

.section-features-quote__ico {
  width: 36px;
  height: 36px;
  margin-right: 16px;
  fill: #11ABEC;
}

.section-features-quote__info {
  flex: 90%;
}

.section-features-quote__info__title {
  font-family: 'Rubik', sans-serif;
  font-size: 20px;
  color: #013A52;
  margin-bottom: 21px;
}

.section-features-quote__info__desc {
  font-size: 18px;
  line-height: 34px;
  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: #013A52;
}

.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: #013A52;
  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 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: #013A52;
  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: #013A52;
  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/form-section_bg.svg') no-repeat center; 
}

.section-form__title {
  width: 100%;
  text-align: center;
  font-family: 'Rubik', sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: #013A52;
  margin: 0 0 39px 0;
}

.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;
}

/*
################
               Section features vertical
################
*/

.section-features-vertical {
  background: #fff;
}

.section-features-vertical__top {
  font-family: 'Rubik', sans-serif;
  font-size: 48px;
  color: #013A52;
  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: #013A52;
  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 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: #013A52;
  margin-bottom: 15px;
}

.section-features-app__text {
  font-size: 18px;
  line-height: 34px;
  color: #556677;
}

/*
################
               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: #013A52;
  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: #013A52;
  line-height: 46px;
  margin-bottom: 35px;
  text-align: center;
}

.section-quote-brands__brand-author {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  color: #013A52;
  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: #013A52;
  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 {
  background: #F1F8FF url('https://static.socialshopwave.com/images/official/header-form__bg.svg') no-repeat right center;
}

.loyalty-growave {
  background: #F1F8FF url('https://static.socialshopwave.com/images/official/Group 169.svg') no-repeat right center;
}

.reviews-growave {
  background: #F1F8FF url('https://static.socialshopwave.com/images/official/Group 174.svg') no-repeat right center;
}

.wishlist-growave {
  background: #F1F8FF url('https://static.socialshopwave.com/images/official/wishlist1.png') no-repeat right center;
}

.login-growave {
  background: #F1F8FF url('https://static.socialshopwave.com/images/official/Group 168.svg') no-repeat right center;
}

.instagram-growave {
  background: #F1F8FF url('https://static.socialshopwave.com/images/official/Group 183.svg') no-repeat right center;
}

.section-slide .container {
  height: 100%;
}

.section-slide:first-of-type {
  display: flex;
}
.section-slide {
  display: none;
  height: calc(100vh - 70px);
  align-items: center;
}


.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;
  justify-content: center;
  padding-right: 50px;
}

.section-slide__tittle {
  font-weight: bold;
  font-size: 48px;
  margin: 0px;
  margin-bottom: 47px;
  color: #013A52;
}

.section-slide__description p {
  font-size: 18px;
  color: #6D6C6C;
  margin: 0px;
  margin-bottom: 20px;
}

.welcome-growave .section-slide__question {
  text-align: right;
}

.section-slide__question {
  text-align: right;
  margin-top: 70px;
}

.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__text {
  margin-right: 39px;
  color: #455A64;
  font-size: 18px;
}

.section-slide__btn-skip {
  font-size: 14px;
  margin-left: 54px;
  color: #2699FB;
  background: transparent;
  border: none;
  outline: none;
}
/*
################
               Section tariffs
################
*/
.section-tariffs {
  background: #F1F8FF url(https://static.socialshopwave.com/images/official/MaskGroup4.svg) no-repeat top center;
  background-size: cover;
  padding: 100px 0 30px 0;
}

.section-tariffs__title {
  text-align: center;
  font-size: 48px;
  font-family: 'Rubik', sans-serif;
  line-height: 60px;
  color: #013A52;
  margin: 0 0 30px;
  font-weight: 400;
}

.section-tariffs__text {
  text-align: center;
  line-height: 34px;
  font-size: 18px;
  color: #556677;
  margin-bottom: 30px;
}

.section-tariffs__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.section-tariffs__item {
  width: 370px;
  background: #fff;
  border-radius: 5px;
  padding: 46px 40px 38px 40px;
  box-sizing: border-box;
}

.section-tariffs__item:first-child .section-tariffs__item-desc {
  margin-bottom: 40px;
}

.section-tariffs__item:nth-of-type(2) {
  box-shadow: 0 0 20px rgba(30, 67, 150, 0.2);
}

.section-tariffs__item-name {
  font-family: 'Rubik', sans-serif;
  font-size: 34px;
  color: #013A52;
  text-align: center;
  margin-bottom: 20px;
}

.section-tariffs__item-desc {
  font-size: 18px;
  color: #556677;
  text-align: center;
  margin-bottom: 36px;
}

.section-tariffs__item-price {
  height: 38px;
  font-family: 'Rubik', sans-serif;
  color: #013A52;
  font-size: 20px;
  line-height: 34px;
  margin-bottom: 31px;
  text-align: center;
}

.section-tariffs__item-big {
  font-size: 40px;
  font-weight: 500;
  color: #013A52;
}

.section-tariffs__item .button {
  margin-bottom: 35px;
}

.section-tariffs__item-notice-block {
  background: #F1F8FF;
  padding: 15px;
  text-align: center;
  color: #556677;
  margin-bottom: 30px;
}

.section-tariffs__item-notice-block-plan {
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  color: #013A52;
}

.section-tariffs-computed {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.section-tariffs-computed__btn {
  margin: 0 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  background: #11ABEC;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0.9;
  font-size: 26px;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.section-tariffs-computed__btn svg {
  width: 14px;
  fill: #ffffff;
}

.section-tariffs-computed__btn-theme-disabled {
  background: #ccc;
  color: #333;
}

.section-tariffs-computed__field {
  color: #556677;
  border: 1px solid silver;
  min-width: 70px;
  padding: 5px 15px;
  text-align: center;
  font-size: 17px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.section-tariffs__item-orders {
  min-height: 39px;
  font-size: 18px;
  color: #556677;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  line-height: 25px;
}

.section-tariffs__item:nth-of-type(2) .section-tariffs__item-orders {
  align-items: center;
}

.section-tariffs__item-orders .section-tariffs__item-big {
  margin-right: 20px;
}

.section-tariffs__item-question {
  display: block;
  border-bottom: 2px dotted #11ABEC;
  cursor: pointer;
}

.section-tariffs__item-features {
  padding: 0;
  margin: 0;
  list-style: none;
}

.section-tariffs__item-features-item {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #556677;
  margin-bottom: 20px;
}
li.section-tariffs__item-features-item:last-child {
  margin-bottom: 0px;
}

.section-tariffs__item-features-item:before {
  content: " ";
  display: block;
  background: url(https://static.socialshopwave.com/images/official/checked-ico_new-v2.svg) no-repeat center;
  background-size: cover;
  width: 24px;
  height: 23px;
  margin-right: 16px;
}

/*
################
               Section helps
################
*/

.section-help {
  padding: 50px 0;
  background: #F1F8FF;
}

.section-help__list {
  display: flex;
}

.section-help__list-item {
  width: 50%;
  text-align: center;
  padding: 0 80px;
}

.section-help__list-title {
  font-size: 28px;
  font-family: 'Rubik', sans-serif;
  color: #013A52;
  margin-bottom: 18px;
}

.section-help__list-description {
  font-size: 18px;
  color: #556677;
  line-height: 34px;
  margin-bottom: 27px;
}

.section-help__list-description_free {
  line-height: 30px;
}

.section-help__list-link {
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  color: #11ABEC;
  text-decoration: none;
}

/*
################
               Section Plan Compare
################
*/

.section-plan-compare{
  padding: 70px 0 0 0;
}

.section-plan-compare-title{
  font-family: 'Rubik', sans-serif;
  font-size: 34px;
  color: #013A52;
  margin-bottom: 24px;
  text-align: center;
}

.section-plan-compare table{
  font-size: 16px;
  background: #fff;
}
.section-plan-compare .table>thead>tr>th{
  background: #F1F8FF;
  border-bottom: 1px solid #D0E2F2;
  font-weight: 400;
  text-align: center;
  padding: 15px 10px;
}
.section-plan-compare th div{
  padding-bottom: 16px;
}
.section-plan-compare th div.section-plan-compare-name{
  font-weight: 600;
  font-size: 18px;
  padding-bottom: 8px;
}
.section-plan-compare-price{
  font-weight: 600;
}

.section-plan-compare .table>tbody>tr:nth-child(2n){
  background: #F1F8FF;
}

.section-plan-compare .table>tbody>tr.plan-compare-orders>td{
  padding-top: 20px;
}

.section-plan-compare .table>tbody>tr>td{
  padding: 13px 15px;
  text-align: center;
  border-left: 1px solid #D0E2F2;
}

.section-plan-compare .table>tbody>tr>td:first-child{
  text-align: left;
  border-left: none;
}

.plan-compare-feature{
  text-align: left;
}

.section-plan-compare .table>tbody>tr.plan-compare-feature-sub>td{
  padding: 10px;
}

.section-plan-compare .table>tbody>tr.plan-compare-feature-sub>td:first-child{
  padding-left: 35px;
}

.plan-compare-yes{
  display: block;
  background: url(https://static.socialshopwave.com/images/official/checked-ico_new-v2.svg) no-repeat center;
  background-size: cover;
  width: 24px;
  height: 23px;
  margin: 0 auto;
}

.section-tariffs__item-notice-block {
  margin-bottom: 0;
}

.nav-pills>li.active>a, .nav-pills>li.active>a:hover, .nav-pills>li.active>a:focus {
  background-color: #11ABEC;
}

@media (max-device-width : 767px) {
  .section-plan-compare-desktop {
    display: none;
  }
  .section-plan-compare-mobile-tabs {
    display: block;
  }
}

@media (min-device-width : 768px) {
  .section-plan-compare-desktop {
    display: block;
  }
  .section-plan-compare-mobile-tabs {
    display: none;
  }
}


/*
################
               Section FAQ
################
*/


.section-faq {
  background: #FFF;
  padding: 106px 0 76px 0;
}

.section-faq__title {
  font-size: 34px;
  font-family: 'Rubik', sans-serif;
  color: #013A52;
  text-align: center;
  margin-bottom: 75px;
}

.section-faq__list {
  display: flex;
  flex-wrap: wrap;
}

.section-faq__list-item {
  width: 50%;
  margin-bottom: 44px;
  padding-right: 130px;
  box-sizing: border-box;
}

.section-faq__list-item:nth-of-type(2n) {
  padding-right: 70px;
}

.section-faq__list-name {
  font-size: 20px;
  font-family: 'Rubik', sans-serif;
  color: #013A52;
  margin-bottom: 12px;
}

.section-faq__list-text {
  font-size: 18px;
  color: #556677;
  line-height: 34px;
}

.section-faq__list-text a {
  color: #11ABEC;
  text-decoration: none;
}

/*
################
               Section versus
################
*/

.section-versus {
  padding-top: 106px;
}

.section-versus__title {
  font-size: 34px;
  color: #013A52;
  font-family: 'Rubik', sans-serif;
  text-align: center;
  margin-bottom: 21px;
}

.section-versus__desc {
  max-width: 770px;
  margin: 0 auto 50px auto;
  font-size: 18px;
  color: #556677;
  line-height: 34px;
  text-align: center;
}

.section-versus__wrapper {
  display: flex;
}

.section-versus__left {
  width: 50%;
  background: #F1F8FF;
  box-shadow: -550px 0 0 0 #F1F8FF;
  padding: 55px 0 86px 0;
  box-sizing: border-box;
  position: relative;
}

.section-versus__left:after {
  content: "vs";
  position: absolute;
  right: -40px;
  top: 300px;
  width: 80px;
  height: 80px;
  background: #013A52;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-transform: uppercase;
  font-size: 34px;
  font-family: 'Rubik', sans-serif;
  color: #FFFFFF;
}

.section-versus__left-logo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.section-versus__left-logo-img {
  width: 160px;
  height: 100%;
  margin-bottom: 20px;
}

.section-versus__left-logo-text {
  width: 100%;
  font-size: 18px;
  color: #556677;
  line-height: 34px;
}

.section-versus__left-apps {
  list-style-type: none;
  padding-left: 0;
  margin: 0 0 47px 0;
}

.section-versus__left-app {
  display: flex;
  align-items: center;
  font-family: 'Rubik', sans-serif;
  font-size: 19px;
  color: #013A52;
  margin-bottom: 18px;
}

.section-versus__left-app:before {
  content: " ";
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 22px;
  background: url(https://static.socialshopwave.com/images/official/checked-ico_new-v2.svg) no-repeat center;
  background-size: cover;
}

.section-versus__left-app:last-of-type {
  margin-bottom: 0;
}

.section-versus__right {
  width: 50%;
  background: rgba(255, 110, 92, 0.05);
  box-shadow: 550px 0 0 0 rgba(255, 110, 92, 0.05);
  padding: 55px 0 86px 55px;
  box-sizing: border-box;
}

.section-versus__right-apps {
  margin-bottom: 54px;
}

.section-versus__right-app {
  display: flex;
  margin-bottom: 32px;
}

.section-versus__right-app:last-of-type {
  margin-bottom: 0;
}

.section-versus__right-app-logo {
  margin-right: 20px;
  height: 48px;
  border-radius: 5px;
}

.section-versus__right-app-info {
  display: flex;
  flex-direction: column;
  padding-top: 0px;
}

.section-versus__right-app-title {
  font-family: 'Rubik', sans-serif;
  font-size: 19px;
  color: #013A52;
  margin-bottom: 0px;
}

.section-versus__right-app-price {
  font-size: 17px;
  color: #556677;
}

.section-versus__prices-standart {
  font-family: 'Rubik', sans-serif;
  font-size: 19px;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-end;
}

.section-versus__prices-standart-big {
  font-size: 40px;
  line-height: 34px;
  margin-right: 10px;
}

.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: #013A52;
  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: #013A52;
  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: #013A52;
}

.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: #013A52;
  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: #013A52;
  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: #013A52;
  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: #013A52;
  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;
  box-sizing: border-box;
}

.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: #013A52;
  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;
  box-sizing: border-box;
}

.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: #013A52;
  line-height: 64px;
  font-weight: 400;
  margin: 0;
  margin-bottom: 67px;
}

.section-page-text h2 {
  font-size: 34px;
  font-family: 'Rubik', sans-serif;
  color: #013A52;
  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/MaskGroup4.svg) no-repeat top center;
  background-size: 100%;
}

.section-integrations__title {
  font-size: 48px;
  font-family: 'Rubik', sans-serif;
  color: #013A52;
  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;
  box-sizing: border-box;
}

.section-integrations__list-img {
  width: 200px;
  height: 115px;
  display: block;
  vertical-align: middle;
  margin: 0 auto 10px auto;
}

.section-integrations__list-title {
  font-size: 16px;
  font-weight: bold;
  color: #013A52;
  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: #013A52;
  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: #013A52;
  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: #013A52;
  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: #013A52;
  text-align: center;
}

.section-about-us__feature-title {
  font-size: 18px;
  color: #556677;
  line-height: 34px;
  text-align: center;
}

/*
################
                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: #013A52;
  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: #013A52;
  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;
  box-sizing: border-box;
  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: #013A52;
  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: #013A52;
  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: #013A52;
  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/MaskGroup4.svg) no-repeat top center;
  background-size: 100%;
}

.section-themes__title {
  font-size: 48px;
  font-family: 'Rubik', sans-serif;
  color: #013A52;
  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;
  box-sizing: border-box;
}

.section-themes__list-img {
  width: 230px;
  height: auto;
  display: block;
  vertical-align: middle;
  margin: 0 auto 10px auto;
}

.section-themes__list-title {
  font-size: 16px;
  font-weight: bold;
  color: #013A52;
  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: #013A52;
  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: #013A52;
  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: #013A52;
  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: #013A52;
  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: #013A52;
  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: #013A52;
  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;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  background: #CCCCCC;
  border-radius: 47px;
  width: 60px;
  height: 60px;
  color: #fff;
}

.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;
}

.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: #013A52;
  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: #013A52;
  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: #013A52;
  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: #013A52;
  margin-bottom: 20px;
}

.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-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;
}

.section-features-cols__item {
  width: 50%;
  background: #F1F8FF;
  padding: 60px 60px 30px 20px;
}

.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: #013A52;
  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: #013A52;
}

.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: #013A52;
}

.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: #013A52;
  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: #013A52;
}

.pricing-brands__item-link {
  font-size: 17px;
}

.pricing-brands .brands__list {
  width: 100%;
}

.intercom-lightweight-app {
  z-index: 100 !important;
}