@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Livvic:wght@600&display=swap");

/* poppins-600 - latin */

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/poppins-v19-latin/poppins-v19-latin-600.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('fonts/poppins-v19-latin/poppins-v19-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/poppins-v19-latin/poppins-v19-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/poppins-v19-latin/poppins-v19-latin-600.woff') format('woff'), /* Modern Browsers */
       url('fonts/poppins-v19-latin/poppins-v19-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/poppins-v19-latin/poppins-v19-latin-600.svg#Poppins') format('svg'); /* Legacy iOS */
}


@font-face {
  font-family: "сm_cleaned_bold_regular";
  src: url("fonts/сm_cleaned_bold_regular/cm_cleaned_bold-regular-webfont.woff2") format("woff2"), url("fonts/сm_cleaned_bold_regular/cm_cleaned_bold-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
}

body {
  font: 100% "Poppins";
  color: #727993;
  font-size: 17px;
  line-height: 1.5;
  overflow-x: hidden;
}

#container {
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

.sizers {
  width: 1440px;
  margin: 0 auto;
}

h1 {
  font-family: "Poppins";
  font-size: 47px;
  color: #120522;
}

.sub_headings {
  font-family: "Poppins";
  font-size: 18px;
  color: #120522;
}

h1, h2, h3, h4, h5, h6 {
  color: #2F2E3F;
  font-family: "Livvic";
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: #2F2E3F;
}

h1 {
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: 0.025em;
}

h2 {
  font-size: 54px;
  line-height: 50px;
  letter-spacing: 0.025em;
}

a {
  text-decoration: none;
  color: #2393FF;
}

.hidden {
  display: none;
}

.sub-heading {
  font-size: 26px;
  color: #979797;
  line-height: 35px;
}

.dark-blue-head {
  color: #231E73;
}

.container_max_width {
  max-width: 55%;
  margin: 0 auto;
}

.o-email-handler {
  max-width: 578px;
  height: 80px;
  position: relative;
  margin: 0 auto;
}
.o-email-handler .o-email-handler__input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 4px solid #E4E9EF;
  border-radius: 50px;
  font-size: 20px;
  padding-left: 45px;
}
.o-email-handler .o-email-handler__input::placeholder {
  color: #D8D8D8;
}
.o-email-handler .revue-form-actions {
  position: absolute;
  right: 9px;
  top: 50%;
  height: calc(100% - 18px);
  border-radius: 50px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}
.o-email-handler .revue-form-actions .o-email-handler__submit {
  background-color: transparent;
  border: 0;
  font-size: 25px;
  line-height: 1;
  color: #231E73;
}

.blob-btn {
  z-index: 1;
  position: relative;
  padding: 11px 50px;
  text-align: center;
  color: #231E73;
  font-size: 25px;
  font-weight: 500;
  background-color: transparent;
  outline: none;
  border: none;
  transition: color 0.5s;
  cursor: pointer;
  border-radius: 34px;
}
.blob-btn:before {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 3px solid #231E73;
  border-radius: 30px;
}
.blob-btn:after {
  content: "";
  z-index: -2;
  position: absolute;
  left: 4.5px;
  top: 4.5px;
  width: 100%;
  height: 100%;
  transition: all 0.3s 0.2s;
  border-radius: 30px;
}
.blob-btn:hover {
  color: #FFFFFF;
  border-radius: 30px;
}
.blob-btn:hover:after {
  transition: all 0.3s;
  left: 0;
  top: 0;
  border-radius: 30px;
}
.blob-btn__inner {
  z-index: -1;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: #ffffff;
}
.blob-btn__blobs {
  position: relative;
  display: block;
  height: 100%;
  filter: url("#goo");
}
.blob-btn__blob {
  position: absolute;
  top: 3px;
  width: 25%;
  height: 100%;
  background: #231E73;
  border-radius: 100%;
  transform: translate3d(0, 150%, 0) scale(1.7);
  transition: transform 0.45s;
}
@supports (filter: url("#goo")) {
  .blob-btn__blob {
    transform: translate3d(0, 150%, 0) scale(1.4);
  }
}
.blob-btn__blob:nth-child(1) {
  left: 0%;
  transition-delay: 0s;
}
.blob-btn__blob:nth-child(2) {
  left: 30%;
  transition-delay: 0.08s;
}
.blob-btn__blob:nth-child(3) {
  left: 60%;
  transition-delay: 0.16s;
}
.blob-btn__blob:nth-child(4) {
  left: 90%;
  transition-delay: 0.24s;
}
.blob-btn:hover .blob-btn__blob {
  transform: translateZ(0) scale(1.7);
}
@supports (filter: url("#goo")) {
  .blob-btn:hover .blob-btn__blob {
    transform: translateZ(0) scale(1.4);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(-30px);
  }
  60% {
    transform: translateX(-15px);
  }
}
#main-header {
  padding: 40px 5px;
}
#main-header .container_max_width {
  max-width: 70%;
}
#main-header .logo_wrapper a {
  color: #393939 !important;
  font-size: 19px;
  display: flex;
}
#main-header .logo_wrapper a .logo {
  margin-right: 10px;
}
#main-header .main-menu ul li {
  margin-right: 53px;
}
#main-header .main-menu ul li:last-child {
  margin: 0;
}
#main-header .main-menu ul li:last-child a {
  background-color: #231E73;
  padding: 11px 46px;
  color: #fff;
  border-radius: 11px;
}
#main-header .main-menu ul li a {
  color: #393939;
  font-size: 19px;
  line-height: 1;
}

#main-header-mobile {
  display: none;
  position: fixed;
  top: 0;
  z-index: 999;
  background-color: #fff;
  padding: 15px 20px;
}
#main-header-mobile .mobile-btn-opener {
  position: relative;
  background-color: #231E73;
  width: 40px;
  height: 40px;
  float: right;
  border-radius: 5px;
}
#main-header-mobile .mobile-btn-opener span {
  position: absolute;
  width: 25px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
}
#main-header-mobile .mobile-btn-opener span:nth-child(1) {
  top: calc(50% - 7px);
}
#main-header-mobile .mobile-btn-opener span:nth-child(3) {
  top: calc(50% + 7px);
}
#main-header-mobile .mobile-btn-close {
  position: relative;
  background-color: #231E73;
  width: 40px;
  height: 40px;
  float: right;
  border-radius: 5px;
}
#main-header-mobile .mobile-btn-close span {
  position: absolute;
  width: 25px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #fff;
}
#main-header-mobile .mobile-btn-close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#main-header-mobile .mobile-menu {
  display: none;
  position: absolute;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  top: 65px;
  left: 12px;
}
#main-header-mobile .mobile-menu .mobile-menu-content {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
#main-header-mobile .mobile-menu .mobile-menu-content .nav {
  display: block;
  text-align: center;
}
#main-header-mobile .mobile-menu .mobile-menu-content .nav li {
  margin-bottom: 35px;
}
#main-header-mobile .mobile-menu .mobile-menu-content .nav li:last-child {
  margin-top: 40px;
}
#main-header-mobile .mobile-menu .mobile-menu-content .nav li:last-child a {
  background-color: #231E73;
  padding: 11px 46px;
  color: #fff;
  border-radius: 11px;
}
#main-header-mobile .mobile-menu .mobile-menu-content .nav li a {
  color: #393939;
  font-size: 28px;
  line-height: 1;
}

#hero {
  padding-top: 125px;
}
#hero h1 {
  margin-bottom: 30px;
}
#hero .sub-heading {
  margin-bottom: 37px;
}
#hero .hero-btn-holder {
  display: flex;
  justify-content: center;
}
#hero .hero-btn-holder .app-btn {
  margin: 0 15px;
}
#hero .hero-btn-holder .app-btn .blob-btn {
  padding-left: 80px;
}
#hero .hero-btn-holder .app-btn .blob-btn:before {
  border-radius: 8px;
}
#hero .hero-btn-holder .app-btn .blob-btn .blob-btn__inner {
  border-radius: 8px;
}
#hero .hero-btn-holder .app-btn .blob-btn:hover .blob-btn__icon svg {
  fill: #fff;
}
#hero .hero-btn-holder .app-btn .blob-btn__icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 35px;
  width: 40px;
  height: 40px;
}
#hero .hero-btn-holder .app-btn .blob-btn__icon svg {
  fill: #231E73;
}
#hero .hero-btn-holder .app-btn span {
  font-size: 10px;
  display: block;
}
#hero .hero-btn-holder .app-btn span.large-text {
  font-size: 22px;
}
#hero .hero-btn-holder .app-btn.google-btn .blob-btn__icon {
  background-image: url("../css/images/icon-google.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media only screen and (max-width: 680px) {
  #hero .hero-btn-holder {
    flex-direction: column;
  }
  #hero .hero-btn-holder .buttons {
    margin-bottom: 20px;
  }
}
#video {
  padding-top: 173px;
}
#video .video-content {
  position: relative;
}
#video .video-content .dolphin {
  position: absolute;
  left: calc(50% + 32px);
  transform: translateX(-50%);
  top: -119px;
  z-index: 1;
}
#video .video-content .video-holder {
  max-width: 993px;
  border-radius: 15px 15px 0 0;
  background-color: #231E73;
  margin: 0 auto;
  padding: 16px 16px 0;
}
#video .video-content .video-holder .plyr {
  border-radius: 15px 15px 0 0;
}
#video .video-content .video-holder .plyr .plyr__control--overlaid {
  background-color: #231E73;
  width: 100px;
  height: 100px;
  text-align: center;
  opacity: 1;
}
#video .video-content .video-holder .plyr .plyr__control--overlaid svg {
  left: 50%;
  position: relative;
  width: 26px;
  height: 26px;
  margin-left: -13px;
}
#video .video-content .video-holder .plyr .plyr__poster {
  background-size: 101%;
}

#get_feedback {
  position: relative;
  padding-top: 100px;
  background-color: #D5EEFF;
}
#get_feedback h2 {
  margin-bottom: 15px;
}
#get_feedback .sub-heading {
  color: #5A5971;
  max-width: 62%;
  margin: 0 auto 55px;
}
#get_feedback .blob-btn {
  padding: 27px 36px;
}
#get_feedback .blob-btn:before {
  border-radius: 20px;
}
#get_feedback .blob-btn .blob-btn__inner {
  border-radius: 20px;
}
#get_feedback .mockups {
  position: relative;
  width: 750px;
  height: 370px;
  margin: 40px auto 0;
  overflow: hidden;
}
#get_feedback .mockups .mockup-1 {
  background-image: url("../css/images/mockup-1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 371px;
  height: 648px;
  z-index: 1;
}
#get_feedback .mockups .mockup-2 {
  background-image: url("../css/images/mockup-2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 406px;
  height: 406px;
  position: absolute;
  left: -4px;
  bottom: -150px;
}
#get_feedback .mockups .dolphin {
  background-image: url("../css/images/dolphin-2.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 304px;
  height: 304px;
  position: absolute;
  right: 37px;
  z-index: 2;
  bottom: -20px;
  background-size: 76%;
  transform: rotate(50deg);
}
#get_feedback.with-top-bg {
  background-image: url("../css/images/resourses-top.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-color: transparent;
  margin-top: -15px;
  padding-top: 140px;
}

#how-it-works {
  padding-top: 55px;
  position: relative;
  background-image: url("../css/images/how-it-works-top.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  margin-top: -25px;
}
#how-it-works h2 {
  font-size: 29px;
  letter-spacing: 5.5px;
  margin-bottom: 25px;
}
#how-it-works .tabs-holder {
  position: relative;
  max-width: 1050px;
  margin: 0 auto;
}
#how-it-works .tabs-holder .magic-line {
  position: absolute;
  top: 4px;
  left: 0;
  width: 100px;
  height: 41px;
  background: #fff;
  border-radius: 30px;
}
#how-it-works .tabs-holder .nav-tabs {
  background-color: #E4E9EF;
  justify-content: center;
  border-radius: 35px;
  border: 0;
  padding: 4px 0;
  max-width: 82%;
  margin: 0 auto;
}
#how-it-works .tabs-holder .nav-tabs .nav-item .nav-link {
  position: relative;
  font-size: 18px;
  line-height: 1;
  color: #000;
  background-color: transparent;
  border: 0;
  z-index: 1;
  padding: 11px 50px;
}
#how-it-works .tabs-holder .tab-content {
  display: flex;
}
#how-it-works .tabs-holder .tab-content .tab-content-holder {
  display: flex;
  justify-content: space-between;
  padding-top: 90px;
  width: 1080px;
}
#how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices {
  width: 512px;
  height: 515px;
  position: relative;
}
#how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 15%;
  width: 65%;
  image-rendering: -webkit-optimize-contrast;
}
#how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices img.equations {
  width: 51%;
}
#how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices img.exponents {
  top: 8%;
  width: 40%;
}
#how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices.tab-devices-check {
  background-image: url("../css/images/dot-bg.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
#how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices.tab-devices-check button.btn {
  background-color: #231E73;
  border: 0;
  border-radius: 30px;
  font-size: 20px;
  line-height: 1;
  color: #fff;
  padding: 11px 40px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("../css/images/check.svg");
  background-repeat: no-repeat;
  background-position: 33px center;
  background-size: 26px;
  box-shadow: 0 10px 25px #c7c7c7;
  bottom: 50px;
  padding: 20px 30px 20px 80px;
}
#how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices.tab-devices-result {
  background-image: url("../css/images/tab-mockup.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
}
#how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices.tab-devices-result img {
  display: none;
  width: 75%;
  top: 17%;
}
#how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices.tab-devices-result .btn {
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
}
#how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices.tab-devices-result .btn .arrow-bounce {
  animation: bounce 2s infinite;
}
#how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices.tab-devices-result .btn .arrow-bounce .arrow-icon {
  width: 30px;
  height: 30px;
  background-image: url("../css/images/arrow-black.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(-180deg);
}
#how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices.tab-devices-result .btn .btn_text {
  padding-left: 10px;
}

#resources {
  padding-top: 95px;
  padding-bottom: 100px;
  margin-top: -20px;
  position: relative;
  background-image: url("../css/images/resourses-top.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
#resources h2 {
  letter-spacing: 1.5px;
  margin-bottom: 42px;
}
#resources .carousel .carousel-cell {
  margin-right: 105px;
  text-align: left;
}
#resources .carousel .carousel-cell .carousel-cell-img {
  width: 580px;
  height: 365px;
  background: #fff;
  border-radius: 15px;
  margin-bottom: 15px;
}
#resources .carousel .carousel-cell h5 {
  font-weight: 600;
  font-size: 27px;
  line-height: 43px;
  font-family: "Poppins";
  padding-left: 12px;
}
#resources .carousel .flickity-button {
  background-image: url("../css/images/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: transparent;
  width: 60px;
  height: 60px;
  top: 40%;
}
#resources .carousel .flickity-button.flickity-prev-next-button.next {
  left: 50%;
  transform: translateX(313px);
}
#resources .carousel .flickity-button.flickity-prev-next-button.previous {
  left: 50%;
  transform: translateX(-370px) rotate(-180deg);
}
#resources .carousel .flickity-button svg {
  display: none;
}

#case-study {
  padding-top: 95px;
  padding-bottom: 100px;
  margin-top: -20px;
  position: relative;
  background-image: url("../css/images/resourses-top.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
#case-study h2 {
  letter-spacing: 1.5px;
  margin-bottom: 42px;
}
#case-study h3 {
  font-size: 37px;
  margin-bottom: 25px;
}
#case-study p {
  font-size: 22px;
  color: #000;
}
#case-study .designation-of-person {
  margin-top: 35px;
  margin-bottom: 30px;
}
#case-study a {
  font-size: 22px;
  font-weight: 600;
}
#case-study .container_max_width {
  max-width: 63%;
  align-items: center;
}

@media only screen and (max-width: 1440px) {
  #case-study .container_max_width {
    max-width: 90%;
  }
}
@media only screen and (max-width: 1025px) {
  #case-study .container_max_width {
    max-width: 100%;
  }
}
@media only screen and (max-width: 980px) {
  #case-study .img-holder {
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 680px) {
  #case-study h3 {
    font-size: 30px;
  }
  #case-study p, #case-study a {
    font-size: 18px;
  }
}
#featured-in {
  padding: 100px 0 150px;
  background-color: #ACDEFF;
  background-image: url("../css/images/featuredin-background.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#featured-in h2 {
  font-size: 47px;
}
#featured-in .sub-heading {
  font-size: 17px;
  line-height: 1.5;
  color: #2393FF;
}
#featured-in .sub-heading a {
  color: #2393FF;
  font-weight: 600;
}
#featured-in .featured-in-logo-holder {
  display: flex;
  justify-content: space-between;
  max-width: 1160px;
  margin: 75px auto 0;
}
#featured-in .featured-in-logo-holder img:nth-child(2) {
  padding-left: 133px;
}
#featured-in .featured-in-logo-holder img:nth-child(3) {
  padding-left: 65px;
}

#call-to-action-2 {
  padding: 200px 0;
  background-image: url("../css/images/signup-background.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#call-to-action-2 .sign-up-form {
  padding-left: 100px;
}
#call-to-action-2 .sign-up-form h2 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 15px;
}
#call-to-action-2 .sign-up-form .sub-heading {
  margin-bottom: 60px;
}
#call-to-action-2 .dolphin {
  transform: translateY(-25px);
}

#call-to-action-2.no-bg {
  background-image: none;
}

#footer {
  padding: 100px 0 50px;
  color: #fff;
  margin-top: -25px;
  background-image: url("../css/images/footer-bg.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
#footer h4 {
  color: #fff;
  font-size: 25px;
  line-height: 37px;
  font-family: "Poppins";
}
#footer a {
  display: block;
  color: #fff;
  font-size: 25px;
  margin-bottom: 17px;
}
#footer a:last-child {
  margin-left: 0;
}
#footer a.color-blue {
  color: #2393FF;
}
#footer .container_max_width {
  max-width: 70%;
}
#footer .copyright {
  font-size: 25px;
  padding-top: 25px;
}

@media only screen and (min-width: 1350px) and (max-width: 1440px) {
  #call-to-action-2 .sign-up-form {
    padding-left: 0;
  }

  #footer .container_max_width {
    max-width: 80%;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1350px) {
  .container_max_width {
    max-width: 80%;
  }

  #main-header .container_max_width {
    max-width: 90%;
  }

  #video {
    padding-top: 170px;
  }
  #video .video-content .dolphin {
    width: 521px;
    top: -119px;
  }

  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices.tab-devices-check {
    margin-left: 0%;
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices.tab-devices-result {
    background-size: 140%;
  }
}
@media only screen and (max-width: 1024px) {
  .container_max_width {
    max-width: 80%;
  }

  #main-header .container_max_width {
    max-width: 90%;
  }

  .sub-heading {
    font-size: 18px;
    line-height: 1.5;
  }

  #how-it-works .tabs-holder {
    max-width: 100%;
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder {
    width: 100vw;
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices {
    width: 48%;
    height: 421px;
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices.tab-devices-result {
    background-size: 140%;
  }
  #how-it-works .tabs-holder .nav-tabs .nav-item .nav-link {
    padding: 11px 40px;
  }

  #how-it-works .tabs-holder .nav-tabs {
    max-width: 92%;
  }

  #featured-in .featured-in-logo-holder {
    display: block;
    max-width: 88vw;
  }
  #featured-in .featured-in-logo-holder img {
    margin: 0 5%;
    padding: 0 !important;
  }

  #call-to-action-2 .sign-up-form {
    padding-left: 0;
  }
}
@media only screen and (max-width: 980px) {
  #main-header {
    display: none;
  }

  #main-header-mobile {
    display: block;
    padding: 15px 5px;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1023px) {
  #video {
    padding-top: 130px;
  }
  #video .video-content .dolphin {
    width: 320px;
    top: -73px;
  }

  #get_feedback .sub-heading {
    max-width: 100%;
  }
  #get_feedback .mockups {
    width: 650px;
  }
  #get_feedback .mockups .dolphin {
    right: -10px;
  }

  #how-it-works .tabs-holder .nav-tabs-wrap .nav-tabs {
    max-width: 805px;
    width: auto;
  }

  #footer .container_max_width .text-end {
    text-align: left !important;
  }
}
@media only screen and (min-width: 768px) {
  .tab-devices-check {
    margin-left: 2%;
  }
}
@media only screen and (max-width: 780px) {
  h2 {
    font-size: 45px;
    line-height: 1.2;
  }

  .container_max_width,
#footer .container_max_width {
    max-width: 92%;
  }

  #featured-in .featured-in-logo-holder img {
    margin: 0 0 30px;
  }

  #how-it-works {
    margin-top: 0;
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder {
    padding-top: 50px;
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices {
    height: 385px;
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices img {
    /*top: 44%;*/
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices.tab-devices-check button.btn {
    background-size: 16px;
    background-position: 25px center;
    z-index: 99;
    font-size: 16px;
    padding: 15px 27px 15px 55px;
  }
  #how-it-works .tabs-holder .nav-tabs-wrap .nav-tabs .nav-item .nav-link {
    padding: 11px 30px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  h1 {
    font-size: 38px;
    line-height: 1.2;
  }

  .o-email-handler {
    height: 60px;
    margin-bottom: 25px;
  }
  .o-email-handler .o-email-handler__input {
    padding-left: 5%;
    font-size: 16px;
  }

  .blob-btn {
    font-size: 18px;
    padding: 11px 25px;
  }

  #hero h1 {
    font-size: 38px;
    line-height: 1.2;
  }

  #video {
    padding-top: 90px;
  }
  #video .video-content .dolphin {
    position: absolute;
    left: calc(50% - -11px);
    transform: translateX(-50%);
    top: -63px;
    z-index: 1;
    width: 280px;
  }
  #video .video-content .video-holder .plyr .plyr__control--overlaid {
    width: 60px;
    height: 60px;
  }
  #video .video-content .video-holder .plyr .plyr__control--overlaid svg {
    width: 18px;
    height: 18px;
    margin-left: -9px;
  }

  #resources .carousel .carousel-cell {
    margin-right: 20px;
  }
  #resources .carousel .carousel-cell .carousel-cell-img {
    width: calc(320px - 50px);
    height: 170px;
  }
  #resources .carousel .carousel-cell h5 {
    font-size: 21px;
  }

  #get_feedback .sub-heading {
    max-width: 100%;
  }
  #get_feedback .mockups {
    width: 100%;
  }
  #get_feedback .mockups .mockup-1 {
    width: 100%;
    height: 570px;
    background-position: top center;
  }
  #get_feedback .mockups .mockup-2, #get_feedback .mockups .dolphin {
    display: none;
  }

  #featured-in {
    padding: 100px 0;
  }

  #how-it-works .tabs-holder .tab-content .tab-content-holder {
    flex-direction: column;
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices {
    width: 97%;
    margin: 0 auto;
    height: 450px;
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices img {
    top: 22%;
    width: 40%;
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices.tab-devices-check {
    background-image: url("../css/images/tab-mockup.svg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 140%;
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices.tab-devices-check img.exponents {
    top: 15%;
    width: 32%;
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices.tab-devices-check button.btn {
    background-position: 31px center;
    background-size: 20px;
    padding: 16px 30px 16px 65px;
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices.tab-devices-result {
    margin-top: -450px;
    background-image: none;
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices.tab-devices-result img {
    width: 58%;
    top: 14%;
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices.tab-devices-result .btn {
    display: none;
  }
  #how-it-works .tabs-holder .nav-tabs-wrap {
    overflow-x: scroll;
    width: 92%;
    margin: 0 auto;
    border-radius: 34px;
  }
  #how-it-works .tabs-holder .nav-tabs-wrap .nav-tabs {
    max-width: 700px;
    width: 700px;
  }

  #call-to-action-2 {
    padding: 100px 0;
  }

  #footer .container_max_width .text-end {
    text-align: left !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 373px) {
  .blob-btn {
    font-size: 16px;
    padding: 8px 12px;
  }

  .o-email-handler .o-email-handler__input {
    padding-left: 5%;
    font-size: 14px;
  }

  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices {
    height: 380px;
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices img {
    top: 22%;
    width: 64%;
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices.tab-devices-check img.equations {
    width: 55%;
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices.tab-devices-check img.exponents {
    top: 15%;
    width: 32%;
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices.tab-devices-result {
    margin-top: -380px;
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices.tab-devices-result img {
    width: 80%;
    top: 12%;
  }
}
@media only screen and (min-width: 374px) and (max-width: 425px) {
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices {
    height: 400px;
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices img {
    top: 22%;
    width: 64%;
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices.tab-devices-check img.equations {
    width: 55%;
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices.tab-devices-check img.exponents {
    top: 15%;
    width: 32%;
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices.tab-devices-result {
    margin-top: -400px;
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices.tab-devices-result img {
    width: 82%;
    top: 5%;
  }
}
@media only screen and (min-width: 426px) and (max-width: 767px) {
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices {
    height: 540px;
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices img {
    top: 28%;
    width: 49%;
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices.tab-devices-check img.equations {
    width: 45%;
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices.tab-devices-check img.exponents {
    top: 15%;
    width: 32%;
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices.tab-devices-check button.btn {
    bottom: 80px;
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices.tab-devices-result {
    margin-top: -540px;
  }
  #how-it-works .tabs-holder .tab-content .tab-content-holder .tab-devices.tab-devices-result img {
    width: 67%;
    top: 14%;
  }
}
.about-us .sizers {
  width: 1140px;
}
.about-us #content {
  padding-top: 140px;
}
.about-us h2.page-title {
  font-size: 48px;
  width: 80%;
  margin: 0 auto;
}
.about-us .intro {
  font-size: 26px;
  width: 57%;
  margin: 0 auto;
  padding: 80px 0 75px;
}
.about-us h3.page-title {
  font-size: 46px;
  padding: 160px 0 75px;
}
.about-us #team .row:nth-child(3) {
  padding-top: 80px;
  padding-bottom: 260px;
}
.about-us .team-member {
  width: 340px;
  flex: unset;
}
.about-us .team-member .team-member__photo {
  border: 7px solid #EBEBEB;
  box-sizing: border-box;
  border-radius: 20px;
}
.about-us .team-member .team-member__photo img {
  border-radius: 10px;
}
.about-us .team-member .team-member__name {
  font-size: 32px;
  margin-top: 30px;
  margin-bottom: 23px;
}
.about-us .team-member .team-member__position {
  font-size: 28px;
  color: #656565;
}
.about-us .team-member .team-member__hobby {
  font-size: 28px;
  color: #231E73;
}

@media only screen and (max-width: 1024px) {
  .about-us .sizers {
    width: 100%;
  }
  .about-us .team-member {
    width: 33%;
  }
  .about-us .team-member .team-member__name {
    font-size: 26px;
    margin-top: 20px;
    margin-bottom: 12px;
  }
  .about-us .team-member .team-member__position, .about-us .team-member .team-member__hobby {
    font-size: 21px;
  }
}
@media only screen and (max-width: 800px) {
  .about-us h2.page-title {
    font-size: 32px;
    width: 100%;
  }
  .about-us h3.page-title {
    font-size: 36px;
    padding: 60px 0 45px;
  }
  .about-us .intro {
    font-size: 21px;
    width: 90%;
    padding: 40px 0 45px;
  }
  .about-us .team-member {
    width: 33%;
  }
  .about-us .team-member .team-member__name {
    font-size: 17px;
    margin-bottom: 7px;
  }
  .about-us .team-member .team-member__position, .about-us .team-member .team-member__hobby {
    font-size: 14px;
    margin-bottom: 7px;
  }
}
@media only screen and (max-width: 425px) {
  .about-us h2.page-title {
    font-size: 28px;
    width: 100%;
  }
  .about-us h3.page-title {
    font-size: 26px;
    padding: 60px 0 45px;
  }
  .about-us .intro {
    font-size: 18px;
    width: 90%;
    padding: 40px 0 45px;
  }
  .about-us #team .team-member {
    width: 100%;
    padding-bottom: 30px;
  }
  .about-us #team .team-member .team-member__name {
    font-size: 21px;
    margin-bottom: 9px;
  }
  .about-us #team .team-member .team-member__position, .about-us #team .team-member .team-member__hobby {
    font-size: 17px;
    margin-bottom: 7px;
  }
  .about-us #team .row:nth-child(3) {
    padding-bottom: 140px;
  }
}
.single .sizers {
  width: 850px;
}
.single #content {
  padding-top: 100px;
  padding-bottom: 250px;
}
.single .post-head {
  padding: 0 0 23px;
}
.single .post-head .meta {
  font-size: 28px;
}
.single .post-head h2.page-title {
  font-size: 49px;
  line-height: 1.2;
}
.single h3.page-title {
  font-size: 40px;
  margin-bottom: 30px;
}
.single p:not(.meta) {
  font-size: 22px;
  margin-bottom: 30px;
  padding: 0;
}
.single ul, .single ol {
  padding-left: 35px;
  margin-bottom: 45px;
}
.single ul li, .single ol li {
  font-size: 22px;
}
.single img {
  margin-top: 25px;
  margin-bottom: 40px;
}
.single img.big-img {
  margin-left: -19%;
  margin-right: -19%;
  margin-bottom: 50px;
  max-width: 1140px;
  width: 1140px;
  display: flex;
}
.single .social-links {
  margin-top: 80px;
  color: #000;
  font-weight: 600;
}

@media only screen and (max-width: 1024px) {
  .single #content {
    padding-top: 30px;
    padding-bottom: 150px;
  }
  .single .post-head .meta {
    font-size: 21px;
  }
  .single .post-head h2.page-title {
    font-size: 42px;
  }
  .single h3.page-title {
    padding: 0;
  }
  .single p:not(.meta) {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .single ul li, .single ol li {
    font-size: 18px;
  }
  .single img.big-img {
    margin-left: -5%;
    margin-right: -5%;
    margin-bottom: 50px;
    max-width: calc(100vw - 100px);
    width: calc(100vw - 100px);
    display: flex;
  }
  .single .social-links {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 980px) {
  .single .sizers {
    width: 90%;
  }
  .single #content {
    padding-top: 135px;
    padding-bottom: 150px;
  }
  .single .post-head .meta {
    font-size: 16px;
  }
  .single .post-head h2.page-title {
    font-size: 35px;
  }
  .single p:not(.meta) {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .single img {
    padding: 0;
  }
  .single img.big-img {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .single h3.page-title {
    font-size: 30px;
    padding: 0;
  }
  .single ul li, .single ol li {
    font-size: 16px;
  }
  .single .social-links {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 425px) {
  .sizers .post-head h2.page-title {
    font-size: 26px;
  }
}
.blog .sizers {
  width: 1170px;
}
.blog #content {
  padding-top: 55px;
  padding-bottom: 135px;
}
.blog h1 {
  margin-bottom: 32px;
}
.blog h3 {
  font-size: 24px;
  line-height: 1.3;
}
.blog h3 a {
  color: #000;
}
.blog .featured-post {
  padding-bottom: 75px;
  justify-content: space-between;
}
.blog .featured-post .featured-image {
  width: 63%;
}
.blog .featured-post .featured-image + .col {
  width: 37%;
}
.blog .featured-post .featured-image + .col h3 {
  margin-bottom: 30px;
}
.blog .featured-post .col {
  flex: unset;
}
.blog p:not(.meta) {
  font-size: 22px;
  margin-bottom: 30px;
}
.blog p.meta {
  font-size: 15px;
  color: #C4C4C4;
}
.blog .blog-grid .col {
  padding-bottom: 35px;
}
.blog .blog-grid .col .post-img {
  margin-bottom: 15px;
}
.blog .blog-grid .col h3 {
  margin-bottom: 15px;
}

@media only screen and (max-width: 1024px) {
  .blog .sizers {
    width: 100%;
  }
  .blog p:not(.meta) {
    font-size: 17px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 980px) {
  .blog #content {
    padding-top: 100px;
  }
  .blog .featured-post .featured-image {
    width: 100%;
    margin-bottom: 20px;
  }
  .blog .featured-post .featured-image + .col {
    width: 100%;
  }
  .blog h1 {
    margin-bottom: 20px;
    font-size: 34px;
  }
}
@media only screen and (max-width: 768px) {
  .blog .row-cols-2 > * {
    width: 100%;
  }
  .blog h3 {
    font-size: 21px;
  }
}
.press-kit .sizers {
  width: 1170px;
}
.press-kit #content {
  padding-top: 110px;
  padding-bottom: 180px;
}
.press-kit h2 {
  line-height: 1.3;
  margin-bottom: 20px;
}
.press-kit p {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 40px;
}
.press-kit .media-press {
  justify-content: space-between;
  align-items: center;
}
.press-kit .media-press .col {
  flex: unset;
}
.press-kit .media-press .media-press-content {
  width: 38%;
}
.press-kit .media-press .media-press-img {
  width: 55%;
  text-align: right;
}
.press-kit .btn {
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  background-color: #231E73;
  border-radius: 5px;
  background-image: url("../css/images/download.svg");
  background-repeat: no-repeat;
  background-position: 87px center;
  background-size: 20px;
  font-size: 20px;
  font-weight: 400;
  padding: 25px 80px 25px 125px;
}

@media only screen and (max-width: 1225px) {
  .press-kit .sizers {
    width: 98%;
  }
}
@media only screen and (max-width: 980px) {
  .press-kit h2 {
    font-size: 45px;
  }
  .press-kit #content {
    padding-top: 150px;
    padding-bottom: 180px;
  }
  .press-kit .media-press .media-press-content {
    width: 100%;
    margin-bottom: 30px;
  }
  .press-kit .media-press .media-press-img {
    width: 100%;
    text-align: left;
  }
  .press-kit .media-press .btn {
    padding: 15px 60px 15px 95px;
    background-position: 50px center;
  }
}
@media only screen and (max-width: 425px) {
  .press-kit h2 {
    font-size: 38px;
  }
  .press-kit .media-press .btn {
    padding: 15px 35px 15px 80px;
    background-position: 35px center;
    font-size: 14px;
  }
}
.examples h2 {
  font-size: 53px;
  margin-bottom: 50px;
}
.examples #content {
  padding-bottom: 180px;
}
.examples .tabs-holder {
  position: relative;
  margin: 0 auto;
}
.examples .tabs-holder .magic-line {
  position: absolute;
  top: 4px;
  left: 0;
  width: 100px;
  height: 41px;
  background: #fff;
  border-radius: 30px;
}
.examples .tabs-holder .nav-tabs {
  background-color: #E4E9EF;
  justify-content: center;
  border-radius: 35px;
  border: 0;
  padding: 4px 0;
  max-width: 910px;
  margin: 0 auto;
}
.examples .tabs-holder .nav-tabs .nav-item .nav-link {
  position: relative;
  font-size: 20px;
  line-height: 1;
  color: #000;
  background-color: transparent;
  border: 0;
  z-index: 1;
  padding: 11px 50px;
}
.examples .tabs-holder .tab-content {
  display: flex;
  justify-content: center;
}
.examples .tabs-holder .tab-content .tab-content-holder {
  display: flex;
  justify-content: space-between;
  padding-top: 150px;
  width: 1070px;
}
.examples .tabs-holder .tab-content .tab-content-holder div {
  flex: 1 0 0%;
}
.examples .tabs-holder .tab-content .tab-content-holder div:first-child {
  margin-right: 50px;
}
.examples .tabs-holder .tab-content .tab-content-holder div:last-child {
  margin-left: 50px;
}
.examples .tabs-holder .tab-content .tab-content-holder div img {
  margin-bottom: 50px;
}
.examples .tabs-holder .tab-content .tab-content-holder div img:last-child {
  margin: 0;
}

@media only screen and (max-width: 1440px) {
  .examples .sizers {
    width: 100%;
  }
}
@media only screen and (max-width: 1200px) {
  .examples .tabs-holder .tab-content .tab-content-holder {
    width: 100%;
    padding-top: 80px;
  }
  .examples .tabs-holder .tab-content .tab-content-holder div {
    flex: 1 0 0%;
  }
  .examples .tabs-holder .tab-content .tab-content-holder div:first-child {
    margin-right: 50px;
  }
  .examples .tabs-holder .tab-content .tab-content-holder div:last-child {
    margin-left: 50px;
  }
  .examples .tabs-holder .tab-content .tab-content-holder div img {
    margin-bottom: 50px;
  }
  .examples .tabs-holder .tab-content .tab-content-holder div img:last-child {
    margin: 0;
  }
}
@media only screen and (max-width: 1025px) {
  .examples .tabs-holder .tab-content .tab-content-holder div:first-child {
    margin-right: 25px;
  }
  .examples .tabs-holder .tab-content .tab-content-holder div:last-child {
    margin-left: 25px;
  }
  .examples .tabs-holder .tab-content .tab-content-holder div img {
    margin-bottom: 50px;
  }
  .examples .tabs-holder .tab-content .tab-content-holder div img:last-child {
    margin: 0;
  }
  .examples .tabs-holder .nav-tabs-wrap {
    overflow-x: scroll;
    width: 92%;
    margin: 0 auto;
    border-radius: 34px;
  }
}
@media only screen and (max-width: 980px) {
  .examples #content {
    padding-top: 150px;
  }
  .examples #content h2 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 680px) {
  .examples .tabs-holder .tab-content .tab-content-holder {
    display: block;
  }
  .examples .tabs-holder .tab-content .tab-content-holder div {
    margin: 0 !important;
  }
  .examples .tabs-holder .nav-tabs .nav-item .nav-link {
    font-size: 18px;
    padding: 10px 40px;
  }
  .examples .tabs-holder .magic-line {
    height: 37px;
  }
}