/* Home hero */
.home-hero {
  padding: 70px 0 50px;
}
.home-hero .flex {
  align-items: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .home-hero .flex {
    flex-direction: column;
  }
}
.home-hero .flex .col {
  width: 100%;
  max-width: 50%;
}
@media only screen and (max-width: 768px) {
  .home-hero .flex .col {
    max-width: 100%;
  }
}
.home-hero .flex .col .text h1 {
  width: 100%;
  max-width: 420px;
  margin-bottom: 30px;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.3em;
}
@media only screen and (max-width: 768px) {
  .home-hero .flex .col .text h1 {
    font-size: 32px;
  }
}
.home-hero .flex .col .text h1 b, .home-hero .flex .col .text h1 strong {
  color: #00A9FF;
  font-weight: 600;
}
.home-hero .flex .col .text p {
  width: 100%;
  max-width: 420px;
}
.home-hero .flex .col .video video {
  width: 100%;
  max-width: 100%;
}
.home-hero .btns .btn {
  min-width: 275px;
  margin-bottom: 15px;
}

/* Home trusted */
.home-trusted {
  padding: 50px 0;
  background-color: #28272f;
}
.home-trusted .text {
  text-align: center;
}
.home-trusted .text h2 {
  margin-bottom: 30px;
  font-size: 18px;
  color: white;
  font-weight: 400;
}
.home-trusted .logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
.home-trusted .logos .col {
  width: 17%;
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .home-trusted .logos .col {
    width: 33%;
  }
}
.home-trusted .logos .col img {
  width: 100%;
  max-height: 85px;
}

.home-services {
  padding: 50px 0;
}
.home-services .row {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .home-services .row {
    flex-wrap: wrap;
  }
}
.home-services .row:nth-of-type(even) .col:first-child {
  order: 2;
}
@media only screen and (max-width: 768px) {
  .home-services .row:nth-of-type(even) .col:first-child {
    order: 1;
  }
}
.home-services .row:nth-of-type(even) .col:nth-of-type(2) {
  order: 1;
}
@media only screen and (max-width: 768px) {
  .home-services .row:nth-of-type(even) .col:nth-of-type(2) {
    order: 2;
  }
}
.home-services .row.top .col, .home-services .row.bottom .col {
  max-width: 100%;
}
.home-services .row.top .col .text, .home-services .row.bottom .col .text {
  text-align: center;
}
.home-services .row.top .col .text h2, .home-services .row.bottom .col .text h2 {
  max-width: 100%;
  margin-bottom: 30px;
  font-size: 45px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .home-services .row.top .col .text h2, .home-services .row.bottom .col .text h2 {
    font-size: 32px;
  }
}
.home-services .row.top .col .text p, .home-services .row.bottom .col .text p {
  max-width: 100%;
}
.home-services .row .col {
  width: 100%;
  max-width: 50%;
}
@media only screen and (max-width: 768px) {
  .home-services .row .col {
    max-width: 100%;
  }
}
.home-services .row .col .image {
  text-align: center;
}
.home-services .row .col .image img {
  max-width: 360px;
}
.home-services .row .col .text h2 {
  width: 100%;
  max-width: 450px;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .home-services .row .col .text h2 {
    font-size: 28px;
  }
}
.home-services .row .col .text h2 b, .home-services .row .col .text h2 strong {
  color: #00A9FF;
  font-weight: 600;
}
.home-services .row .col .text p {
  width: 100%;
  max-width: 450px;
}

/* Home about */
.home-about {
  padding: 50px 0;
  background-color: #f7f6ff;
}
.home-about .text {
  text-align: center;
}
.home-about .text h2 {
  margin-bottom: 30px;
  font-size: 45px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .home-about .text h2 {
    font-size: 32px;
  }
}
.home-about .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .home-about .flex {
    flex-direction: column;
  }
}
.home-about .flex .col {
  width: 33.3%;
}
@media only screen and (max-width: 768px) {
  .home-about .flex .col {
    width: 100%;
  }
}
.home-about .flex .col .item {
  text-align: center;
  margin-bottom: 50px;
}
.home-about .flex .col .item .icon {
  margin-bottom: 16px;
  height: 110px;
}
.home-about .flex .col .item .icon img {
  height: inherit;
}
.home-about .flex .col .item h3 {
  margin-bottom: 30px;
  color: #00A9FF;
  font-size: 32px;
  font-weight: 600;
}
.home-about .flex .col .item p {
  width: 100%;
  max-width: 245px;
  margin: 0 auto 16px auto;
}
@media only screen and (max-width: 768px) {
  .home-about .flex .col .item p {
    max-width: 100%;
  }
}
.home-about .btns .btn {
  min-width: 275px;
  margin-bottom: 15px;
}

.home-for {
  padding: 50px 0;
}
.home-for .text h2 {
  margin-bottom: 30px;
  font-size: 45px;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .home-for .text h2 {
    font-size: 32px;
  }
}
.home-for .text p {
  margin-bottom: 60px;
}
.home-for .text h3 a {
  color: #00A9FF;
  text-decoration: underline;
}

.home-customers {
  padding: 50px 0;
  background-color: #f7f6ff;
}
.home-customers .text {
  text-align: center;
}
.home-customers .text h2 {
  margin-bottom: 30px;
  font-size: 45px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .home-customers .text h2 {
    font-size: 32px;
  }
}
.home-customers .text h3 {
  margin-bottom: 30px;
  font-size: 27px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .home-customers .text h3 {
    font-size: 24px;
  }
}
.home-customers .reviews {
  margin-bottom: 50px;
}
.home-customers .reviews .flex {
  display: flex;
  background-color: white;
  width: 100%;
  max-width: 870px;
  box-shadow: rgba(245, 245, 245, 0.6) 0px 1px 12px 7px;
  margin: 0 auto 20px auto;
  border-radius: 10px;
  padding: 15px 30px;
}
@media only screen and (max-width: 768px) {
  .home-customers .reviews .flex {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 768px) {
  .home-customers .reviews .flex .item {
    width: 100%;
  }
}
.home-customers .reviews .flex .item:first-child {
  margin-right: 30px;
  min-width: 220px;
}
@media only screen and (max-width: 768px) {
  .home-customers .reviews .flex .item:first-child {
    margin: 0 0 15px 0;
    min-width: auto;
  }
}
.home-customers .reviews .flex .item .info .avatar {
  margin-bottom: 5px;
}
.home-customers .reviews .flex .item .info .avatar img {
  height: 63px;
  width: auto;
  border-radius: 50%;
}
.home-customers .reviews .flex .item .info h4 {
  margin: 0 0 5px 0;
  font-size: 14px;
  font-weight: 700;
}
.home-customers .reviews .flex .item .info h5 {
  margin: 0 0 5px 0;
  font-size: 13px;
  font-weight: 300;
}
.home-customers .reviews .flex .item .info .rating {
  color: rgb(229, 165, 11);
  font-size: 20px;
  letter-spacing: 2px;
}
.home-customers .reviews .flex .item .text p {
  text-align: left;
  font-size: 14px;
}
.home-customers .reviews .flex .item .text i, .home-customers .reviews .flex .item .text em {
  font-size: 18px;
}
.home-customers .reviews .flex .item .text .btn-wrap {
  text-align: right;
}
.home-customers .reviews .flex .item .text .btn-wrap a {
  color: rgb(40, 38, 38);
  font-size: 17px;
}
.home-customers .reviews .flex .item .text .btn-wrap a:hover {
  text-decoration: underline;
}
.home-customers .more {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .home-customers .more {
    flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  .home-customers .more .item {
    margin-bottom: 15px;
    text-align: center;
  }
}
.home-customers .more .item img, .home-customers .more .item svg {
  height: 60px;
}
.home-customers .btns .btn {
  min-width: 275px;
  margin-bottom: 15px;
}

/* Home email providers */
.home-email-providers {
  padding: 50px 0;
}
.home-email-providers .text {
  text-align: center;
}
.home-email-providers .text h2 {
  margin-bottom: 30px;
  font-size: 45px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .home-email-providers .text h2 {
    font-size: 32px;
  }
}
.home-email-providers .logos {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.home-email-providers .logos .col {
  width: 16%;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .home-email-providers .logos .col {
    width: 33%;
  }
}
.home-email-providers .logos .col .item {
  margin-bottom: 30px;
}
.home-email-providers .logos .col .item img {
  max-height: 64px;
}

/* Home pricing */
.home-pricing {
  padding: 50px 0;
  background-color: #f7f6ff;
}
.home-pricing .text {
  text-align: center;
}
.home-pricing .text h2 {
  margin-bottom: 50px;
  font-size: 45px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .home-pricing .text h2 {
    font-size: 32px;
  }
}
.home-pricing .text h3 {
  margin: 0;
  font-size: 45px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .home-pricing .text h3 {
    font-size: 27px;
  }
}
.home-pricing .text h3.color-blue {
  color: #00A9FF;
}
.home-pricing .text h3.color-red {
  color: #FF5C6E;
}
.home-pricing .text h3:last-of-type {
  margin-bottom: 50px;
}
.home-pricing .btns .btn {
  min-width: 275px;
  margin-bottom: 15px;
}

.home-faqs {
  padding: 50px 0;
}
.home-faqs .text h2 {
  margin-bottom: 30px;
  font-size: 45px;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .home-faqs .text h2 {
    font-size: 32px;
  }
}
.home-faqs .text p {
  margin-bottom: 30px;
}
.home-faqs .text h3 {
  color: #00A9FF;
}
.home-faqs .btns .btn {
  min-width: 275px;
  margin-bottom: 15px;
}

/*# sourceMappingURL=home.css.map */
