/*
################
                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;
}

a {
  text-decoration: none!important;
}

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

main {
  padding-top: 70px;
}

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;
}

/*
################
               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: 44px;
  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;
  opacity: 1;
  visibility: visible;
}

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

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

.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__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;
}


/*
################
               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: 400px;
}

.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: 60px;
  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;
}

/*
################
               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;
  align-items: center;
  flex-direction: column;
  width: 25%;
  margin-bottom: 60px;
}

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

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

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

.section-apps-recommended__name {
  font-size: 18px;
  color: #556677;
}

/*
################
               Section tariffs
################
*/

.section-tariffs {
  background: #F1F8FF url(https://static.socialshopwave.com/images/official/MaskGroup4.svg) no-repeat top center;
  background-size: cover;
  padding: 170px 0 120px 0;
}

.section-tariffs__title {
  text-align: center;
  font-size: 48px;
  font-family: 'Rubik', sans-serif;
  line-height: 60px;
  color: #013A52;
  margin-bottom: 30px;
}

.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: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: 34px;
  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 106px 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-link {
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  color: #11ABEC;
  text-decoration: 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;
  margin-bottom: 40px;
}

.section-versus__left-logo-img {
  margin-right: 20px;
}

.section-versus__left-logo-text {
  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;
}

.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;
}

/*
################
               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-bottom: 30px;
}

.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;
}

/*
################
               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-bottom: 21px;
  text-align: center;
}

.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-bottom: 20px;
  text-align: center;
}

.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-bottom: 21px;
}

.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;
}