@keyframes rotateWord {
  0% {
    opacity: 0;
  }
  2% {
    opacity: 0;
    transform: translateY(20px);
  }
  4% {
    opacity: 1;
    transform: translateY(0px);
  }
  26% {
    opacity: 1;
    transform: translateY(0px);
  }
  28% {
    opacity: 0;
    transform: translateY(-20px);
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes movescale {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  to {
    transform: scale(0.8);
  }
}
@keyframes moveleftbounce {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20px);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes animationFramesOne {
  0% {
    transform: translate(0) rotate(0deg);
  }
  20% {
    transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    transform: translate(-40px, 72px) rotate(144deg);
  }
  to {
    transform: translate(0) rotate(0deg);
  }
}
@keyframes movebounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes animationFramesOne {
  0% {
    transform: translate(0) rotate(0deg);
  }
  20% {
    transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    transform: translate(-40px, 72px) rotate(144deg);
  }
  to {
    transform: translate(0) rotate(0deg);
  }
}
@keyframes rotateme {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
@keyframes moveleftbounce {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20px);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes dash {
  to {
    stroke-dashoffset: -1000;
  }
}
@keyframes showandhide {
  0% {
    opacity: 0;
    bottom: -200px;
  }
  5% {
    opacity: 1;
    bottom: 0;
  }
  95% {
    opacity: 1;
    bottom: 0;
  }
  100% {
    opacity: 0;
    bottom: -200px;
  }
}
.loading {
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 100%;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
  opacity: 0;
  top: -50%;
  left: 0;
  top: 0;
}
.loading .shape {
  display: none;
}
.loading.home {
  background-image: linear-gradient(to bottom right, #01B19D, #C679E3);
}
.loading.home .shape {
  display: block;
}
.loading.show, .loading:target {
  z-index: 1003;
  top: 0;
  opacity: 1;
}
.loading .lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.loading .lds-roller div {
  animation: lds-roller 2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.loading .lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  margin: -4px 0 0 -4px;
}
.loading .lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.loading .lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.loading .lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.loading .lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.loading .lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.loading .lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.loading .lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.loading .lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.loading .lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.loading .lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.loading .lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.loading .lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.loading .lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.loading .lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.loading .lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.loading .lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
.loading .inner-pop-up {
  background-color: #fff;
  width: 500px;
  max-width: 90%;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.loading .inner-pop-up .close {
  display: block;
  padding: 10px;
  text-align: center;
  float: right;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  width: 40px;
  height: 40px;
  border-radius: 20px;
  margin: -15px;
  text-decoration: none;
  font-weight: 700;
  z-index: 3;
  position: relative;
}
.loading .inner-pop-up .close:hover {
  border-radius: 0;
}
.loading .inner-pop-up form {
  padding: 20px;
}
.loading .inner-pop-up form input {
  margin: 20px 0;
  border-radius: 25px;
}
.loading .inner-pop-up .img {
  background: linear-gradient(270deg, #C679E3 10.45%, #01B19D 67%);
  height: 260px;
  padding: 10px;
  text-align: center;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
html, body, .main {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
  scroll-padding: 100px;
}

*, ::before, ::after {
  box-sizing: border-box;
  font-family: "Mulish", sans-serif;
  transition: all 0.3s;
}

.container {
  width: 1180px;
  margin: 0 auto;
  max-width: 90%;
}

.grid, .grid-small {
  display: flex;
  justify-content: space-between;
}

.logo a {
  text-decoration: none;
  height: 40px;
}
.logo a:hover {
  padding-left: 30px;
}
.logo a:hover span {
  opacity: 0;
}
.logo a span {
  color: #fff;
  text-decoration: none;
  font-size: 26px;
  margin-left: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}

h1 {
  font-size: 64px;
  font-weight: 600;
  line-height: 80px;
  margin: 0;
  z-index: 2;
  position: relative;
}

h2 {
  font-size: 48px;
  font-weight: 600;
  margin: 0;
}

h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  line-height: 30px;
}

.btn {
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  z-index: 1;
  position: relative;
  border: 0;
  cursor: pointer;
}
.btn.small {
  font-size: 14px;
}
.btn.lite {
  font-weight: 300;
}
.btn.link-primary {
  color: #01B19D;
}
.btn.link-secondary {
  color: #C679E3;
}
.btn:hover {
  opacity: 0.6;
  text-decoration: underline;
}
.btn.primary, .btn.secondary, .btn.tertiary {
  height: 50px;
  padding: 10px 40px;
  background-image: linear-gradient(to bottom, #01B19D 50%, #C679E3 50%);
  background-size: 100% 200%;
  border-radius: 25px;
}
.btn.primary:hover, .btn.secondary:hover, .btn.tertiary:hover {
  background-position: 0 100%;
  opacity: 1;
}
.btn.secondary {
  background-image: linear-gradient(to bottom, #C679E3 50%, #01B19D 50%);
}
.btn.tertiary {
  background-image: linear-gradient(to bottom, #FEA609 50%, #01B19D 50%);
}
.btn.reverse {
  border: 2px solid #fff;
}
.btn.arrow:after {
  content: url(../img/arrow.png);
  margin-left: 30px;
  float: right;
  margin-top: 5px;
}
.btn.arrow:hover:after {
  margin-left: 50px;
}

.center {
  text-align: center;
}

p {
  color: #242424;
}

footer {
  background-color: #272C38;
  padding: 80px 0;
  position: relative;
}
footer .grid .logo img {
  width: 80px;
}
footer .grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
footer .grid ul li {
  margin-top: 10px;
  color: #272C38;
}
footer .grid ul .social {
  justify-content: start;
}
footer .grid ul .social a {
  margin-right: 10px;
  margin-top: 20px;
  width: 40px;
  padding: 4px;
}
footer .grid ul .social a:hover {
  padding: 0;
  opacity: 1;
}
footer .grid ul .social a img {
  width: 100%;
}

.badge {
  height: 30px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  color: #01B19D;
  background: rgba(1, 177, 157, 0.2);
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
}

.shape {
  position: absolute;
  pointer-events: none;
}

.shape1 {
  left: 56%;
  top: 10%;
}
.shape1 img {
  animation: movescale 5s linear infinite;
}

.shape2 {
  left: 3%;
  top: 12%;
}
.shape2 img {
  animation: movebounce 5s linear infinite;
}

.shape3 {
  left: 30%;
  top: 13%;
}
.shape3 img {
  animation: moveleftbounce 5s linear infinite;
}

.shape4 {
  left: auto;
  bottom: 21%;
  right: 15%;
}
.shape4 img {
  animation: moveleftbounce 5s linear infinite;
}

.shape5 {
  left: 9%;
  bottom: 10%;
}
.shape5 img {
  animation: animationFramesOne 20s linear infinite;
}

.shape6 {
  left: 25%;
  bottom: 21%;
}
.shape6 img {
  animation: rotateme 30s linear infinite;
}

.shape7 {
  left: 35%;
  bottom: 8%;
}
.shape7 img {
  animation: rotateme 20s linear infinite;
}

.shape8 {
  left: 38%;
  bottom: 22%;
}
.shape8 img {
  animation: moveleftbounce 5s linear infinite;
}

.shape9 {
  left: auto;
  bottom: 20%;
  right: 9%;
}
.shape9 img {
  animation: rotateme 30s linear infinite;
}

.shape10 {
  left: auto;
  bottom: 20%;
  right: 5%;
}
.shape10 img {
  animation: rotateme 50s linear infinite reverse;
}

.shape11 {
  right: 0;
  top: 35%;
  z-index: -1;
  opacity: 50%;
}
.shape11 img {
  width: 250px;
}

.shape13 {
  left: 25%;
  bottom: 30%;
}
.shape13 img {
  animation: rotateme 20s linear infinite;
}

.shape14 {
  left: 0;
  top: 0;
}

.shape15 {
  left: 0;
  top: 1000px;
  transform: rotate(180deg);
  opacity: 0.35;
}
.shape15 img {
  width: 200px;
}

.shape17 {
  left: 0;
  bottom: 0;
}
.shape17 img {
  height: 250px;
}

.shape-circle {
  left: 30%;
  bottom: 10%;
  position: absolute;
  width: 26px;
  height: 26px;
  background: #C679E3;
  border-radius: 50%;
  animation: animationFramesOne 20s linear infinite;
}

@media only screen and (max-width: 1180px) {
  .grid {
    display: block;
  }
  .hide-mobile, nav.scrolled {
    display: none;
  }
  .show-mobile {
    display: block;
  }
}
section:not(.header) {
  padding: 80px 0;
}
section:not(.header) .title {
  text-align: center;
}

nav {
  position: fixed;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
}
nav.scrolled {
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  display: inline-block;
  margin-left: 40px;
}

header {
  height: calc(100% - 85px);
}
header .banner {
  background-image: url(../img/banner.jpg);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #000;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0 0 80px 0;
}
header .banner .text {
  max-width: 500px;
  padding-top: 290px;
}
header .banner .text h1, header .banner .text h3 {
  color: #fff;
  margin: 0;
}
header .banner .text h1 .benefits {
  display: block;
}
header .banner .text h1 .benefits span {
  position: absolute;
  opacity: 0;
  overflow: hidden;
  animation: rotateWord 16s linear infinite 0s;
  text-decoration: underline;
}
header .banner .text h1 .benefits span:nth-child(2) {
  animation-delay: 4s;
}
header .banner .text h1 .benefits span:nth-child(3) {
  animation-delay: 8s;
}
header .banner .text h1 .benefits span:nth-child(4) {
  animation-delay: 12s;
}
header .banner .text h3 {
  margin: 40px 0;
}

section.by-number {
  padding: 10px 0 20px 0;
  height: 85px;
}
section.by-number .image, section.by-number .head {
  display: none;
}
section.by-number .title {
  width: 260px;
}
section.by-number .title h2 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: left;
  color: #C679E3;
}
section.by-number .number {
  padding: 10px;
  gap: 10px;
}
section.by-number .number h3 {
  font-weight: 900;
  color: #01B19D;
  font-size: 3rem;
}
section.by-number .number span {
  display: block;
  border-right: 2px solid rgba(1, 177, 157, 0.5);
}
section.by-number .number p {
  margin: 0;
  font-weight: 700;
  font-size: 0.9rem;
  color: #7C7C7C;
}

.how {
  background-color: #fff;
}
.how h2 {
  text-align: center;
  color: #C679E3;
}
.how .process {
  margin-bottom: 60px;
}
.how .step {
  text-align: center;
  width: 310px;
  z-index: 1;
}
.how .step .circle {
  width: 170px;
  height: 170px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background-image: url(../img/how-icon-1.png);
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 50px 20px;
}
.how .step .circle .number {
  width: 50px;
  height: 50px;
  color: #fff;
  background-color: #01B19D;
  border-radius: 50%;
  float: right;
  padding-top: 12px;
}
.how h3 {
  color: #242424;
}
.how p {
  color: #7C7C7C;
}
.how .step-1-2 {
  position: relative;
}
.how .step-1-2 .dashs {
  position: absolute;
  z-index: -1;
  top: 85px;
  left: 130px;
}
.how .step-1-2 .dashs path {
  stroke-dasharray: 20;
  animation: dash 40s infinite linear;
}
.how .step-2 .circle {
  background-image: url(../img/how-icon-2.png);
}
.how .step-3- {
  justify-content: center;
  margin-top: -120px;
}
.how .step-3- .circle {
  background-image: url(../img/how-icon-3.png);
}

.why .benefit {
  background-color: #F7C7FD;
  padding: 60px 0;
}
.why .benefit .grid .image {
  width: 580px;
  margin-right: 90px;
}
.why .benefit .grid .text h2 {
  font-size: 60px;
  line-height: 70px;
  color: #9f2bcb;
}
.why .benefit .grid .text p {
  font-size: 20px;
  color: #636363;
  font-weight: 300;
}
.why .benefit.learning {
  background-color: #FFEDCE;
}
.why .benefit.learning .grid .image {
  margin-right: 0;
  margin-left: 90px;
}
.why .benefit.learning .grid .text h2 {
  color: #FEA609;
}
.why .benefit.diversity {
  background-color: #D8EDF0;
}
.why .benefit.diversity .grid .text h2 {
  color: #01B19D;
}

section.about {
  position: relative;
  padding-bottom: 0;
}
section.about h2 {
  color: #C679E3;
}
section.about p {
  color: #7C7C7C;
  font-weight: 300;
}
section.about .about-shems {
  width: calc(100% - 600px);
  margin-right: 100px;
  padding-bottom: 80px;
}
section.about .scrollable {
  width: 590px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
  padding: 0;
  height: 360px;
  overflow: hidden;
  background-color: #fff;
  z-index: 1;
  position: relative;
}
section.about .scrollable ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
}
section.about .scrollable ul li {
  width: 40px;
  height: 89.25px;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 1px;
  background-color: rgba(198, 121, 227, 0.3);
  overflow: hidden;
  color: #fff;
}
section.about .scrollable ul li img {
  width: 20px;
  margin: 0 20px 0 10px;
}
section.about .scrollable ul li.active, section.about .scrollable ul li:hover {
  background-color: #C679E3;
  width: 70px;
}
section.about .scrollable ul li.active img, section.about .scrollable ul li:hover img {
  width: 50px;
}
section.about .scrollable ul li:hover {
  width: 250px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
}
section.about .scrollable .screen {
  margin-left: 60px;
  padding: 25px;
  height: 360px;
}
section.about .scrollable .screen .image {
  background: linear-gradient(119.45deg, #96C6FF -0.6%, rgba(243, 248, 255, 0) 48.24%, rgba(150, 198, 255, 0.4) 99.16%);
  text-align: center;
  padding-top: 10px;
}
section.about .scrollable .screen h3 {
  color: #C679E3;
  margin: 20px 0;
  font-size: 20px;
}
section.about .scrollable .screen p {
  font-size: 14px;
  margin-bottom: 10px;
  height: 120px;
  overflow: hidden;
}
section.about .try {
  background-color: #01B19D;
  padding: 120px;
  text-align: center;
  margin-top: -40px;
}
section.about .try h2, section.about .try p {
  color: #fff;
}
section.about .try p {
  margin-bottom: 50px;
}
section.about .shape2 {
  top: 70%;
  left: 20%;
}
section.about .shape4 {
  top: 55%;
  left: 15%;
}
section.about .shape6 {
  left: 80%;
  bottom: 10%;
}

.case-studies {
  background-color: rgba(1, 177, 157, 0.2);
}
.case-studies h2 {
  color: #01B19D;
  margin-bottom: 50px;
}
.case-studies .cases {
  margin-left: 250px;
  flex-wrap: wrap;
}
.case-studies .cases .case {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
  padding: 30px;
  width: 280px;
  background-image: linear-gradient(to right, #fff 50%, #01B19D 50%);
  background-size: 200% 100%;
  margin-right: 30px;
  margin-top: 30px;
}
.case-studies .cases .case:hover {
  background-position: -100% 0;
}
.case-studies .cases .case:hover h3, .case-studies .cases .case:hover p, .case-studies .cases .case:hover .btn {
  color: #fff;
}
.case-studies .cases .case:hover img {
  filter: brightness(100);
}
.case-studies .cases .case:hover .badge {
  background-color: #fff;
}
.case-studies .cases .case img {
  width: 100px;
  filter: grayscale(100%);
}
.case-studies .cases .case h3 {
  font-size: 20px;
  font-weight: 600;
  color: #242424;
  margin: 20px 0;
}
.case-studies .cases .case p {
  color: #7C7C7C;
  font-size: 14px;
  font-weight: 300;
}
.case-studies .cases .case.post .logo {
  width: calc(100% + 60px);
  margin: -30px;
  height: 140px;
  overflow: hidden;
  margin-bottom: 20px;
}
.case-studies .cases .case.post .logo img {
  width: 100%;
  filter: none;
}
.case-studies .cases .case.post:hover img {
  filter: none;
}

.pricing .startup, .pricing .enterprise {
  background-color: #C679E3;
  padding: 100px;
  width: 100%;
}
.pricing .startup h2, .pricing .enterprise h2 {
  color: #fff;
  font-weight: 300;
}
.pricing .startup p, .pricing .enterprise p {
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 50px;
}
.pricing .startup {
  background-color: rgba(198, 121, 227, 0.2);
}
.pricing .startup h2 {
  color: #C679E3;
}
.pricing .startup p {
  color: #7C7C7C;
}

.btn.go-up {
  position: fixed;
  top: -80px;
  right: 30px;
  width: 50px;
  padding: 0;
  background-image: url(../img/arrow.png);
  display: block;
  background-color: #01B19D;
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(-90deg);
  opacity: 0;
  transition: all 0.6s;
  color: #01B19D;
  text-align: center;
}
.btn.go-up:hover {
  background-position: center;
}

.inner-page header {
  height: auto;
}
.inner-page header .banner {
  background-image: none;
  background-color: #01B19D;
}
.inner-page header .banner .text {
  max-width: 100%;
}
.inner-page .shape14 img {
  height: 300px;
}
.inner-page .shape4 {
  bottom: 50%;
}
.inner-page .shape9 {
  bottom: 43%;
}
.inner-page .shape10 {
  bottom: 38%;
}

.blog.pages .meta {
  display: none;
}
.blog nav {
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}
.blog h1 {
  margin: 20px 0 20px 0;
}
.blog h4.meta {
  color: #666;
  margin: 0 0 40px;
}
.blog h4.meta span {
  margin: 0 40px;
}
.blog p, .blog li {
  color: #363740;
  font-size: 1.2rem;
}
.blog .banner {
  background-color: #01B19D;
}
.blog .content h1, .blog .content h2, .blog .content h3 {
  color: #01B19D;
}
.blog.secondary .banner {
  background-color: #C679E3;
}
.blog.secondary .content h1, .blog.secondary .content h2, .blog.secondary .content h3 {
  color: #C679E3;
}
.blog.tertiary .banner {
  background-color: #FEA609;
}
.blog.tertiary .content h1, .blog.tertiary .content h2, .blog.tertiary .content h3 {
  color: #FEA609;
}

form.contact {
  padding: 30px;
  background-color: #fff;
}
form.contact:hover h3 {
  color: #01B19D !important;
}
form label span {
  margin: 30px 0 10px 0;
  display: block;
}
form input, form select, form textarea {
  width: 100%;
  height: 50px;
  border: 2px solid #E4EBEB;
  background-color: #F7FCFC;
  padding: 0 20px;
  border-radius: 5px;
  font-size: 1.1rem;
}
form textarea {
  height: 150px;
  padding: 10px 20px;
}

@media only screen and (max-width: 1180px) {
  .btn {
    font-size: 16px;
  }
  header .banner {
    max-height: 100%;
    height: 100%;
    background-image: url(../img/banner-mobile.jpg);
  }
  header .banner .text h1 {
    font-size: 3rem;
    line-height: 3.5rem;
  }
  header .banner .text h3 {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  header .banner .text a.btn {
    width: 100%;
    text-align: center;
    padding: 14px;
  }
  header .banner .shape1 {
    left: 35%;
  }
  header .banner .shape2 {
    top: 105%;
  }
  header .banner .shape9 {
    top: 90%;
  }
  header .banner .shape15 {
    top: 150%;
  }
  .how {
    margin-top: 0;
  }
  .how h3 {
    margin-top: 20px;
  }
  .btn.go-up.scrolled {
    opacity: 0.5;
    top: calc(100% - 80px);
  }
  .how .step {
    width: 100%;
    padding: 30px;
  }
  .how .step .circle {
    margin: 0 auto;
  }
  .how .step-3- {
    margin-top: 0;
  }
  .why .benefit.learning .grid .image {
    margin-left: 0;
    margin-top: 20px;
  }
  .why .benefit .grid .text h2 {
    font-size: 40px;
    line-height: 46px;
  }
  .why .benefit .grid .text a.btn {
    width: 100%;
    padding: 14px;
    text-align: center;
  }
  .why .benefit .grid .image {
    margin-right: 0;
    width: 100%;
  }
  .why .benefit .grid .image img {
    width: 100%;
  }
  section.about .about-shems, section.about .scrollable {
    width: 100%;
  }
  section.about .try {
    padding: 120px 0;
  }
  .case-studies .cases {
    margin-left: 0;
  }
  .case-studies .cases .case {
    margin-bottom: 30px;
    width: 100%;
  }
  .pricing .enterprise, .pricing .startup {
    padding: 100px 50px;
  }
  .inner-page h1 {
    font-size: 50px;
    line-height: 65px;
  }
  .inner-page header .banner .shape9 {
    top: 10px;
    right: 4%;
  }
}/*# sourceMappingURL=styles.css.map */